主要是使用高德里面地理编码与逆地理编码的
getAddress
这个方法,
根据逆向地理编码:将地理坐标(经纬度)转换成地址描述信息,对应为AMap.Geocoder的getAddress方法。
具体使用的代码为
let position =[lng,lat]//位置的经纬度 newAMap.plugin("AMap.Geocoder",()=>{const geocoder =newAMap.Geocoder({// city 指定进行编码查询的城市,支持传入城市名、adcode 和 citycodecity:"028"//成都});
geocoder.getAddress(position,(status, result)=>{if(status ==="complete"&& result.info ==="OK"){// result为对应的地理位置详细信息this.place = result.regeocode.formattedAddress;// this.place为返回的具体地理位置信息,里面无法使用return回来!}});});
最后看效果
这是传的经纬度与解析出来的地理位置
如果需要正向解析将地理位置变成经纬度那么需要用到
getLocation
这个方法
操作步骤是一样的,具体可以看官网
地理编码与逆地理编码
版权归原作者 Jet_closer_burning 所有, 如有侵权,请联系我们删除。