查看: 25|回复: 0

uni-app map组件的marker

[复制链接]

2

主题

0

回帖

0

积分

热心网友

金币
0
阅读权限
220
精华
0
威望
0
贡献
0
在线时间
0 小时
注册时间
2010-5-22
发表于 2021-7-22 11:20:00 | 显示全部楼层 |阅读模式
<template>
<view>
<page-head :title="title"></page-head>
<view class="uni-common-mt">
<view>
<map :latitude="latitude" :longitude="longitude" :markers="covers">
</map>
</view>
</view>
<image src="../../static/app-plus/location@3x.png"></image>
</view>
</template>

<script>
export default {
data() {
return {
title: 'map',
latitude: 39.909,
longitude: 116.39742,
covers: [{
latitude: 39.9085,
longitude: 116.39747,
// #ifdef APP-PLUS
iconPath: '../../static/app-plus/location@3x.png',
// #endif
// #ifndef APP-PLUS
iconPath: '../../static/location.png',
// #endif
}, {
latitude: 39.90,
longitude: 116.39,
// #ifdef APP-PLUS
iconPath: '../../static/app-plus/location@3x.png',
// #endif
// #ifndef APP-PLUS
iconPath: '../../static/location.png',
// #endif
}]
}
},
methods: {

}
}
</script>


<style>
map {
width: 100%;
height: 600rpx;
}
</style>


来源:https://www.cnblogs.com/xushan03/p/15043248.html
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

相关侵权、举报、投诉及建议等,请发 E-mail:qiongdian@foxmail.com

Powered by Discuz! X5.0 © 2001-2026 Discuz! Team.

在本版发帖返回顶部