wx.getLocation({
type: 'gcj02',
success: function(res) {
//此处赋值map组件坐标
that.latitude = res.latitude
that.longitude = res.longitude
},
})
真机查看。show-location 与上面坐标点有偏差。ios正常。多次观察发现show-location会自动校验,也就是一开始与获取坐标点一至,闪一下,马上切换到真实地址。这样误差就有了。误差大概100米左右。目前解决办法,3秒钟后调用wx.getLocation方法,结果,正确。isHighAccuracy 等参数都无效。谢谢
打脸了。调用bindupdated方法貌似可以了。