import { GeoJSON } from 'leaflet'; /** * wkt 字符串转换成 GeoJson 数据 * @param wkt * @returns */ export declare const geoJson2Wkt: (geojson: GeoJSON.GeoJsonObject) => any; /** * wkt 字符串转换成 GeoJson 数据 * @param wkt * @returns */ export declare const wkt2GeoJson: (wkt: string) => any; /** * {x,y} 格式转换成 LatLng */ export declare const coordsToLatLngs: typeof GeoJSON.coordsToLatLngs; /** * {x,y} 格式转换成 LatLng */ export declare const coordsToLatLng: (coords: { x: number; y: number; }, reverse?: boolean | undefined) => import("leaflet").LatLng;