setTimeout(() => {
wx.getLocation({
type: 'gcj02',
success: (res) => {
console.log(res.longitude + '----' + res.latitude)
}
})
this.mineLocation()
}, 5000)定时器每隔5秒获取一次当前位置,在地图上显示,但是真机上每次获取的位置都有偏差导致点会飞来飞去请问有什么好办法吗