- 真机调试报错:error parsing call interface result?
[图片]
2019-10-15 - 最近好多用户反馈wx.getLocation定位不准确 与实际相差三四公里
wx.getLocation({ type: 'wgs84', success: function (res){} }) 最近半个月吧 用户反馈定位总是不准。被客户骂死了,我该怎么办?
2021-01-05 - getLocation 为什么手机获取定位不准确?相差有800m的距离
wx.getLocation({ type: 'gcj02', isHighAccuracy: true, success(res) { console.log(res.latitude,res.longitude); }, });
2020-12-23 - wx.getLocation定位错乱,怀疑sdk服务有缓存?
我们小程序全国都有用户,有的新用户在北京获取到的经纬度却是云南,有的用户在广州获取到的经纬度却是北京。都是真机用户 定位核心代码如下 wx.getLocation({ type: 'gcj02', isHighAccuracy: true, success (res) { console.log('获取位置信息成功:', res) const location = {latitude: res.latitude, longitude: res.longitude} ctx.setLocation(location) ctx.reportToWx(location) cbSuc && cbSuc(res) }, fail (e) { console.log(e) Toast('定位失败,请开启定位以便为您提供更好的服务') cbError && cbError() } })
2020-12-22 - 除了wx.getLocation可以获取当前经纬度,还有其他方案吗?
最近用wx.getLocation获取用户位置,有时正常,有时莫名其妙的失败,没有规律,而且失败率还挺高。另外高德、腾讯小程序sdk的定位内部用的也是wx.getLocation,所以不用考虑了,所以还有其他不是小程序官方api的方法吗?小程序端想要获取定位难道仅此一种方案吗?用这个api来做crm打卡功能,失败率太高被客户骂死了。。。
2020-12-16