UNPKG

mapillary-js

Version:

WebGL JavaScript library for displaying street level imagery from mapillary.com

29 lines (24 loc) 397 B
/** * Interface that describes a bounding box. * * @interface IBoundingBox */ export interface IBoundingBox { /** * The minimum x value. */ minX: number; /** * The minimum y value. */ minY: number; /** * The maximum x value. */ maxX: number; /** * The maximum y value. */ maxY: number; } export default IBoundingBox;