需求是:进首页展示自己当前位置
微信提供的api只有wx.chooseLocation能返回address字段 实现是
并且地图弹出不可关闭
我传参都能查到了直接返给我不就好了,或者地图能关闭也行啊
wx.getLocation({
// type: 'gcj02',
type: 'wgs84',
success: res=> {
console.log(res)
wx.chooseLocation({
latitude: res.latitude,
longitude: res.longitude,
success: a=> {
console.log(a)
}
})
}
})
有经纬度,通过第三方接口查详细地址吧
小程序实现要调高德sdk