API方法
wx.openLocation
我们需要用到微信官方文档的位置API wx.openLocation
其中的参数有很多,具体可参考官方文档:微信官方文档-位置
所需参数
wxml
bindtap="gomap"
<view class="flex" style="align-items: center;" bindtap="gomap" data-name="{{item}}" data-page="map"> 导航 </view>
JS
gomap(e) { const item=e.currentTarget.dataset.name wx.openLocation({ latitude: item.currLatitude, //维度 longitude: item.currLongitude, //经度 name: item.branchAdress, //目的地定位名称 scale: 15, //缩放比例 address: item.branchAdress+item.branchName //导航详细地址 }) },
效果图