UNPKG

@azure/maps-common

Version:
18 lines (17 loc) 374 B
/** * Latitude/Longitude Pair */ export declare type LatLon = [ /*latitude*/ number, /*longitude*/ number ]; /** * Bounding Box */ export interface BoundingBox { /** Top left corner of the bounding box */ topLeft: LatLon; /** Bottom right corner of the bounding box */ bottomRight: LatLon; } //# sourceMappingURL=models.d.ts.map