hn-map 1.1.14 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -5863
- package/package.json +1 -1
- package/src/base/gaode_entity.ts +52 -30
- package/src/base/mars3d_entity.ts +50 -15
- package/src/base/siji_entity.ts +81 -44
- package/src/graphic/circle.ts +6 -6
- package/src/graphic/divPoint.ts +5 -5
- package/src/graphic/imagePoint.ts +6 -6
- package/src/graphic/label.ts +6 -6
- package/src/graphic/line.ts +6 -6
- package/src/graphic/numPoint.ts +6 -6
- package/src/graphic/point.ts +12 -7
- package/src/graphic/polygon.ts +7 -7
- package/src/graphic/rectangle.ts +6 -6
- package/src/index.ts +184 -86
- package/src/layer/cluster.ts +503 -243
- package/src/layer/heatMap.ts +0 -3
- package/src/layer/layer.ts +205 -3
- package/src/layer/pointCloud.ts +4 -3
- package/src/map.ts +418 -18
- package/src/other/route.ts +2 -2
- package/src/util.ts +258 -54
package/src/layer/cluster.ts
CHANGED
|
@@ -1,276 +1,536 @@
|
|
|
1
|
-
import {deepMerge, wgs84ToGcj02Format} from
|
|
1
|
+
import { deepMerge, wgs84ToGcj02Format, convertPosition } from "../util";
|
|
2
2
|
import Layer from "./layer";
|
|
3
3
|
|
|
4
4
|
export default (hnMap: any) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
const defaultOption = {
|
|
6
|
+
id: "",
|
|
7
|
+
position: [],
|
|
8
|
+
pixelRange: 20,
|
|
9
|
+
cluster: true,
|
|
10
|
+
image: "",
|
|
11
|
+
width: 20,
|
|
12
|
+
height: 20,
|
|
13
|
+
data: null,
|
|
14
|
+
};
|
|
15
|
+
class mars3d_class extends Layer(hnMap) {
|
|
16
|
+
type: any = "cluster";
|
|
17
|
+
id: any = null;
|
|
18
|
+
option: any = JSON.parse(JSON.stringify(defaultOption));
|
|
19
|
+
config_layer: any = null;
|
|
20
|
+
config_label: any = null;
|
|
21
|
+
children: any = null;
|
|
22
|
+
layerEntity: any = null;
|
|
23
|
+
|
|
24
|
+
constructor(option: any) {
|
|
25
|
+
super(option);
|
|
26
|
+
this.id = option.id;
|
|
27
|
+
this.children = [];
|
|
28
|
+
deepMerge(this.option, option);
|
|
29
|
+
this.config_layer = this.formatConfigLayer(this.option);
|
|
30
|
+
this.config_label = this.formatConfigLabel(this.option);
|
|
31
|
+
this.layerEntity = new mars3d.layer.GraphicLayer(this.config_layer);
|
|
32
|
+
// this.graphic = new mars3d.graphic.BillboardEntity(this.config_label);
|
|
15
33
|
}
|
|
16
|
-
class mars3d_class extends Layer(hnMap) {
|
|
17
|
-
type: any = 'cluster'
|
|
18
|
-
id: any = null
|
|
19
|
-
option: any = JSON.parse(JSON.stringify(defaultOption))
|
|
20
|
-
config_layer: any = null
|
|
21
|
-
config_label: any = null
|
|
22
|
-
children: any = null
|
|
23
|
-
layerEntity: any = null
|
|
24
|
-
|
|
25
|
-
constructor(option: any) {
|
|
26
|
-
super(option)
|
|
27
|
-
this.id = option.id
|
|
28
|
-
this.children = []
|
|
29
|
-
deepMerge(this.option, option)
|
|
30
|
-
this.config_layer = this.formatConfigLayer(this.option)
|
|
31
|
-
this.config_label = this.formatConfigLabel(this.option)
|
|
32
|
-
this.layerEntity = new mars3d.layer.GraphicLayer(this.config_layer)
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// 格式化layer配置
|
|
36
|
-
formatConfigLayer(option: any) {
|
|
37
|
-
return {
|
|
38
|
-
id: option.id,
|
|
39
|
-
cluster: {
|
|
40
|
-
enabled: option.cluster,
|
|
41
|
-
pixelRange: option.pixelRange
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
34
|
|
|
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
|
-
|
|
35
|
+
// 格式化layer配置
|
|
36
|
+
formatConfigLayer(option: any) {
|
|
37
|
+
return {
|
|
38
|
+
id: option.id,
|
|
39
|
+
cluster: {
|
|
40
|
+
enabled: option.cluster !== false, // 默认开启聚合
|
|
41
|
+
pixelRange: option.pixelRange || 20,
|
|
42
|
+
// 添加更多聚合样式配置
|
|
43
|
+
styles: [
|
|
44
|
+
{
|
|
45
|
+
scale: 1,
|
|
46
|
+
image: "img/marker/mark1.png",
|
|
47
|
+
label: {
|
|
48
|
+
text: "{count}",
|
|
49
|
+
color: "#ffffff",
|
|
50
|
+
font_size: 16,
|
|
51
|
+
stroke: true,
|
|
52
|
+
strokeColor: "#000000",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
scale: 1.5,
|
|
57
|
+
image: "img/marker/mark2.png",
|
|
58
|
+
label: {
|
|
59
|
+
text: "{count}",
|
|
60
|
+
color: "#ffffff",
|
|
61
|
+
font_size: 18,
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
scale: 2,
|
|
66
|
+
image: "img/marker/mark3.png",
|
|
67
|
+
label: {
|
|
68
|
+
text: "{count}",
|
|
69
|
+
color: "#ffffff",
|
|
70
|
+
font_size: 20,
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
};
|
|
76
|
+
}
|
|
81
77
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
78
|
+
// 格式化点位配置
|
|
79
|
+
formatConfigLabel(option: any) {
|
|
80
|
+
return {
|
|
81
|
+
id: "label_" + option.id,
|
|
82
|
+
image: option.image,
|
|
83
|
+
width: option.width,
|
|
84
|
+
height: option.height,
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
return mars3d.Util.getTemplateHtml({title: "详情", template: "all", attr: data})
|
|
93
|
-
})
|
|
94
|
-
}
|
|
88
|
+
clearEntity() {
|
|
89
|
+
this.children = [];
|
|
90
|
+
this.layerEntity.clear();
|
|
91
|
+
}
|
|
95
92
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
const data = event.graphic.attr || {};
|
|
101
|
-
return await getCustomDom(data);
|
|
102
|
-
}
|
|
103
|
-
}, {offsetY: -20});
|
|
104
|
-
}
|
|
93
|
+
addEntity(entity: any) {
|
|
94
|
+
this.children.push(entity);
|
|
95
|
+
this.layerEntity.addGraphic(entity.graphic);
|
|
96
|
+
}
|
|
105
97
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
98
|
+
setPosition(data: any) {
|
|
99
|
+
this.clearEntity();
|
|
100
|
+
data.forEach((item: any, index: any) => {
|
|
101
|
+
let imagePointOption = {
|
|
102
|
+
id: this.config_label.id + "_point" + item.id,
|
|
103
|
+
position: item.position,
|
|
104
|
+
image: this.config_label.image,
|
|
105
|
+
height: this.config_label.height,
|
|
106
|
+
width: this.config_label.width,
|
|
107
|
+
data: item.data,
|
|
108
|
+
};
|
|
109
|
+
const imagePoint = new hnMap.ImagePoint(imagePointOption);
|
|
110
|
+
this.addEntity(imagePoint);
|
|
111
|
+
});
|
|
112
|
+
}
|
|
109
113
|
|
|
110
|
-
|
|
111
|
-
let entity
|
|
112
|
-
if (typeof entityParam == 'string') {
|
|
113
|
-
entity = this.children.find((v: any) => v.id === entityParam)
|
|
114
|
-
} else {
|
|
115
|
-
entity = entityParam
|
|
116
|
-
}
|
|
117
|
-
if (!entity) {
|
|
118
|
-
return Promise.reject(new Error('未找到此图形'))
|
|
119
|
-
}
|
|
120
|
-
return entity
|
|
121
|
-
}
|
|
114
|
+
// 修改 cluster.ts 中的 mars3d_class 类
|
|
122
115
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
116
|
+
destroy() {
|
|
117
|
+
this.clearEntity();
|
|
118
|
+
this.layerEntity.remove(true);
|
|
119
|
+
hnMap.map.layerList = hnMap.map.layerList.filter(
|
|
120
|
+
(v: any) => v.id !== this.id
|
|
121
|
+
);
|
|
122
|
+
}
|
|
129
123
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
124
|
+
// 添加属性弹窗
|
|
125
|
+
addPopupByAttr() {
|
|
126
|
+
this.layerEntity.bindPopup((event: any) => {
|
|
127
|
+
const data = event.graphic.attr;
|
|
128
|
+
return mars3d.Util.getTemplateHtml({
|
|
129
|
+
title: "详情",
|
|
130
|
+
template: "all",
|
|
131
|
+
attr: data,
|
|
132
|
+
});
|
|
133
|
+
});
|
|
134
|
+
}
|
|
136
135
|
|
|
136
|
+
// 添加自定义dom弹窗
|
|
137
|
+
addCustomPopup(getCustomDom: any) {
|
|
138
|
+
this.layerEntity.bindPopup(
|
|
139
|
+
async (event: any) => {
|
|
140
|
+
if (event.graphic.attr) {
|
|
141
|
+
const data = event.graphic.attr || {};
|
|
142
|
+
return await getCustomDom(data);
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
{ offsetY: -20 }
|
|
146
|
+
);
|
|
137
147
|
}
|
|
138
148
|
|
|
139
|
-
|
|
149
|
+
flyTo() {
|
|
150
|
+
this.layerEntity.flyTo();
|
|
151
|
+
}
|
|
140
152
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
153
|
+
getEntity(entityParam: any) {
|
|
154
|
+
let entity;
|
|
155
|
+
if (typeof entityParam == "string") {
|
|
156
|
+
entity = this.children.find((v: any) => v.id === entityParam);
|
|
157
|
+
} else {
|
|
158
|
+
entity = entityParam;
|
|
159
|
+
}
|
|
160
|
+
if (!entity) {
|
|
161
|
+
return Promise.reject(new Error("未找到此图形"));
|
|
162
|
+
}
|
|
163
|
+
return entity;
|
|
164
|
+
}
|
|
147
165
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
166
|
+
// 手动打开聚合功能
|
|
167
|
+
openCluster() {
|
|
168
|
+
deepMerge(this.option, { cluster: true });
|
|
169
|
+
this.config_layer = this.formatConfigLayer(this.option);
|
|
170
|
+
this.layerEntity.clusterEnabled = true;
|
|
171
|
+
}
|
|
154
172
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
div.style.lineHeight = size + 'px';
|
|
182
|
-
div.style.color = fontColor;
|
|
183
|
-
div.style.fontSize = '14px';
|
|
184
|
-
div.style.textAlign = 'center';
|
|
185
|
-
context.marker.setOffset(new AMap.Pixel(-size / 2, -size / 2));
|
|
186
|
-
context.marker.setContent(div)
|
|
173
|
+
// 手动关闭聚合功能
|
|
174
|
+
closeCluster() {
|
|
175
|
+
deepMerge(this.option, { cluster: false });
|
|
176
|
+
this.config_layer = this.formatConfigLayer(this.option);
|
|
177
|
+
this.layerEntity.clusterEnabled = false;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
class gaode_class {
|
|
182
|
+
id: any = null;
|
|
183
|
+
option: any = JSON.parse(JSON.stringify(defaultOption));
|
|
184
|
+
config: any = null;
|
|
185
|
+
layerEntity: any = null;
|
|
186
|
+
// 创建全局信息窗口实例
|
|
187
|
+
infoWindow: any = null;
|
|
188
|
+
|
|
189
|
+
constructor(option: any) {
|
|
190
|
+
this.id = option.id;
|
|
191
|
+
deepMerge(this.option, option);
|
|
192
|
+
this.config = this.formatConfig(this.option);
|
|
193
|
+
this.layerEntity = new AMap.MarkerCluster(
|
|
194
|
+
hnMap.map.map,
|
|
195
|
+
this.config.position,
|
|
196
|
+
this.config
|
|
197
|
+
);
|
|
198
|
+
}
|
|
187
199
|
|
|
188
|
-
|
|
200
|
+
formatConfig(option: any) {
|
|
201
|
+
const position = option.position.map((item: any, index: any) => {
|
|
202
|
+
return {
|
|
203
|
+
lnglat: wgs84ToGcj02Format(item),
|
|
204
|
+
// 添加弹窗属性参数
|
|
205
|
+
extData: {
|
|
206
|
+
id: this.id + "_point" + index,
|
|
207
|
+
},
|
|
208
|
+
};
|
|
209
|
+
});
|
|
210
|
+
const count = position.length;
|
|
211
|
+
const _renderClusterMarker = (context: any) => {
|
|
212
|
+
var factor = Math.pow(context.count / count, 1 / 18);
|
|
213
|
+
var div = document.createElement("div");
|
|
214
|
+
var Hue = 180 - factor * 180;
|
|
215
|
+
var bgColor = "hsla(" + Hue + ",100%,40%,0.7)";
|
|
216
|
+
var fontColor = "hsla(" + Hue + ",100%,90%,1)";
|
|
217
|
+
var borderColor = "hsla(" + Hue + ",100%,40%,1)";
|
|
218
|
+
var shadowColor = "hsla(" + Hue + ",100%,90%,1)";
|
|
219
|
+
div.style.backgroundColor = bgColor;
|
|
220
|
+
var size = Math.round(30 + Math.pow(context.count / count, 1 / 5) * 20);
|
|
221
|
+
div.style.width = div.style.height = size + "px";
|
|
222
|
+
div.style.border = "solid 1px " + borderColor;
|
|
223
|
+
div.style.borderRadius = size / 2 + "px";
|
|
224
|
+
div.style.boxShadow = "0 0 5px " + shadowColor;
|
|
225
|
+
div.innerHTML = context.count;
|
|
226
|
+
div.style.lineHeight = size + "px";
|
|
227
|
+
div.style.color = fontColor;
|
|
228
|
+
div.style.fontSize = "14px";
|
|
229
|
+
div.style.textAlign = "center";
|
|
230
|
+
context.marker.setOffset(new AMap.Pixel(-size / 2, -size / 2));
|
|
231
|
+
context.marker.setContent(div);
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
const _renderMarker = (context: any) => {
|
|
235
|
+
let icon = new AMap.Icon({
|
|
236
|
+
image: this.option.style.image,
|
|
237
|
+
imageSize: new AMap.Size(
|
|
238
|
+
this.option.style.height,
|
|
239
|
+
this.option.style.width
|
|
240
|
+
),
|
|
241
|
+
size: new AMap.Size(
|
|
242
|
+
this.option.style.height,
|
|
243
|
+
this.option.style.width
|
|
244
|
+
),
|
|
245
|
+
});
|
|
246
|
+
context.marker.setIcon(icon);
|
|
247
|
+
};
|
|
248
|
+
return {
|
|
249
|
+
id: option.id,
|
|
250
|
+
position,
|
|
251
|
+
gridSize: option.pixelRange, // 设置网格像素大小
|
|
252
|
+
clusterByZoomChange: true,
|
|
253
|
+
renderClusterMarker: _renderClusterMarker, // 自定义聚合点样式
|
|
254
|
+
renderMarker: _renderMarker, // 自定义非聚合点样式
|
|
255
|
+
};
|
|
256
|
+
}
|
|
189
257
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
})
|
|
196
|
-
context.marker.setIcon(icon)
|
|
197
|
-
}
|
|
198
|
-
return {
|
|
199
|
-
id: option.id,
|
|
200
|
-
position,
|
|
201
|
-
gridSize: option.pixelRange, // 设置网格像素大小
|
|
202
|
-
clusterByZoomChange: true,
|
|
203
|
-
renderClusterMarker: _renderClusterMarker, // 自定义聚合点样式
|
|
204
|
-
renderMarker: _renderMarker, // 自定义非聚合点样式
|
|
205
|
-
}
|
|
206
|
-
}
|
|
258
|
+
setPosition(position: any) {
|
|
259
|
+
deepMerge(this.option, { position: position });
|
|
260
|
+
this.config = this.formatConfig(this.option);
|
|
261
|
+
this.layerEntity.setData(this.config.position);
|
|
262
|
+
}
|
|
207
263
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
264
|
+
destroy() {
|
|
265
|
+
this.layerEntity.setMap(null);
|
|
266
|
+
hnMap.map.layerList = hnMap.map.layerList.filter(
|
|
267
|
+
(v: any) => v.id !== this.id
|
|
268
|
+
);
|
|
269
|
+
}
|
|
213
270
|
|
|
271
|
+
flyTo() {
|
|
272
|
+
let totalLng = 0;
|
|
273
|
+
let totalLat = 0;
|
|
274
|
+
this.config.position.map((item: any) => {
|
|
275
|
+
totalLng += item.lnglat.lng;
|
|
276
|
+
totalLat += item.lnglat.lat;
|
|
277
|
+
});
|
|
278
|
+
const centerLng = totalLng / this.config.position.length;
|
|
279
|
+
const centerLat = totalLat / this.config.position.length;
|
|
280
|
+
hnMap.map.map.setCenter([centerLng, centerLat]);
|
|
281
|
+
}
|
|
214
282
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
283
|
+
// 添加属性弹窗
|
|
284
|
+
addPopupByAttr() {
|
|
285
|
+
if (!this.infoWindow) {
|
|
286
|
+
this.infoWindow = new AMap.InfoWindow({
|
|
287
|
+
offset: new AMap.Pixel(0, -30),
|
|
288
|
+
});
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
this.layerEntity.on("click", (cluster: any) => {
|
|
292
|
+
if (cluster.clusterData.length === 1) {
|
|
293
|
+
let content = "";
|
|
294
|
+
const data = cluster.clusterData[0].extData;
|
|
295
|
+
for (const key in data) {
|
|
296
|
+
content += `<div>${key}: ${data[key]}</div>`;
|
|
297
|
+
}
|
|
298
|
+
this.infoWindow.setContent(content);
|
|
299
|
+
this.infoWindow.open(hnMap.map.map, cluster.marker._position);
|
|
218
300
|
}
|
|
301
|
+
});
|
|
302
|
+
}
|
|
219
303
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
304
|
+
// 添加自定义dom弹窗
|
|
305
|
+
addCustomPopup(getCustomDom: any) {
|
|
306
|
+
if (!this.infoWindow) {
|
|
307
|
+
this.infoWindow = new AMap.InfoWindow({
|
|
308
|
+
offset: new AMap.Pixel(0, -30),
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
this.layerEntity.on("click", (cluster: any) => {
|
|
313
|
+
if (cluster.clusterData.length === 1) {
|
|
314
|
+
let content = "";
|
|
315
|
+
const data = cluster.clusterData[0].extData;
|
|
316
|
+
const dom = getCustomDom(data);
|
|
317
|
+
this.infoWindow.setContent(dom);
|
|
318
|
+
this.infoWindow.open(hnMap.map.map, cluster.marker._position);
|
|
230
319
|
}
|
|
320
|
+
});
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
class siji_class {
|
|
325
|
+
type: any = "cluster";
|
|
326
|
+
id: any = null;
|
|
327
|
+
option: any = JSON.parse(JSON.stringify(defaultOption));
|
|
328
|
+
config_layer: any = null;
|
|
329
|
+
config_label: any = null;
|
|
330
|
+
config_Image: any = null;
|
|
331
|
+
layerEntity: any = null;
|
|
332
|
+
// 创建全局信息窗口实例
|
|
333
|
+
infoWindow: any = null;
|
|
334
|
+
event:any = {}
|
|
335
|
+
|
|
336
|
+
constructor(option: any) {
|
|
337
|
+
this.id = option.id;
|
|
338
|
+
deepMerge(this.option, option);
|
|
339
|
+
hnMap.map.map.addSource("themeData", {
|
|
340
|
+
type: "geojson",
|
|
341
|
+
data: {
|
|
342
|
+
type: "FeatureCollection",
|
|
343
|
+
features: this.option.position.map((v: any) => ({
|
|
344
|
+
type: "Feature",
|
|
345
|
+
geometry: {
|
|
346
|
+
type: "Point",
|
|
347
|
+
coordinates: convertPosition(v.position),
|
|
348
|
+
},
|
|
349
|
+
properties: {
|
|
350
|
+
name: v.data.name,
|
|
351
|
+
},
|
|
352
|
+
})),
|
|
353
|
+
},
|
|
354
|
+
cluster: true,
|
|
355
|
+
clusterMaxZoom: 12, // 最大聚类层级
|
|
356
|
+
clusterRadius: 100, // 聚合点半径,默认50
|
|
357
|
+
});
|
|
358
|
+
this.config_layer = this.formatConfigLayer(this.option);
|
|
359
|
+
this.config_label = this.formatConfigLabel(this.option);
|
|
360
|
+
this.config_Image = this.formatConfigImage(this.option);
|
|
361
|
+
}
|
|
362
|
+
formatConfigLayer(option: any) {
|
|
363
|
+
return {
|
|
364
|
+
id: "clusters_" + option.id,
|
|
365
|
+
type: "circle",
|
|
366
|
+
source: "themeData",
|
|
367
|
+
filter: ["has", "point_count"],
|
|
368
|
+
paint: {
|
|
369
|
+
// 使用step表达式,用于分段匹配圆点的颜色和半径
|
|
370
|
+
// 根据当前"point_count"值匹配对应的内容
|
|
371
|
+
// 默认为"#9faebf"
|
|
372
|
+
// 当大于10小于30时,返回"#3583de"
|
|
373
|
+
// 大于30小于55时,返回"#04b71e"
|
|
374
|
+
"circle-color": [
|
|
375
|
+
"step",
|
|
376
|
+
["get", "point_count"],
|
|
377
|
+
"#9faebf",
|
|
378
|
+
10,
|
|
379
|
+
"#3583de",
|
|
380
|
+
30,
|
|
381
|
+
"#04b71e",
|
|
382
|
+
55,
|
|
383
|
+
"#ff9800",
|
|
384
|
+
100,
|
|
385
|
+
"#f61402",
|
|
386
|
+
300,
|
|
387
|
+
"#f61402",
|
|
388
|
+
],
|
|
389
|
+
"circle-radius": [
|
|
390
|
+
"step",
|
|
391
|
+
["get", "point_count"],
|
|
392
|
+
20,
|
|
393
|
+
50,
|
|
394
|
+
30,
|
|
395
|
+
100,
|
|
396
|
+
35,
|
|
397
|
+
500,
|
|
398
|
+
35,
|
|
399
|
+
2000,
|
|
400
|
+
40,
|
|
401
|
+
5000,
|
|
402
|
+
40,
|
|
403
|
+
],
|
|
404
|
+
"circle-opacity": 0.7,
|
|
405
|
+
"circle-stroke-width": 3,
|
|
406
|
+
"circle-stroke-color": "#ffffff",
|
|
407
|
+
},
|
|
408
|
+
};
|
|
409
|
+
}
|
|
410
|
+
formatConfigLabel(option: any) {
|
|
411
|
+
return {
|
|
412
|
+
id: "clusterCount_" + option.id,
|
|
413
|
+
type: "symbol",
|
|
414
|
+
source: "themeData",
|
|
415
|
+
filter: ["has", "point_count"],
|
|
416
|
+
layout: {
|
|
417
|
+
"text-field": "{point_count_abbreviated}",
|
|
418
|
+
"text-font": ["Microsoft YaHei Regular"],
|
|
419
|
+
"text-size": 14,
|
|
420
|
+
},
|
|
421
|
+
paint: {
|
|
422
|
+
"text-color": "#ffffff",
|
|
423
|
+
},
|
|
424
|
+
};
|
|
425
|
+
}
|
|
231
426
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
})
|
|
250
|
-
}
|
|
427
|
+
formatConfigImage(option: any) {
|
|
428
|
+
return {
|
|
429
|
+
id: "choicePoi_" + option.id,
|
|
430
|
+
type: "symbol",
|
|
431
|
+
source: "themeData",
|
|
432
|
+
filter: ["!has", "point_count"],
|
|
433
|
+
layout: {
|
|
434
|
+
"icon-image": option.id + "_poiImage",
|
|
435
|
+
},
|
|
436
|
+
paint: {
|
|
437
|
+
"text-color": "#555252",
|
|
438
|
+
"text-halo-color": "#FFFFFF",
|
|
439
|
+
"text-halo-width": 1.33333,
|
|
440
|
+
},
|
|
441
|
+
};
|
|
442
|
+
}
|
|
251
443
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
444
|
+
/**
|
|
445
|
+
* 监听事件
|
|
446
|
+
* @param eventType 事件类型
|
|
447
|
+
* @param callback 事件回调函数
|
|
448
|
+
*/
|
|
449
|
+
on(eventType: string, callback: (data: any) => void): void {
|
|
450
|
+
this.off(eventType);
|
|
451
|
+
switch (eventType) {
|
|
452
|
+
case "click":
|
|
453
|
+
this.event[eventType] = (e: any) => {
|
|
454
|
+
const features = hnMap.map.map.queryRenderedFeatures(e.point);
|
|
455
|
+
if (features.length > 0) {
|
|
456
|
+
callback(features[0].properties);
|
|
256
457
|
}
|
|
458
|
+
};
|
|
459
|
+
break;
|
|
460
|
+
}
|
|
257
461
|
|
|
258
|
-
|
|
259
|
-
if (cluster.clusterData.length === 1) {
|
|
260
|
-
let content = ''
|
|
261
|
-
const data = cluster.clusterData[0].extData
|
|
262
|
-
const dom = getCustomDom(data);
|
|
263
|
-
this.infoWindow.setContent(dom);
|
|
264
|
-
this.infoWindow.open(hnMap.map.map, cluster.marker._position);
|
|
265
|
-
}
|
|
266
|
-
})
|
|
267
|
-
}
|
|
268
|
-
|
|
462
|
+
hnMap.map.map.on(eventType, this.event[eventType]);
|
|
269
463
|
}
|
|
270
464
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
465
|
+
/**
|
|
466
|
+
* 移除事件监听
|
|
467
|
+
* @param eventType 事件类型
|
|
468
|
+
*/
|
|
469
|
+
off(eventType: string): void {
|
|
470
|
+
if (this.event[eventType]) {
|
|
471
|
+
hnMap.map.map.off(eventType,this.event[eventType]);
|
|
472
|
+
delete this.event[eventType];
|
|
473
|
+
}
|
|
274
474
|
}
|
|
275
|
-
|
|
276
|
-
|
|
475
|
+
|
|
476
|
+
//
|
|
477
|
+
// // 添加属性弹窗
|
|
478
|
+
// addPopupByAttr() {
|
|
479
|
+
// // 如果已有弹窗,先关闭
|
|
480
|
+
// this.removePopup();
|
|
481
|
+
// this.infoWindow = new SGMap.Popup({
|
|
482
|
+
// offset: { bottom: [0, 0] },
|
|
483
|
+
// className: "my-attrPopup-class",
|
|
484
|
+
// });
|
|
485
|
+
//
|
|
486
|
+
// const handleClick = (e: any) => {
|
|
487
|
+
// let data = e.features[0].properties;
|
|
488
|
+
//
|
|
489
|
+
// // 创建弹窗内容
|
|
490
|
+
// let content = "";
|
|
491
|
+
// for (const key in data) {
|
|
492
|
+
// content += `<div>${key}: ${data[key]}</div>`;
|
|
493
|
+
// }
|
|
494
|
+
//
|
|
495
|
+
// this.infoWindow.setHTML(content);
|
|
496
|
+
// this.infoWindow.setLngLat(e.lngLat).addTo(hnMap.map.map);
|
|
497
|
+
// };
|
|
498
|
+
//
|
|
499
|
+
// hnMap.map.map.on("click", this.config.id, handleClick);
|
|
500
|
+
// }
|
|
501
|
+
//
|
|
502
|
+
// // 添加自定义dom弹窗
|
|
503
|
+
// addCustomPopup(getCustomDom: any) {
|
|
504
|
+
// // 如果已有弹窗,先关闭
|
|
505
|
+
// this.removePopup();
|
|
506
|
+
// this.infoWindow = new SGMap.Popup({
|
|
507
|
+
// offset: { bottom: [0, 0] },
|
|
508
|
+
// className: "my-customPopup-class",
|
|
509
|
+
// });
|
|
510
|
+
//
|
|
511
|
+
// const handleClick = (e: any) => {
|
|
512
|
+
// const data = e.features[0].properties;
|
|
513
|
+
// const dom = getCustomDom(data);
|
|
514
|
+
// this.infoWindow.setHTML(dom);
|
|
515
|
+
// this.infoWindow.setLngLat(e.lngLat).addTo(hnMap.map.map);
|
|
516
|
+
// };
|
|
517
|
+
//
|
|
518
|
+
// hnMap.map.map.on("click", this.config.id, handleClick);
|
|
519
|
+
// }
|
|
520
|
+
//
|
|
521
|
+
// // 弹窗删除
|
|
522
|
+
// removePopup() {
|
|
523
|
+
// if (this.infoWindow) {
|
|
524
|
+
// this.infoWindow.remove();
|
|
525
|
+
// }
|
|
526
|
+
// }
|
|
527
|
+
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
const fn: any = {
|
|
531
|
+
mars3d: mars3d_class,
|
|
532
|
+
gaode: gaode_class,
|
|
533
|
+
siji: siji_class,
|
|
534
|
+
};
|
|
535
|
+
return fn[hnMap.mapType];
|
|
536
|
+
};
|