华为手机调腾讯API 发现点击没有反应 但是其他手机可以正常实现效果
toMap() {
console.log(“调用腾讯地图”)
qqmapsdk = new QQMapWX({
key: ‘M2DBZ-VZYKJ-O45FH-KKEFE-3J3NS-JIF5Q’ //腾讯地图的key
});
this.moveToLocation();
console.log(“去移动选点”)
},
//移动选点
moveToLocation: function() {
console.log(“在选点”)
var that = this;
wx.chooseLocation({
success: function(res) {
that.setData({
// locationValue: res.address,
locationValue: `${res.latitude},${res.longitude}`,
latitude: res.latitude,
longitude: res.longitude,
})
}
});
},
这是部分代码 发现三条信息都能在控制台显示,但是就是没有打开地图效果,有人遇到过吗,求指教
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)