From 117460e8c3fc621001f787c9ee1bb0368be0ca86 Mon Sep 17 00:00:00 2001 From: anxinCPF <1105965053@qq.com> Date: Sun, 27 Jun 2021 17:18:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=81=9A=E5=90=88=E7=89=A9?= =?UTF-8?q?=E5=9B=BE=E5=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/map/declare/keda-map.ts | 34 ++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src/modules/map/declare/keda-map.ts b/src/modules/map/declare/keda-map.ts index d39e335..85d1c59 100644 --- a/src/modules/map/declare/keda-map.ts +++ b/src/modules/map/declare/keda-map.ts @@ -500,6 +500,37 @@ export class KedaMarkerCluster extends KedaBasic implements IMarkerCluster { //M constructor(map: IMap, list: Object[], options: any) { super(); this.map = map + console.log(list,options,'聚合物配置') + //聚合图层 + this.map.self.addCustomLayer({ + serviceName:'service_tzn_test7', //图层类型 + isPublic: true, //是否查询纯公有空间数据 + icons: [ //数据源属性匹配非聚合图标 icon + { + iconName: 'car-15', + filter: [], + } + ], + clustered: true, //是否聚合 + clusteredFilters: [ //聚合条件 + {//1-10 + count: 1, + circleColor: '#51bbd6', + circleRadius: 20 //圆的半径 + }, + {//10-100 + count: 10, + circleColor: '#f1f075', + circleRadius: 30 + }, + {//100以上 + count: 100, + circleColor: '#f28cb1', + circleRadius: 35 + } + ], + ended: (res) => { if (res.status === 10) { this.id = res.data } } + }); //add } on(eventName: string, callback: MarkerClusterCallback, component?: any): void { // 绑定聚合事件时获取信息 @@ -532,11 +563,12 @@ export class KedaMarkerCluster extends KedaBasic implements IMarkerCluster { //M } export class KedaRenderClusterMarkerr extends KedaBasic implements IRenderClusterMarker { //Marker 聚合物 配置项 + discriminator: string = "ISelfCombine"; constructor() { super(); } getFirstImages(context: any): string { - throw new Error('Method not implemented.'); + return context.data[0].image; } contentRender: HtmlRender; contentNonRender: HtmlRender;