微信小程序调用腾讯地图打开指定位置
toMap(e) {
let map = e.currentTarget.dataset.map
wx.openLocation({ //使用微信内置地图查看位置。
latitude: map.latitude, //要去的纬度-地址
longitude: map.longitude, //要去的经度-地址
address: map.address, //要去的详细地址
name: map.name //要去的建筑名称
})
},