vue3,uniapp,uni.chooseLocation,app无法显示下面的地址列表,华为手机,高德地图,是为什么?该怎么解决?uni.chooseLocation({
success: function(res) {
console.log('res', res)
that.getGeocoderFunc({
location: ${res.latitude},${res.longitude}
})
setTimeout(() => {
that.rescue.city_id = that.cityInfo.id
}, 2000)
that.rescue.location_name = res.name
that.rescue.lnt = res.longitude
that.rescue.lat = res.latitude
that.rescue.address = res.address
},
fail: function(err) {
console.log(err)
}
});
0 个回复