1、申请key
2、下载js_sdk/amap-wx.js文件:https://lbs.amap.com/api/wx/gettingstarted
3、引入:
import AMap from '@/js_sdk/amap-wx.js'
4、使用
this.amapPlugin= new AMap.AMapWX({key: 'keyvalue'});// 你自己的key this.amapPlugin.getRegeo({
location:`${longitude},${latitude}`,// 传入你要解析的经纬度,获取当前的经纬度小程序或uniapp有相关的api
success:function(data){
console.log(data)// 经纬度解析后的名称
})