没有官方回答么?
小程序getLocation( )方法稳定性问题- 当前 Bug 的表现(可附上截图) 通过小程序定位获得当前位置的getLocation( )方法非常不稳定,时常会定位不准确/不及时的问题,非常影响用户的体验。 在考勤场景中,人的实际位置和小程序提取的GPS 位置相差太大,打开导航软件更新手机GPS位置后,小程序提取的位置还是不能及时更新。 - 预期表现 希望getLocation( )能提取实时的手机GPS位置数据 - 复现路径 - 提供一个最简复现 Demo
2018-11-08wx.getLocation应该是先返回缓存GPS地址吗?什么情况下刷新呢?官方能给回复吗
wx.getLocation获取的经纬度不准- 当前 Bug 的表现(可附上截图) - 预期表现 通过wx.getLocation拿到准确定位 wx.getLocation拿到的位置 113.39350 23.09786 wx.chooseLocation拿到的位置 113.39905 23.09543 - 复现路径 - 提供一个最简复现 Demo // 获取用户位置 getUserLocation: function () { var that = this wx.getLocation({ // type: 'wgs84', type: 'gcj02', success(res) { var latitude = res.latitude var longitude = res.longitude that.setData({ latitude: latitude,//纬度 不准 longitude: longitude,//经度 不准 }) } }) },
2018-11-08希望这个问题赶快解决,让人头大啊
wx.getLocation获取的位置有偏差将wx.getLocation获取的位置信息展示在地图上,与自己的位置相差很远。type 是gcj02。下面是代码链接。模拟器没问题,手机相差很大 https://developers.weixin.qq.com/s/j6pWVKmV7x3k [图片]
2018-11-08