/** * useGeocoder 地理编码服务 */ declare function useGeocoder(): { getGeoAddress: (location: number[], cb: (data: any) => void) => void; getGeoLocation: (address: string, cb: (data: any) => void) => void; }; export default useGeocoder;