调用腾讯位置api 部分机型不生效问题?
getLoca() {
var that = this;
//初始化
var qmapSDK = new qqMap({
key: '我自己的key'
})
wx.getLocation({
type: 'wgs84',
success: function (res) {
qmapSDK.reverseGeocoder({
location: {
latitude: res.latitude,
longitude: res.longitude
},
success: function (e) {
var location = e.result.address;
that.data.lat = e.result.location.lat;
that.data.lng = e.result.location.lng
that.setData({
location: location
})
},
fail: function (res) { }
})
},
})
},
代码如上,今天有客户反应,上午还好使,下午就不好使。 之前陆陆续续的也有这样的问题。