小程序接入腾讯地图问题?
发布于 7 年前 作者 yong20 9562 次浏览 来自 问答

大众安排 同程 携程 的小程序 都用了这个

这个是用的什么? 腾讯地图h5 还是 腾讯地图小程序插件?? 找到半天没找到一样

求大神赐教

4 回复

wx.openLocation({})

wx.getLocation({
 type: 'gcj02', //返回可以用于wx.openLocation的经纬度
 success (res) {
   const latitude = res.latitude
   const longitude = res.longitude
   wx.openLocation({
     latitude,
     longitude,
     scale: 18
   })
 }
})
 
回到顶部