收藏
回答

小程序关于展示地图定位,并且点击可以调起导航App和腾讯出行的功能,请问是用的哪个服务?

大众点评小程序和肯德基点餐小程序的里面,点击店铺地址可以直接进入上图页面,请问有没有人知道怎么实现的,或者购买了什么服务?

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

1 个回答

  • 拾忆
    拾忆
    2023-06-26

    https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/location-message.html

    wx.getLocation({
          type'gcj02',
          success(res) {
            const latitude = res.latitude
            const longitude = res.longitude
            wx.openLocation({
              latitude,
              longitude,
              scale: 18
            })
          }
        })
    
    2023-06-26
    有用
    回复
登录 后发表内容