小程序
小游戏
企业微信
微信支付
扫描小程序码分享
通过wx.getFuzzyLocation({type: 'wgs84'}) 拿到经纬度,再使用百度提供的api
https://api.map.baidu.com/geocoder/v2/?location=${latitude},${longitude}&coordtype=wgs84ll&output=json&latest_admin=1&ak=${AK}
获取到的详细位置会和当前位置差别巨大,这个该怎么处理??
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
是的,我们应用里会标注距离的公里数,在同一个地方每次都不一样,一会15公里,一会21公里,都不知道怎么和客户解释!你模糊几百米,都能理解,这个几公里都无法用
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.getFuzzyLocation 这个api,太恶心了,在同一个地方计算距离每次都不一样,被客户投诉多次。不知道微信官方的人怎么想的。
wx.getFuzzyLocation获取的经纬度不准确,如何解决?
这个API拿到的就是偏差很大的位置,需要精确的用wx.getLocation
wx.getLocation 太难申请了, wx.getFuzzyLocation太容易申请了,但是逆地理编码获取位置差太远了,你们怎么解决这个问题呢?
var amapFile = require('./amap-wx.130');//如:..•/..•/libs/amap-wx.js
Page({
data: {
longitude: '116.321175', //首次加载的经度
latitude: '39.993446', //首次加载维度
scale:16,
onLoad: function (options) {
let that = this;
//that.requestLocation();
var myAmapFun = new amapFile.AMapWX({key:this.data.gaokey});
myAmapFun.getRegeo({
success: function(data){
//成功回调
console.log(data)
that.setData({
latitude: data[0].latitude,
longitude: data[0].longitude,
})
that.getattrChange();
},
fail: function(info){
//失败回调
console.log(info)
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
是的,我们应用里会标注距离的公里数,在同一个地方每次都不一样,一会15公里,一会21公里,都不知道怎么和客户解释!你模糊几百米,都能理解,这个几公里都无法用
wx.getFuzzyLocation 这个api,太恶心了,在同一个地方计算距离每次都不一样,被客户投诉多次。不知道微信官方的人怎么想的。
wx.getFuzzyLocation获取的经纬度不准确,如何解决?
这个API拿到的就是偏差很大的位置,需要精确的用wx.getLocation
wx.getLocation 太难申请了, wx.getFuzzyLocation太容易申请了,但是逆地理编码获取位置差太远了,你们怎么解决这个问题呢?
var amapFile = require('./amap-wx.130');//如:..•/..•/libs/amap-wx.js
Page({
data: {
longitude: '116.321175', //首次加载的经度
latitude: '39.993446', //首次加载维度
scale:16,
onLoad: function (options) {
let that = this;
//that.requestLocation();
var myAmapFun = new amapFile.AMapWX({key:this.data.gaokey});
myAmapFun.getRegeo({
success: function(data){
//成功回调
console.log(data)
that.setData({
latitude: data[0].latitude,
longitude: data[0].longitude,
})
that.getattrChange();
},
fail: function(info){
//失败回调
console.log(info)
}
})
},