UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

27 lines (23 loc) 373 B
/** * Interface that describes a bounding box. * * @interface TileBoundingBox */ export interface TileBoundingBox { /** * The minimum x value. */ minX: number; /** * The minimum y value. */ minY: number; /** * The maximum x value. */ maxX: number; /** * The maximum y value. */ maxY: number; }