UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

24 lines (19 loc) 636 B
import { IDEnt } from "../ents/IDEnt"; import { SpatialImageEnt } from "../ents/SpatialImageEnt"; import { URLEnt } from "../ents/URLEnt"; export interface GraphGeometry { coordinates: [number, number]; } export interface GraphCoreImageEnt extends IDEnt { computed_geometry: GraphGeometry; geometry: GraphGeometry; sequence: string; } export interface GraphSpatialImageEnt extends SpatialImageEnt { merge_cc: number; organization: IDEnt; sfm_cluster: URLEnt; thumb_1024_url: string; thumb_2048_url: string; } export interface GraphImageEnt extends GraphCoreImageEnt, GraphSpatialImageEnt { }