uniapp map组件自定义markers标记点

需求是根据后端返回数据在地图上显示标记点,并且根据数据状态控制标记点颜色,标记点背景通过两张图片实现控制

html 复制代码
<map
	style="width: 100vw; height: 100vh;"
	:markers="markers"
	:longitude="locaInfo.longitude"
	:latitude="locaInfo.latitude"
	@markertap="markerClick"
	@callouttap='callouttap'
	>
	<!-- 使用callout进行自定义 -->
	<cover-view slot="callout">
		<template v-for="(item,index) in markers"> 
			<cover-view 
			style="position: relative; width: 100%;padding-right: 20px;"
			:marker-id="item.id"
			:key='index'>
				<cover-view class="marker-box" style="padding: 5px 5px 12px 5px;">
					<cover-image class="position-absolute" style="margin-right: 5px; width: 30rpx; height: 30rpx;" :src="item.options.img"></cover-image>
					<cover-view>{{item.options.labelName}}</cover-view>
					
					<cover-image class="position-absolute" style="position: absolute; left: 0;top: 0; z-index: -1; width: 100%; height: 100%;" :src="item.options.isStore?item.options.active_bg:item.options.bg"></cover-image>
				</cover-view>
				<cover-view style="position: absolute; right: 0px; top: 50%; transform: translateY(-65%); z-index: 2 ; width: 16px; height: 16px; border-radius: 50%; background-color: aquamarine;"></cover-view>
			</cover-view>
		</template>
	</cover-view>
</map>
js 复制代码
<script>
	export default {
		data() {
			return {
				storeIndex:0,
				locaInfo: {
					longitude:120.445172,
					latitude:36.111387
				},
				markers: [ // 标点列表
					{
						id: 1, //标记点id
						index: 0,
						clusterId: 1, //自定义点聚合簇效果时使用
						latitude: 36.116874, // 纬度
						longitude: 120.441515, // 经度
						iconPath:  '/static/tm.png', 
						options: {
							isStore: true,
							img: '/static/store.png', 
							bg: '/static/1.png',
							active_bg: '/static/2.png',
							labelName: '恩豪斯',
							name: '建材城名称(蓝鳌路店)',
							address: '高新区大学路101号',
							time1: '2024-02-28  16:30'
						},
						// 自定义窗口
						customCallout: {
							anchorX: 0,
							anchorY: 0,
							display: "ALWAYS" // 常显
						}
					},
					{
						id: 2, //标记点id
						index: 1,
						clusterId: 1, //自定义点聚合簇效果时使用
						latitude: 36.110543, // 纬度
						longitude: 120.454837, // 经度
						iconPath: '/static/tm.png', 
						options: {
							isStore: false,
							img: '/static/store.png', 
							bg: '/static/1.png',
							active_bg: '/static/2.png',
							labelName: '恩豪斯1111',
							name: '品牌名称(所属建材城)',
							address: '高新区大学路101号',
							time1: '2024-02-28  16:30',
							time2: '2024-02-28  16:30',
						},
						// 自定义窗口
						customCallout: {
							anchorX: 0,
							anchorY: 0,
							display: "ALWAYS" // 常显
						}
					},
				],
			}
		},
		methods: {
			callouttap(e){ // 点击气泡
				console.log(e.detail);
			}
		}
	}
</script>
<style lang="scss">
	// 地图标记点
	.marker-box {
		position: relative;
		display: flex;
		// align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 28rpx;
		overflow: visible; 
	}
	

</style>
相关推荐
前端小张同学19 小时前
基础需求就用AI写代码,你会焦虑吗?
java·前端·后端
小满zs19 小时前
Next.js第一章(入门)
前端
摇滚侠19 小时前
CSS(层叠样式表)和SCSS(Sassy CSS)的核心区别
前端·css·scss
不爱吃糖的程序媛19 小时前
Electron 桌面应用开发入门指南:从零开始打造 Hello World
前端·javascript·electron
Dontla19 小时前
前端状态管理,为什么要状态管理?(React状态管理、zustand)
前端·react.js·前端框架
编程猪猪侠19 小时前
前端根据文件后缀名智能识别文件类型的实用函数
前端
宋辰月19 小时前
学习react第一天
javascript·学习·react.js
yinuo19 小时前
基于 Git Submodule 的代码同步融合方案
前端
伶俜monster19 小时前
大模型 “万能接口” MCP 横空出世!打破数据孤岛,重塑 AI 交互新规则
前端·mcp
你听得到1119 小时前
肝了半个月,我用 Flutter 写了个功能强大的图片编辑器,告别image_cropper
android·前端·flutter