小程序接入腾讯地图问题?
大众安排 同程 携程 的小程序 都用了这个
这个是用的什么? 腾讯地图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
})
}
})
wx.openLocation()这个 api 这是文档:https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html