-
Notifications
You must be signed in to change notification settings - Fork 3
/
Map.js
235 lines (181 loc) · 5.22 KB
/
Map.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
import L from 'leaflet'
import './utils/L.Map.Sync'
import layerTypes from './layers/layerTypes'
import controlTypes from './controls/controlTypes'
import translateOptions from './utils/options'
import {
toLatLng,
toLatLngBounds,
toLngLatBounds,
getBoundsFromLayers,
} from './utils/geometry'
export class Map extends L.Evented {
options = {
className: 'leaflet-dhis2',
zoomControl: false,
controls: [],
worldCopyJump: true,
maxZoom: 18,
}
constructor(el, opts) {
super()
const options = L.setOptions(this, translateOptions(opts))
this._layers = []
this._controls = {}
const map = L.map(el, options)
this._map = map
map.on('load', this.onLoad)
map.on('click', this.onClick)
map.on('contextmenu', this.onContextMenu)
map.on('resize', this.onResize)
// Stop propagation to prevent dashboard dragging
map.on('mousedown', evt => evt.originalEvent.stopPropagation())
if (map.attributionControl) {
map.attributionControl.setPrefix('')
}
L.DomUtil.addClass(this.getContainer(), options.className)
L.Icon.Default.imagePath = '/images/'
if (options.bounds) {
this.fitBounds(options.bounds)
}
for (const control in options.controls) {
if (options.controls.hasOwnProperty(control)) {
this.addControl(control)
}
}
}
getContainer() {
return this._map.getContainer()
}
getLeafletMap() {
return this._map
}
// Accept layer as config object
addLayer(layer) {
let newLayer = layer
if (layer.type) {
newLayer = this.createLayer(layer)
}
if (newLayer instanceof L.Layer) {
newLayer.createPane(this._map)
this._map.addLayer(newLayer)
this._layers.push(newLayer)
return newLayer
}
return null
}
removeLayer(layer) {
this._layers = this._layers.filter(l => l !== layer)
return this._map.removeLayer(layer)
}
hasLayer(layer) {
return this._map.hasLayer(layer)
}
remove() {
this._map.off('load', this.onLoad)
this._map.off('click', this.onClick)
this._map.off('contextmenu', this.onContextMenu)
this._map.off('resize', this.onResize)
this._map.remove()
}
createLayer(layer) {
const layerFactory = layerTypes[layer.type]
if (layerFactory) {
return layerFactory(layer)
}
return null
}
addControl(control) {
const { position, type } = control
if (position) {
control.position = position.replace(/-/, '')
}
let newControl = control
if (type && controlTypes[type]) {
newControl = controlTypes[type](control)
} else if (type && L.control[type]) {
newControl = L.control[type](control)
}
this._map.addControl(newControl)
if (type) {
this._controls[type] = newControl
}
return newControl
}
fitBounds(bounds) {
if (bounds) {
this._map.fitBounds(toLatLngBounds(bounds))
}
}
fitWorld() {
this._map.fitWorld()
}
setView(lnglat, zoom) {
this._map.setView(toLatLng(lnglat), zoom)
}
getLayers() {
return this._layers
}
// Returns the combined bounds for all vector layers
getLayersBounds() {
return toLngLatBounds(getBoundsFromLayers(this.getLayers()))
}
// Returns the dom element of the control
getControlContainer(type) {
if (this._controls[type]) {
return this._controls[type]._container
}
}
// Returns the map zoom level
getZoom() {
return this._map.getZoom()
}
// Returns true if the layer type is supported
static hasLayerSupport(type) {
return !!layerTypes[type]
}
// Open a popup at lnglat
openPopup(content, lnglat, onClose) {
this._map.openPopup(content, toLatLng(lnglat))
if (typeof onClose === 'function') {
this._map.once('popupclose', onClose)
}
}
// Closes the popup previously opened with openPopup
closePopup() {
this._map.closePopup()
}
resize() {
this._map.invalidateSize()
}
// Synchronize this map with other maps with the same id
sync(id) {
this._map.sync(id)
}
// Remove synchronize of this map
unsync(id) {
this._map.unsync(id)
}
onClick = evt => {
this.fire('click', this._createClickEvent(evt))
}
onContextMenu = evt => {
this.fire('contextmenu', this._createClickEvent(evt))
}
onResize = evt => {
this.fire('resize', evt)
}
onLoad = () => {
this.fire('ready', this)
}
_createClickEvent(evt) {
const { type, latlng, originalEvent } = evt
const coordinates = [latlng.lng, latlng.lat]
const position = [
originalEvent.x,
originalEvent.pageY || originalEvent.y,
]
return { type, coordinates, position }
}
}
export default Map