/** * Utilities for handling coordinates and bounding boxes that cross the 180/-180 meridian. */ /** * Checks if a sequence of longitudes crosses the meridian by looking for large longitude differences. */ export declare const checkCrossesMeridian: (longitudes: Array) => boolean; /** * Normalizes longitudes to the 0-360 range. */ export declare const normalizeLongitudes: (longitudes: Array) => Array; /** * Converts a longitude from the 0-360 range back to the -180/180 range. */ export declare const denormalizeLongitude: (lon: number) => number; /** * Checks if a bounding box crosses the meridian. */ export declare const boundingBoxCrossesMeridian: (nwLon: number, seLon: number) => boolean; /** * Gets min/max longitudes handling meridian crossing. * Returns longitudes in -180/180 range. */ export declare const getMinMaxLongitudes: (longitudes: Array) => { minLon: number; maxLon: number; };