小程序
小游戏
企业微信
微信支付
扫描小程序码分享
工具上调试可以 但是真机上 就不行了 不进success 也不进fail 我都没有办法看fail日志 但是应该没有错啊,我工具上调试是可以的,微信后台也设置了合法reques域名:https://apis.map.qq.com 求各位大神棒棒忙
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
代码片段?怎么棒棒忙,我猜不到
var locationkey = app.globalData.locationkey;
qqmapsdk = new QQMapWX({
key: locationkey //这里自己的key秘钥进行填充
});
qqmapsdk.reverseGeocoder({
location: {latitude: latitude,longitude: longitude},
success: function (res) {
wx.showToast({
title: res.result.address_component.city,
icon: 'none'
},
fail:function(){
title: '定位失败',
}
wx.getLocation({
type: 'gcj02',
altitude: true,
var latitude = res.latitude
var longitude = res.longitude
var point = {
latitude: latitude,
longitude: longitude
};
if(res.result.address_component.city != '乐山'){
//非乐山市展示插屏广告
app.showAd(that, null, interstitialAd);
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
代码片段?怎么棒棒忙,我猜不到
var locationkey = app.globalData.locationkey;
qqmapsdk = new QQMapWX({
key: locationkey //这里自己的key秘钥进行填充
});
qqmapsdk.reverseGeocoder({
location: {latitude: latitude,longitude: longitude},
success: function (res) {
wx.showToast({
title: res.result.address_component.city,
icon: 'none'
});
},
fail:function(){
wx.showToast({
title: '定位失败',
icon: 'none'
});
}
});
wx.getLocation({
type: 'gcj02',
altitude: true,
success: function (res) {
var latitude = res.latitude
var longitude = res.longitude
var point = {
latitude: latitude,
longitude: longitude
};
qqmapsdk.reverseGeocoder({
location: {latitude: latitude,longitude: longitude},
success: function (res) {
if(res.result.address_component.city != '乐山'){
//非乐山市展示插屏广告
app.showAd(that, null, interstitialAd);
}
},
fail:function(){
wx.showToast({
title: '定位失败',
icon: 'none'
});
}
});
})