-
Notifications
You must be signed in to change notification settings - Fork 0
/
Leaflet.EditInOSM.js
259 lines (229 loc) · 9.85 KB
/
Leaflet.EditInOSM.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
// source here https://github.com/pangoSE/Leaflet.EditInOSM
(function (factory) {
var L;
if (typeof define === 'function' && define.amd) {
// AMD
define(['leaflet'], function(L) {
factory(L, setTimeout);
});
} else if (typeof module !== 'undefined') {
// Node/CommonJS
L = require('leaflet');
module.exports = factory(L, setTimeout);
} else {
// Browser globals
if (typeof window.L === 'undefined')
throw 'Leaflet must be loaded first';
factory(window.L, setTimeout);
}
}(function (L, setTimeout) {
var _controlContainer,
_map,
_zoomThreshold,
_hideClass = 'leaflet-control-edit-hidden',
_anchorClass = 'leaflet-control-edit-in-osm-toggle',
_Widgets = {
SimpleButton: function (config) {
var className = (config && config.className) || 'leaflet-control-edit-in-osm-simple',
helpText = config && config.helpText,
addEditors = (config && config.addEditors) || function (container, editors) {
addEditorToWidget(container, editors[0], helpText);
};
return {
className: className,
helpText: helpText,
addEditors: addEditors
};
},
MultiButton: function (config) {
var className = 'leaflet-control-edit-in-osm',
helpText = "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
addEditors = function (container, editors) {
for (var i in editors) {
addEditorToWidget(container, editors[i]);
}
};
return {
className: (config && config.className) || className,
helpText: (config && config.helpText) || helpText,
addEditors: (config && config.addEditors) || addEditors
};
},
AttributionBox: function (config) {
var className = 'leaflet-control-attribution',
helpText = "Edit in OSM",
addEditors = function (container, editors) {
addEditorToWidget(container, editors[0], helpText);
};
return {
className: (config && config.className) || className,
helpText: (config && config.helpText) || helpText,
addEditors: (config && config.addEditors) || addEditors
};
}
},
_Editors = {
Note: function (config) {
var url = 'https://www.openstreetmap.org/note/new#map=',
displayName = "Add new note",
buildUrl = function (map) {
return this.url + [
map.getZoom(),
map.getCenter().wrap().lat,
map.getCenter().wrap().lng
].join('/');
};
return {
url: (config && config.url) || url,
displayName: (config && config.displayName) || displayName,
buildUrl: (config && config.buildUrl) || buildUrl
};
},
Id: function (config) {
var url = 'https://www.openstreetmap.org/edit?editor=id#map=',
displayName = "iD",
buildUrl = function (map) {
return this.url + [
map.getZoom(),
map.getCenter().wrap().lat,
map.getCenter().wrap().lng
].join('/');
};
return {
url: (config && config.url) || url,
displayName: (config && config.displayName) || displayName,
buildUrl: (config && config.buildUrl) || buildUrl
};
},
Josm: function (config) {
var url = 'http://127.0.0.1:8111/load_and_zoom',
timeout = 1000,
displayName = "JOSM",
buildUrl = function (map) {
var bounds = map.getBounds();
return this.url + L.Util.getParamString({
left: bounds.getNorthWest().wrap().lng,
right: bounds.getSouthEast().wrap().lng,
top: bounds.getNorthWest().wrap().lat,
bottom: bounds.getSouthEast().wrap().lat
});
};
return {
url: (config && config.url) || url,
timeout: (config && config.timeout) || timeout,
displayName: (config && config.displayName) || displayName,
buildUrl: (config && config.buildUrl) || buildUrl
};
},
Potlatch: function (config) {
var url = 'http://open.mapquestapi.com/dataedit/index_flash.html',
displayName = "P2",
buildUrl = function (map) {
return this.url + L.Util.getParamString({
lon: map.getCenter().wrap().lng,
lat: map.getCenter().wrap().lat,
zoom: map.getZoom()
});
};
return {
url: (config && config.url) || url,
displayName: (config && config.displayName) || displayName,
buildUrl: (config && config.buildUrl) || buildUrl
};
}
};
// Takes an editor, calls their buildUrl method
// and opens the url in the browser
function openRemote (editor) {
var url = editor.buildUrl(_map),
w = window.open(url);
if (editor.timeout) {
setTimeout(function() {w.close();}, editor.timeout);
}
}
function addEditorToWidget(widgetContainer, editor, text) {
var editorWidget = L.DomUtil.create('a', "osm-editor", widgetContainer);
editorWidget.href = "#";
editorWidget.innerHTML = text || editor.displayName;
L.DomEvent.on(editorWidget, "click", function (e) {
openRemote(editor);
L.DomEvent.stop(e);
});
}
// Make the EditInOSM widget visible or invisible after each
// zoom event.
//
// configurable by setting the *zoomThreshold* option.
function showOrHideUI() {
var zoom = _map.getZoom();
if (zoom < _zoomThreshold) {
L.DomUtil.addClass(_controlContainer, _hideClass);
} else {
L.DomUtil.removeClass(_controlContainer, _hideClass);
}
}
L.Control.EditInOSM = L.Control.extend({
options: {
position: "topright",
zoomThreshold: 0,
widget: "multiButton",
editors: ["note", "id", "josm"]
},
initialize: function (options) {
var newEditors = [],
widget,
widgetSmallName,
editor,
editorSmallName;
L.setOptions(this, options);
_zoomThreshold = this.options.zoomThreshold;
widget = this.options.widget;
widgetSmallName = typeof(widget) === 'string' ? widget.toLowerCase() : '';
// setup widget from string or object
if (widgetSmallName === "simplebutton") {
this.options.widget = new _Widgets.SimpleButton(this.options.widgetOptions);
} else if (widgetSmallName === "multibutton") {
this.options.widget = new _Widgets.MultiButton(this.options.widgetOptions);
} else if (widgetSmallName === "attributionbox") {
this.options.widget = new _Widgets.AttributionBox(this.options.widgetOptions);
}
// setup editors from strings or objects
for (var i in this.options.editors) {
editor = this.options.editors[i],
editorSmallName = typeof(editor) === "string" ? editor.toLowerCase() : null;
if (editorSmallName === "id") {
newEditors.push(new _Editors.Id());
} else if (editorSmallName === "josm") {
newEditors.push(new _Editors.Josm());
} else if (editorSmallName === "potlatch") {
newEditors.push(new _Editors.Potlatch());
} else if (editorSmallName === "note") {
newEditors.push(new _Editors.Note());
} else {
newEditors.push(editor);
}
}
this.options.editors = newEditors;
},
onAdd: function (map) {
_map = map;
map.on('zoomend', showOrHideUI);
_controlContainer = L.DomUtil.create('div', this.options.widget.className);
_controlContainer.title = this.options.widget.helpText || '';
L.DomUtil.create('a', _anchorClass, _controlContainer);
this.options.widget.addEditors(_controlContainer, this.options.editors);
return _controlContainer;
},
onRemove: function (map) {
map.off('zoomend', showOrHideUI);
}
});
L.Control.EditInOSM.Widgets = _Widgets;
L.Control.EditInOSM.Editors = _Editors;
L.Map.addInitHook(function () {
if (this.options.editInOSMControlOptions) {
var options = this.options.editInOSMControlOptions || {};
this.editInOSMControl = (new L.Control.EditInOSM(options)).addTo(this);
}
});
}));