UNPKG

@azure/maps-common

Version:
14 lines 340 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