-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvirtual-grid.js
318 lines (253 loc) · 7.31 KB
/
virtual-grid.js
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
/** ****************************************************************************************************
* File: virtual-grid.js
* Project: geonet-leaflet-wmgs
* @author Nick Soggin <[email protected]> on 25-Feb-2019
*******************************************************************************************************/
'use strict';
const
{
bounds,
latLngBounds,
point,
Layer,
setOptions,
Util
} = L;
var VirtualGrid = Layer.extend( {
options: {
cellSize: 512,
updateInterval: 150
},
initialize: function( options ) {
options = setOptions( this, options );
this._zooming = false;
},
onAdd: function( map ) {
this._map = map;
this._update = Util.throttle( this._update, this.options.updateInterval, this );
this._reset();
this._update();
},
onRemove: function() {
this._map.removeEventListener( this.getEvents(), this );
this._removeCells();
},
getEvents: function() {
var events = {
moveend: this._update,
zoomstart: this._zoomstart,
zoomend: this._reset
};
return events;
},
addTo: function( map ) {
map.addLayer( this );
return this;
},
removeFrom: function( map ) {
map.removeLayer( this );
return this;
},
_zoomstart: function() {
this._zooming = true;
},
_reset: function() {
this._removeCells();
this._cells = {};
this._activeCells = {};
this._cellsToLoad = 0;
this._cellsTotal = 0;
this._cellNumBounds = this._getCellNumBounds();
this._resetWrap();
this._zooming = false;
},
_resetWrap: function() {
var map = this._map;
var crs = map.options.crs;
if( crs.infinite ) {
return;
}
var cellSize = this._getCellSize();
if( crs.wrapLng ) {
this._wrapLng = [
Math.floor( map.project( [ 0, crs.wrapLng[ 0 ] ] ).x / cellSize ),
Math.ceil( map.project( [ 0, crs.wrapLng[ 1 ] ] ).x / cellSize )
];
}
if( crs.wrapLat ) {
this._wrapLat = [
Math.floor( map.project( [ crs.wrapLat[ 0 ], 0 ] ).y / cellSize ),
Math.ceil( map.project( [ crs.wrapLat[ 1 ], 0 ] ).y / cellSize )
];
}
},
_getCellSize: function() {
return this.options.cellSize;
},
_update: function() {
if( !this._map ) {
return;
}
var mapBounds = this._map.getPixelBounds();
var cellSize = this._getCellSize();
// cell coordinates range for the current view
var cellBounds = bounds(
mapBounds.min.divideBy( cellSize ).floor(),
mapBounds.max.divideBy( cellSize ).floor() );
this._removeOtherCells( cellBounds );
this._addCells( cellBounds );
this.fire( 'cellsupdated' );
},
_addCells: function( cellBounds ) {
var queue = [];
var center = cellBounds.getCenter();
var zoom = this._map.getZoom();
var j, i, coords;
// create a queue of coordinates to load cells from
for( j = cellBounds.min.y; j <= cellBounds.max.y; j++ ) {
for( i = cellBounds.min.x; i <= cellBounds.max.x; i++ ) {
coords = point( i, j );
coords.z = zoom;
if( this._isValidCell( coords ) ) {
queue.push( coords );
}
}
}
var cellsToLoad = queue.length;
if( cellsToLoad === 0 ) {
return;
}
this._cellsToLoad += cellsToLoad;
this._cellsTotal += cellsToLoad;
// sort cell queue to load cells in order of their distance to center
queue.sort( function( a, b ) {
return a.distanceTo( center ) - b.distanceTo( center );
} );
for( i = 0; i < cellsToLoad; i++ ) {
this._addCell( queue[ i ] );
}
},
_isValidCell: function( coords ) {
var crs = this._map.options.crs;
if( !crs.infinite ) {
// don't load cell if it's out of bounds and not wrapped
var cellNumBounds = this._cellNumBounds;
if( !cellNumBounds ) return false;
if(
( !crs.wrapLng && ( coords.x < cellNumBounds.min.x || coords.x > cellNumBounds.max.x ) ) ||
( !crs.wrapLat && ( coords.y < cellNumBounds.min.y || coords.y > cellNumBounds.max.y ) )
) {
return false;
}
}
if( !this.options.bounds ) {
return true;
}
// don't load cell if it doesn't intersect the bounds in options
var cellBounds = this._cellCoordsToBounds( coords );
return latLngBounds( this.options.bounds ).intersects( cellBounds );
},
// converts cell coordinates to its geographical bounds
_cellCoordsToBounds: function( coords ) {
var map = this._map;
var cellSize = this.options.cellSize;
var nwPoint = coords.multiplyBy( cellSize );
var sePoint = nwPoint.add( [ cellSize, cellSize ] );
var nw = map.wrapLatLng( map.unproject( nwPoint, coords.z ) );
var se = map.wrapLatLng( map.unproject( sePoint, coords.z ) );
return latLngBounds( nw, se );
},
// converts cell coordinates to key for the cell cache
_cellCoordsToKey: function( coords ) {
return coords.x + ':' + coords.y;
},
// converts cell cache key to coordiantes
_keyToCellCoords: function( key ) {
var kArr = key.split( ':' );
var x = parseInt( kArr[ 0 ], 10 );
var y = parseInt( kArr[ 1 ], 10 );
return point( x, y );
},
// remove any present cells that are off the specified bounds
_removeOtherCells: function( bounds ) {
for( var key in this._cells ) {
if( !bounds.contains( this._keyToCellCoords( key ) ) ) {
this._removeCell( key );
}
}
},
_removeCell: function( key ) {
var cell = this._activeCells[ key ];
if( cell ) {
delete this._activeCells[ key ];
if( this.cellLeave ) {
this.cellLeave( cell.bounds, cell.coords );
}
this.fire( 'cellleave', {
bounds: cell.bounds,
coords: cell.coords
} );
}
},
_removeCells: function() {
for( var key in this._cells ) {
var cellBounds = this._cells[ key ].bounds;
var coords = this._cells[ key ].coords;
if( this.cellLeave ) {
this.cellLeave( cellBounds, coords );
}
this.fire( 'cellleave', {
bounds: cellBounds,
coords: coords
} );
}
},
_addCell: function( coords ) {
// wrap cell coords if necessary (depending on CRS)
this._wrapCoords( coords );
// generate the cell key
var key = this._cellCoordsToKey( coords );
// get the cell from the cache
var cell = this._cells[ key ];
// if this cell should be shown as isnt active yet (enter)
if( cell && !this._activeCells[ key ] ) {
if( this.cellEnter ) {
this.cellEnter( cell.bounds, coords );
}
this.fire( 'cellenter', {
bounds: cell.bounds,
coords: coords
} );
this._activeCells[ key ] = cell;
}
// if we dont have this cell in the cache yet (create)
if( !cell ) {
cell = {
coords: coords,
bounds: this._cellCoordsToBounds( coords )
};
this._cells[ key ] = cell;
this._activeCells[ key ] = cell;
if( this.createCell ) {
this.createCell( cell.bounds, coords );
}
this.fire( 'cellcreate', {
bounds: cell.bounds,
coords: coords
} );
}
},
_wrapCoords: function( coords ) {
coords.x = this._wrapLng ? Util.wrapNum( coords.x, this._wrapLng ) : coords.x;
coords.y = this._wrapLat ? Util.wrapNum( coords.y, this._wrapLat ) : coords.y;
},
// get the global cell coordinates range for the current zoom
_getCellNumBounds: function() {
var worldBounds = this._map.getPixelWorldBounds();
var size = this._getCellSize();
return worldBounds ? bounds(
worldBounds.min.divideBy( size ).floor(),
worldBounds.max.divideBy( size ).ceil().subtract( [ 1, 1 ] ) ) : null;
}
} );
export default VirtualGrid;