UNPKG

@kwikpik/server-libs

Version:

Kwikpik-Server-Libs ===================================================================================================================================================================================================

17 lines (16 loc) 485 B
/** * Calculate straight line distance (in KM) between two geographical points. * * @param latitude0 Latitude of first point. * @param longitude0 Longitude of first point. * @param latitude1 Latitude of second point. * @param longitude1 Longitude of second point. * @returns */ export declare const calculateDistanceInKMUsingCoordinates: ( latitude0: number, longitude0: number, latitude1: number, longitude1: number ) => number; //# sourceMappingURL=geo-math.d.ts.map