<view @click="toMap"></view>
// 点击按钮, 打开地图 -> 跳转高德/腾讯
toMap() {
wx.openLocation({
latitude: this.details.latitude * 1,
longitude: this.details.longitude * 1,
scale: 16, // 缩放比例
name: this.details.village,
address: '', // 这个可能会影响地图的定位,所以可以选择不填
success(data) {
console.log(data)
},
fail(err) {
console.log(err)
}
})
},
会打开如下这个页面,页面下面的标题就是
this.details.village
这个页面不需要自己写,是属于微信内部的一个页面