wx.getLocation 安卓定位精度低 IOS正常
安卓手下定位精度一直很低,测试过多部手机,精度基本在30左右,而且经常不更新,手机内置的导航软件很正常。 在IOS下精度一直在10米以内。社区里已经多名开发者提出此问题,请官方抽出时间跟进一下。 https://developers.weixin.qq.com/community/develop/doc/000e06585741307c608850a8a5b800?highLine=%25E5%25AE%2589%25E5%258D%2593%2520wx.getLocation%2520%25E7%25B2%25BE%25E5%25BA%25A6 var _this = this; //设置计时器,不停获取位置信息以测速 gps: setInterval(function () { wx.getLocation({ type: 'wgs84', success(res) { if (res.speed == -1) { _this.setData({ accuracy: res.accuracy, speed: 0 }) } else { _this.setData({ accuracy: res.accuracy, speed: res.speed * 3.6 }) } }, }) }, 1000) //1秒刷新一次