<template>
<view class="content">
<map :latitude="39.909" :longitude="116.39742" :scale="13" :markers="list"></map>
</view>
</template>
<script>
export default {
data() {
return {
list: [
{ title: '天安门 ',id:1, latitude: 39.909, longitude: 116.39742, iconPath: '/static/logo.png' },
{ title: '天安门 ',id:2, latitude: 39.9, longitude: 116.39, iconPath: '../../static/logo.png' }
// { callout: {content:'天安门 ',},id:3, latitude: 39.9, longitude: 116.39, iconPath: '../../static/logo.png' }
]
};
},
onLoad() {},
methods: {}
};
</script>
<style>
.content { display: flex; flex-direction: column; align-items: center; justify-content: center;}
map { width: 750rpx; height: 500rpx;}
</style>
- 发布:2021-11-03 11:16
- 更新:2021-11-17 23:33
- 阅读:964
产品分类: uniapp/H5
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows10
HBuilderX类型: 正式
HBuilderX版本号: 3.2.12
浏览器平台: Chrome
浏览器版本: 95.0.4
项目创建方式: HBuilderX
吃小孩蘸大蒜 (作者)
感谢!! 可以了 还有个小问题 markers 中的 label 在h5 中不能有 bgColor 属性吗? 后续可以增加到h5吗
2021-11-05 17:51
DCloud_UNI_GSQ
回复 吃小孩蘸大蒜: 可以
2021-11-08 15:56
DCloud_UNI_GSQ
回复 吃小孩蘸大蒜: 新版加了
2021-11-15 14:27