@azure/maps-common
Version:
An internal shared package for Azure Maps TypeScript SDK
18 lines (17 loc) • 374 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