wx.openLocation在模拟器上能正常显示终点,但在真机上起点和终点都是当前位置?
我是直接复制的文档代码
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success (res) {
const latitude = res.latitude
const longitude = res.longitude
wx.openLocation({
latitude,
longitude,
scale: 18
})
}
})