UNPKG

stac-layer

Version:

Visualize a STAC Item or Collection on a Leaflet Map

14 lines (13 loc) 297 B
export default function isBoundingBox(bbox) { return ( Array.isArray(bbox) && bbox.length === 4 && bbox.every(n => typeof n === "number") && bbox[0] < bbox[2] && bbox[1] < bbox[3] && bbox[0] >= -180 && bbox[1] >= -90 && bbox[2] <= 180 && bbox[3] <= 90 ); }