UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

11 lines (8 loc) 280 B
import * as THREE from "three"; import * as vd from "virtual-dom"; import { Alignment } from "../enums/Alignment"; export interface ISpriteAtlas { loaded: boolean; getGLSprite(name: string): THREE.Object3D; getDOMSprite(name: string, float?: Alignment): vd.VNode; }