小程序自带map地图,如果传入国外经纬度,地图会默认切换成国外的here地图
效果展示:(最好是手机预览,微信开发者工具直接看的话,只会显示一个大概的区域)
<view class="wanl-goods-content bg-white">
<map style="width:100%;height:40vh;" :latitude="latitude" :longitude="longitude"
:markers="covers"></map>
</view>
js部分
export default {
data() {
return {
covers: [],
latitude: null, //纬度
longitude: null, //经度
}
},
mounted(){
this.latitude = 43.7738504;
this.longitude = 11.2459511;
this.covers = [{
latitude: 43.7738504,//经纬度必须是number类型
longitude:11.2459511,
width: 30,
height: 30,
iconPath:'https://yayacasa.ehongzhuokeji.com/uploads/img/dingwei.png',
title: 'Via Palazzuolo 两居'
}];
}
}
转发请注明原创噢~~~~
看完记得点个赞哟!!!