-
Notifications
You must be signed in to change notification settings - Fork 2
/
L.CanvasOverlay.js
153 lines (116 loc) · 3.55 KB
/
L.CanvasOverlay.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
/*
Generic Canvas Overlay for leaflet.
** Requires **
- Leaflet 0.7.3 or later
** Copyright **
(C) 2014 Stanislav Sumbera
- http://blog.sumbera.com/2014/04/20/leaflet-canvas/
** Maintained by **
(C) 2015 Alexander Schoedon <schoedon@uni-potsdam.de>
All rights reserved.
** Credits **
Inspired by Stanislav Sumbera's Leaflet Canvas Overlay.
- http://blog.sumbera.com/2014/04/20/leaflet-canvas/
Inspired and portions taken from Leaflet Heat.
- https://github.com/Leaflet/Leaflet.heat
*/
/**
* Leaflet canvas overlay class
*/
L.CanvasOverlay = L.Class.extend({
initialize: function(userDrawFunc, options) {
this._userDrawFunc = userDrawFunc;
L.setOptions(this, options);
},
params:function(options){
L.setOptions(this, options);
return this;
},
drawing: function(userDrawFunc) {
this._userDrawFunc = userDrawFunc;
return this;
},
canvas: function() {
return this._canvas;
},
redraw: function() {
if (!this._frame) {
this._frame = L.Util.requestAnimFrame(this._redraw, this);
}
return this;
},
onAdd: function(map) {
this._map = map;
this._canvas = L.DomUtil.create('canvas', 'leaflet-heatmap-layer');
var size = this._map.getSize();
this._canvas.width = size.x;
this._canvas.height = size.y;
var animated = this._map.options.zoomAnimation && L.Browser.any3d;
L.DomUtil.addClass(this._canvas, 'leaflet-zoom-'
+ (animated ? 'animated' : 'hide'));
map._panes.overlayPane.appendChild(this._canvas);
map.on('moveend', this._reset, this);
map.on('resize', this._resize, this);
if (map.options.zoomAnimation && L.Browser.any3d) {
map.on('zoomanim', this._animateZoom, this);
}
this._reset();
},
onRemove: function(map) {
map.getPanes().overlayPane.removeChild(this._canvas);
map.off('moveend', this._reset, this);
map.off('resize', this._resize, this);
if (map.options.zoomAnimation) {
map.off('zoomanim', this._animateZoom, this);
}
this_canvas = null;
},
addTo: function(map) {
map.addLayer(this);
return this;
},
_resize: function(resizeEvent) {
this._canvas.width = resizeEvent.newSize.x;
this._canvas.height = resizeEvent.newSize.y;
},
_reset: function() {
var topLeft = this._map.containerPointToLayerPoint([0, 0]);
L.DomUtil.setPosition(this._canvas, topLeft);
this._redraw();
},
_redraw: function () {
var size = this._map.getSize();
var bounds = this._map.getBounds();
var zoomScale = (size.x * 180) / (20037508.34 * (bounds.getEast()
- bounds.getWest())); // resolution = 1/zoomScale
var zoom = this._map.getZoom();
if (this._userDrawFunc) {
this._userDrawFunc(this, {
canvas: this._canvas,
bounds: bounds,
size: size,
zoomScale: zoomScale,
zoom: zoom,
options: this.options
});
}
this._frame = null;
},
_animateZoom: function (e) {
var scale = this._map.getZoomScale(e.zoom),
offset = this._map._getCenterOffset(e.center)._multiplyBy(-scale)
.subtract(this._map._getMapPanePos());
this._canvas.style[L.DomUtil.TRANSFORM]
= L.DomUtil.getTranslateString(offset) + ' scale(' + scale + ')';
},
});
/**
* A wrapper function to create a canvas overlay object.
*
* @param {String} userDrawFunc the custom draw callback
* @param {Array} options an array of options for the overlay
* @return {Object} a canvas overlay object
*/
L.canvasOverlay = function (userDrawFunc, options) {
return new L.CanvasOverlay(userDrawFunc, options);
};