高得地图SDK
<map style="width: 100%; height: 300px;" :latitude="latitude" :longitude="longitude" :markers="covers">
</map>
data() {
return {
id: 0, // 使用 marker点击事件 需要填写id
title: 'map',
latitude: 39.913904,
longitude: 116.39728, //这个经纬度是打开地图显示的位置
covers: [{
// 这些都是标记点
latitude: 39.913904,
longitude: 116.39728,
title:"这个是点击显示的文字",
iconPath:"",
label:{
content:"这个是描述文字",
borderWidth:2,
borderColor:"#000",
x:-20,
y:10
}
},]
}
},
打开微信默认地图/导航
uni.openLocation({
longitude:116.39728,
latitude:39.913904,
scale: 18,
name:"名字",
address:"详情",
complete:(res)=>{
console.log(res)
}
})