1.打開地圖
api:chooseLocation
說明:打開小程序地圖,可輸入內(nèi)容選擇地址。
success返回res包括:address、latitude、 longitude罪针、name
使用方式:
openMap () {
// 選擇地圖
const self = this
uni.chooseLocation({
success: function (res) {
const { address, latitude, longitude, name } = res
self.markers = {
address, latitude, longitude, name
}
}
})
},
2.查看地圖并導航
api:openLocation
說明:需要傳入地址經(jīng)緯度、地址名稱才能定位到對應(yīng)地址
使用方式:
openLocation () {
const { latitude, longitude, name } = this.markers
// 打開地圖并導航
uni.openLocation({
latitude,
longitude,
name,
fail: () => {
uni.showModal({
content: '打開地圖失敗,請重'
})
}
})
}