• uniapp map地图实现marker聚合点,并点击marker触发事件


    1.uniapp官方文档说明
    在这里插入图片描述
    在这里插入图片描述

    2.关键代码片段

    	// 仅调用初始化,才会触发 on.("markerClusterCreate", (e) => {})
    				this._mapContext.initMarkerCluster({
    					enableDefaultStyle: false, // 是否使用默认样式
    					zoomOnClick: true, // 点击聚合的点,是否改变地图的缩放级别
    					gridSize: 60, // 聚合计算时网格的像素大小,默认60
    					complete(res) {
    						console.log('initMarkerCluster', res)
    					}
    				});
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    3.全部代码

    <template>
    	<view class="content">
    		<map id="map" :latitude="latitude" :longitude="longitude"
    			:style="{ width: '100%', height: windowHeight + 'px' }" :scale="10" @markertap="markTap"></map>
    	</view>
    </template>
    
    <script>
    	export default {
    		data() {
    			return {
    				_mapContext: null,
    				windowHeight: 0,
    				latitude: 23.099994,
    				longitude: 113.324520,
    			}
    		},
    		onLoad() {
    
    		},
    		onReady() {
    			uni.getSystemInfo({
    				success: (res) => {
    					this.windowHeight = res.windowHeight;
    				},
    			});
    
    			// 创建map对象
    			this._mapContext = uni.createMapContext("map", this);
    			this.cluster();
    		},
    		methods: {
    			markTap(e) {
    				console.log('ccccccc')
    				console.log(e)
    				console.log('ccccccc')
    				uni.showToast({
    					title: `客户名称${e.markerId}`
    				})
    			},
    			// 点聚合
    			cluster() {
    				// 仅调用初始化,才会触发 on.("markerClusterCreate", (e) => {})
    				this._mapContext.initMarkerCluster({
    					enableDefaultStyle: false, // 是否使用默认样式
    					zoomOnClick: true, // 点击聚合的点,是否改变地图的缩放级别
    					gridSize: 60, // 聚合计算时网格的像素大小,默认60
    					complete(res) {
    						console.log('initMarkerCluster', res)
    					}
    				});
    
    				this._mapContext.on("markerClusterCreate", (res) => {
    					console.log("markerClusterCreate", res);
    					const clusters = res.clusters
    					const markers = clusters.map(cluster => {
    						const {
    							center,
    							clusterId,
    							markerIds
    						} = cluster
    						return {
    							...center,
    							width: 0,
    							height: 0,
    							clusterId, // 必须
    							label: {
    								content: markerIds.length + '',
    								fontSize: 16,
    								color: '#ffffff',
    								width: 50,
    								height: 50,
    								bgColor: '#00A3FA',
    								borderRadius: 25,
    								textAlign: 'center',
    								anchorX: 0,
    								anchorY: -20,
    							}
    						}
    					})
    					this._mapContext.addMarkers({
    						markers,
    						clear: false,
    						complete(res) {
    							console.log('clusterCreate addMarkers', res)
    						}
    					})
    				});
    				this._mapContext.on('markerClusterClick', (res) => {
    					console.log('markerClusterClick', res)
    				})
    				this.addMarkers();
    			},
    
    			// 添加标记点
    			addMarkers() {
    				const positions = [{
    					latitude: 23.099994,
    					longitude: 113.324520,
    					id: 12
    				}, {
    					latitude: 23.099994,
    					longitude: 113.322520,
    					id: 13
    				}, {
    					latitude: 23.099994,
    					longitude: 113.326520,
    					id: 14
    				}, {
    					latitude: 23.096994,
    					longitude: 113.329520,
    					id: 15
    				}]
    
    				const markers = []
    				positions.forEach((p, i) => {
    					markers.push(
    						Object.assign({}, {
    							id: p.id,
    							iconPath: "/static/pile.png",
    							width: 28,
    							height: 29,
    							joinCluster: true, // 指定了该参数才会参与聚合
    							callout: {
    								bgColor: "#5AC2EB",
    								color: "#fff",
    								content: `充电桩${p.id}`,
    								display: "ALWAYS",
    								fontSize: "14",
    								fontWeight: "bold",
    								padding: 8,
    								textAlign: "center"
    							}
    						}, p)
    					)
    				})
    				console.log('markers', markers)
    				this._mapContext.addMarkers({
    					markers,
    					clear: false,
    					complete(res) {
    						console.log('addMarkers', res)
    					}
    				})
    			},
    		}
    	}
    </script>
    
    <style>
    	.content {
    		display: flex;
    		flex-direction: column;
    		align-items: center;
    		justify-content: center;
    	}
    
    	.logo {
    		height: 200rpx;
    		width: 200rpx;
    		margin-top: 200rpx;
    		margin-left: auto;
    		margin-right: auto;
    		margin-bottom: 50rpx;
    	}
    
    	.text-area {
    		display: flex;
    		justify-content: center;
    	}
    
    	.title {
    		font-size: 36rpx;
    		color: #8f8f94;
    	}
    </style>
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178

    3.效果
    在这里插入图片描述

    在这里插入图片描述

  • 相关阅读:
    Mysql进阶学习(三)排序查询与常见函数
    【C语言】while((ch=getchar()!=EOF))相关问题详解(结束、安全)
    第十四届蓝桥杯(Web应用开发)模拟赛1期-大学组
    思修复习知识点-《思想道德基础与法律修养》
    网站管家机器人在为企业获客方面起什么作用?
    Tensorrt自定义Plugin的调用顺序
    前端工作一年半,离职了!!!
    django 自动化脚本的开发 - 脚本仅启动运行一次 / 执行定时任务 - 测试过程
    java计算机毕业设计网上鲜花店网站源码+数据库+lw文档+系统+部署
    线性代数的本质(四)——行列式
  • 原文地址:https://blog.csdn.net/weixin_44705979/article/details/133949237