forked from MapGIS/WebClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapvLayer.js
More file actions
353 lines (300 loc) · 10.1 KB
/
MapvLayer.js
File metadata and controls
353 lines (300 loc) · 10.1 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
import mapboxgl from '@mapgis/mapbox-gl';
import '../core/Base';
import { MapvBaseLayer } from "./mapv/MapvBaseLayer";
/**
* @origin author kyle / http://nikai.us/
* @author 基础平台/创新中心 潘卓然 ParnDeedlit
* @class module:客户端可视化.MapvLayer
* @classdesc 基于mapboxgl的Layer对象进行的拓展
* @param map - {Object} 传入的mapboxgl的地图对象
* @param dataset - {MapvDataSet} 传入的mapv的属性。 <br>
* @param mapvoption - {MapvOption} 可选参数。<br>
* @see https://github.com/huiyan-fe/mapv/blob/master/API.md
* @example
* var options = {
size: 13,
gradient: {
0.25: "rgb(0,0,255)",
0.55: "rgb(0,255,0)",
0.85: "yellow",
1.0: "rgb(255,0,0)"
},
max: 60,
animation: {
type: 'time',
stepsRange: {
start: 0,
end: 100
},
trails: 10,
duration: 4,
},
draw: 'heatmap'
}
var mapvLayer = new mapboxgl.zondy.MapvLayer(map, dataSet, options);
*/
export class MapvLayer {
constructor(map, dataSet, mapVOptions) {
this.map = map;
this.layerID = mapVOptions.layerID;
delete mapVOptions["layerID"];
this.mapvBaseLayer = new MapvBaseLayer(map, dataSet, mapVOptions, this);
this.mapVOptions = mapVOptions;
this.initDevicePixelRatio();
this.canvas = this._createCanvas();
this.render = this.render.bind(this);
this.bindEvent();
this.mapContainer = map.getCanvasContainer();
this.mapContainer.appendChild(this.canvas);
// this.mapContainer.style.perspective = this.map.transform.cameraToCenterDistance + 'px';
this._reset();
}
initDevicePixelRatio() {
this.devicePixelRatio = window.devicePixelRatio || 1;
}
//-----------------------------------Event Methods----------------------------------------
bindEvent() {
var map = this.map;
//下面几个是mapboxgl专属事件,clickEvent和mousemoveEvent是mapv内部自带的方法不放出来
this.innerMoveStart = this.moveStartEvent.bind(this);
this.innerMoveEnd = this.moveEndEvent.bind(this);
this.innnerZoomStart = this.zoomStartEvent.bind(this);
this.innnerZoomEnd = this.zoomEndEvent.bind(this);
this.innnerRotateStart = this.rotateStartEvent.bind(this);
this.innnerRotateEnd = this.rotateEndEvent.bind(this);
this.innerResize = this.resizeEvent.bind(this);
this.innerRemove = this.removeEvent.bind(this);
map.on('resize', this.innerResize);
map.on('zoomstart', this.innnerZoomStart);
map.on('zoomend', this.innnerZoomEnd);
map.on('rotatestart', this.innnerRotateStart);
map.on('rotateend', this.innnerRotateEnd);
map.on('movestart', this.innerMoveStart);
map.on('moveend', this.innerMoveEnd);
this.map.on('remove', this.innerRemove);
}
unbindEvent() {
var map = this.map;
map.off('resize', this.innerResize);
map.off('zoomstart', this.innnerZoomStart);
map.off('zoomend', this.innnerZoomEnd);
map.off('rotatestart', this.innnerRotateStart);
map.off('rotateend', this.innnerRotateEnd);
map.off('movestart', this.innerMoveStart);
map.off('moveend', this.innerMoveEnd);
}
moveStartEvent() {
this.mapvBaseLayer.animatorMovestartEvent();
this._unvisiable();
}
moveEndEvent() {
this.mapvBaseLayer.animatorMoveendEvent();
this._reset();
this._visiable();
}
zoomStartEvent() {
this._unvisiable();
}
zoomEndEvent() {
this._unvisiable();
}
rotateStartEvent() {
this.mapvBaseLayer.animatorMovestartEvent();
this._unvisiable();
}
rotateEndEvent() {
this.mapvBaseLayer.animatorMoveendEvent();
this._reset();
this._visiable();
}
resizeEvent() {
this._reset();
this._visiable();
}
removeEvent() {
this.mapContainer.removeChild(this.canvas);
}
//-----------------------------------Event Methods----------------------------------------
//-----------------------------------Start Data Operation---------------------------------
/**
* 增加数据
* @function mapboxgl.zondy.MapvLayer.prototype.addData
*
* @param data - {Array} 数据.
* @param options - {Object} 只做额外增加的字段作用
*/
addData(data, options) {
this.mapvBaseLayer.addData(data, options);
}
/**
* 更新数据
* @function mapboxgl.zondy.MapvLayer.prototype.updateData
*
* @param data - {Array} 数据.
* @param options - {Object} 只做额外增加的字段作用
*/
updateData(data, options) {
this.mapvBaseLayer.updateData(data, options);
}
getData() {
if (this.mapvBaseLayer) {
this.dataSet = this.mapvBaseLayer.getData();
}
return this.dataSet;
}
/**
* @function mapboxgl.zondy.MapvLayer.prototype.removeData
* @param filter - {Function} 过滤函数,返回true的保留
* @description 移除满足过滤条件的数据
* @example
* filter: function(item){
if (item.count > 10 && item.count < 50) {
return true;
} else {
return false;
}
}
*/
removeData(filter) {
this.mapvBaseLayer && this.mapvBaseLayer.removeData(filter);
}
/**
* @function mapboxgl.zondy.MapvLayer.prototype.removeAllData
* @description 移除全部数据
*/
removeAllData() {
this.mapvBaseLayer.clearData();
}
//-----------------------------------End Data Operation---------------------------------
_visiable() {
this.canvas.style.display = 'block';
return this;
}
_unvisiable() {
this.canvas.style.display = 'none';
return this;
}
_createCanvas() {
var canvas = document.createElement('canvas');
var devicePixelRatio = this.devicePixelRatio;
canvas.id = this.layerID;
canvas.style.position = 'absolute';
canvas.style.top = "0px";
canvas.style.left = "0px";
canvas.width = parseInt(this.map.getCanvas().style.width) * devicePixelRatio;
canvas.height = parseInt(this.map.getCanvas().style.height) * devicePixelRatio;
if (!this.mapVOptions.context || this.mapVOptions.context == '2d') {
canvas.getContext('2d').scale(devicePixelRatio, devicePixelRatio);
}
canvas.style.width = this.map.getCanvas().style.width;
canvas.style.height = this.map.getCanvas().style.height;
return canvas;
}
_reset() {
if (this.canvas == null) {
return;
}
this.resizeCanvas();
this.fixPosition();
this.onResize();
this.render();
}
draw() {
return this._reset();
}
/**
* 显示图层
* @function mapboxgl.zondy.MapvLayer.prototype.show
*/
show() {
this._visiable();
}
/**
* 隐藏图层
* @function mapboxgl.zondy.MapvLayer.prototype.hide
*/
hide() {
this._unvisiable();
}
/**
* 更新图层
* @function mapboxgl.zondy.MapvLayer.prototype.update
* @param opt.data - {Array} 需要更新的数据
* @param opt.options - {Object} 需要更新的样式
*/
update(opt) {
if (opt == undefined) { return; }
this.updateData(opt.data, opt.options);
}
resizeCanvas() {
this.mapContainer.style.perspective = this.map.transform.cameraToCenterDistance + 'px';
if(this.canvas == undefined || this.canvas == null) return;
var canvas = this.canvas;
var devicePixelRatio = this.devicePixelRatio;
canvas.style.position = 'absolute';
canvas.style.top = "0px";
canvas.style.left = "0px";
canvas.width = parseInt(this.map.getCanvas().style.width) * devicePixelRatio;
canvas.height = parseInt(this.map.getCanvas().style.height) * devicePixelRatio;
// canvas.style.width = this.map.getCanvas().style.width;
// canvas.style.height = this.map.getCanvas().style.height;
if (!this.mapVOptions.context || this.mapVOptions.context == '2d') {
canvas.getContext('2d').scale(devicePixelRatio, devicePixelRatio);
}
}
fixPosition() {
}
onResize() {
}
originPosition() {
this.originPitch = this.map.getPitch();
this.originBearing = this.map.getBearing();
var origin = this.map.project(new mapboxgl.LngLat(0, 0));
this.originX = origin.x;
this.originY = origin.y
}
render() {
if (this.mapvBaseLayer == undefined) return;
this.mapvBaseLayer._canvasUpdate();
}
moveTo(layerID, before) {
var layer = document.getElementById(this.layerID);
before = before !== undefined ? before : true;
if (before) {
var beforeLayer = document.getElementById(layerID);
if (layer && beforeLayer) {
beforeLayer.parentNode.insertBefore(layer, beforeLayer);
}
return;
}
var nextLayer = document.getElementById(layerID);
if (layer) {
if (nextLayer.nextSibling) {
nextLayer.parentNode.insertBefore(layer, nextLayer.nextSibling);
return;
}
nextLayer.parentNode.appendChild(layer);
}
}
/**
* 移除图层,清空所有的事件与数据,与destroy效果一致,保持接口与mapboxgl本身一致
* @function mapboxgl.zondy.MapvLayer.prototype.remove
*/
remove() {
this.removeAllData();
this.unbindEvent();
this.mapContainer.removeChild(this.canvas);
this.disposeFlag = true;
}
/**
* 销毁图层,清空所有的事件与数据,与remove效果一致
* @function mapboxgl.zondy.MapvLayer.prototype.destroy
*/
destroy() {
this.removeAllData();
this.unbindEvent();
this.mapContainer.removeChild(this.canvas);
this.disposeFlag = true;
}
}
mapboxgl.zondy.MapvLayer = MapvLayer;