1.使用腾讯地图获取地点的经纬度
官方坐标获取:https://lbs.qq.com/getPoint/
如:重庆解放碑
纬度:29.557284
经度:106.577153
2.使用微信小程序的内置地图。
微信小程序文档:https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html
文章来源:https://www.toymoban.com/news/detail-512925.html
goParkingLot(e){
const latitude = 29.557284
const longitude = 106.577153
//打开内部地图(默认腾讯地图)
wx.openLocation({
latitude,
longitude,
scale: 18
})
},
3.效果
文章来源地址https://www.toymoban.com/news/detail-512925.html
到了这里,关于微信小程序地图导航的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!