@azure/maps-common
Version:
An internal shared package for Azure Maps TypeScript SDK
14 lines • 340 B
TypeScript
/**
* 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