UNPKG

@tuoyuan/map-adapter-lib

Version:

地图适配器库

12 lines (11 loc) 259 B
interface ILikePoint { /** 经度 */ readonly longitude: number; /** 纬度 */ readonly latitude: number; } /** * 计算两个坐标的距离 */ export declare function getDistance(point1: ILikePoint, point2: ILikePoint): number; export {};