收藏
回答

wx.openLocation打开地图导航没有用?

wx.openLocation打开地图导航没有用? 点击导航后,选择高德,高德打开后,出现这种情况,没有目标地点也没有当前位置,是否因为小程序没有发布,还是需要配置什么?

@官方

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

1 个回答

  • 菱玉
    菱玉
    2020-11-10

    你可以看看你的经纬度写对了没,我这试可以的

     wx.openLocation({

          latitude: latitude, //纬度number

          longitude: longitude, // 经度number

          name: e.currentTarget.dataset.itemdata.storeName,

          address: e.currentTarget.dataset.itemdata.address,

          scale: 18

        })

    2020-11-10
    有用
    回复 2
    • 方超
      方超
      2020-11-10
      谢谢,已经好了,
      wx.getLocation({
            type: 'wgs84',
            success: function (res) {
              wx.openLocation({//​使用微信内置地图查看位置。
                latitude: 31.0938140000,//要去的纬度-地址
                longitude: 121.5039390000,//要去的经度-地址
                name: "O'MALL华侨城商业中心",
                address: '华侨城商业中心'
              })
            }
          })
      需要在外包一层getLocation,没有这个直接导航没用,
      2020-11-10
      回复
    • 菱玉
      菱玉
      2020-11-10回复方超
      我用的没有写这个getLocation,好使了就好
      2020-11-10
      回复
登录 后发表内容
问题标签