收藏
回答

wx.openLocation打不开微信内置地图?也没有任何报错?

wx.checkJsApi返回success,就是没有跳转到内置地图,也没有任何抛错

wx.checkJsApi({
                debug: true,
                appId: data.appId,
                timestamp: data.timestamp,
                nonceStr: data.nonceStr,
                signature: data.signature,
                jsApiList: ['openLocation'],
                fail () {
                    Toast.error('设备不支持');
                },
                success: () => {
                    const { name = '客户', address = '客户地址未知' } = this.store;
                    Toast.success(`${longitude},${latitude},${name},${address}`)


                    wx.openLocation({
                        latitude: +latitude, 
                        longitude: +longitude,
                        name,
                        address,
                        scale: 16, 
                        infoUrl: ''
                    });
                }
            });


回答关注问题邀请回答
收藏

1 个回答

  • Riven.
    Riven.
    2021-04-25

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2021-04-25
    有用
    回复 1
    • 王贵旺
      王贵旺
      2023-06-06
      ww.openLocation通过iframe嵌入不了微信地图
      2023-06-06
      回复
登录 后发表内容