<template>
<view>
<view class="page-body">
<view class="page-section page-section-gap">
<map style="width: 100%; height: 300px;" :latitude="latitude" :longitude="longitude" :markers="covers">
</map>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
id:0, // 使用 marker点击事件 需要填写id
title: 'map',
latitude: 39.909,
longitude: 116.39742,
covers: [{
id:1101294431,
latitude: 39.909,
longitude: 116.39742,
iconPath: './my.png'
}, {
id:1110921723,
latitude: 39.90,
longitude: 116.39,
iconPath: '../../../static/location.png'
}]
}
},
methods: {
}
}
</script>
<style>
</style>
h***@qq.com (作者)
非常感谢
确实,刚刚试了下只有放在static这个目录中才可以
2021-04-30 15:26