]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/leaflet.share.js
c72760c972e5b8733af2e81b1e3e24d5edcafdf1
[rails.git] / app / assets / javascripts / leaflet.share.js
1 L.OSM.share = function (options) {
2   var control = L.OSM.sidebarPane(options, "share", "javascripts.share.title", "javascripts.share.title"),
3       marker = L.marker([0, 0], { draggable: true }),
4       locationFilter = new L.LocationFilter({
5         enableButton: false,
6         adjustButton: false
7       });
8
9   control.onAddPane = function (map, button, $ui) {
10     // Link / Embed
11
12     var $linkSection = $("<div>")
13       .attr("class", "section share-link")
14       .appendTo($ui);
15
16     $("<h4>")
17       .text(I18n.t("javascripts.share.link"))
18       .appendTo($linkSection);
19
20     var $form = $("<form>")
21       .appendTo($linkSection);
22
23     $("<div>")
24       .attr("class", "form-check mb-3")
25       .appendTo($form)
26       .append($("<label>")
27         .attr("for", "link_marker")
28         .attr("class", "form-check-label")
29         .text(I18n.t("javascripts.share.include_marker")))
30       .append($("<input>")
31         .attr("id", "link_marker")
32         .attr("type", "checkbox")
33         .attr("class", "form-check-input")
34         .bind("change", toggleMarker));
35
36     $("<div class='btn-group btn-group-sm mb-2'>")
37       .appendTo($form)
38       .append($("<a class='btn btn-primary'>")
39         .addClass("active")
40         .attr("for", "long_input")
41         .attr("id", "long_link")
42         .text(I18n.t("javascripts.share.long_link")))
43       .append($("<a class='btn btn-primary'>")
44         .attr("for", "short_input")
45         .attr("id", "short_link")
46         .text(I18n.t("javascripts.share.short_link")))
47       .append($("<a class='btn btn-primary'>")
48         .attr("for", "embed_html")
49         .attr("href", "#")
50         .text(I18n.t("javascripts.share.embed")))
51       .on("click", "a", function (e) {
52         e.preventDefault();
53         var id = "#" + $(this).attr("for");
54         $(this).siblings("a")
55           .removeClass("active");
56         $(this).addClass("active");
57         $linkSection.find(".share-tab")
58           .hide();
59         $linkSection.find(".share-tab:has(" + id + ")")
60           .show()
61           .find("input, textarea")
62           .select();
63       });
64
65     $("<div>")
66       .attr("class", "share-tab")
67       .appendTo($form)
68       .append($("<input>")
69         .attr("id", "long_input")
70         .attr("type", "text")
71         .on("click", select));
72
73     $("<div>")
74       .attr("class", "share-tab")
75       .hide()
76       .appendTo($form)
77       .append($("<input>")
78         .attr("id", "short_input")
79         .attr("type", "text")
80         .on("click", select));
81
82     $("<div>")
83       .attr("class", "share-tab")
84       .hide()
85       .appendTo($form)
86       .append(
87         $("<textarea>")
88           .attr("id", "embed_html")
89           .on("click", select))
90       .append(
91         $("<p>")
92           .attr("class", "text-muted")
93           .text(I18n.t("javascripts.share.paste_html")));
94
95     // Geo URI
96
97     var $geoUriSection = $("<div>")
98       .attr("class", "section share-geo-uri")
99       .appendTo($ui);
100
101     $("<h4>")
102       .text(I18n.t("javascripts.share.geo_uri"))
103       .appendTo($geoUriSection);
104
105     $("<div>")
106       .appendTo($geoUriSection)
107       .append($("<a>")
108         .attr("id", "geo_uri"));
109
110     // Image
111
112     var $imageSection = $("<div>")
113       .attr("class", "section share-image")
114       .appendTo($ui);
115
116     $("<h4>")
117       .text(I18n.t("javascripts.share.image"))
118       .appendTo($imageSection);
119
120     $("<div>")
121       .attr("id", "export-warning")
122       .attr("class", "text-muted")
123       .text(I18n.t("javascripts.share.only_standard_layer"))
124       .appendTo($imageSection);
125
126     $form = $("<form>")
127       .attr("id", "export-image")
128       .attr("action", "/export/finish")
129       .attr("method", "post")
130       .appendTo($imageSection);
131
132     $("<div>")
133       .appendTo($form)
134       .attr("class", "row mb-3")
135       .append($("<label>")
136         .attr("for", "mapnik_format")
137         .attr("class", "col-auto col-form-label")
138         .text(I18n.t("javascripts.share.format")))
139       .append($("<div>")
140         .attr("class", "col-auto")
141         .append($("<select>")
142           .attr("name", "mapnik_format")
143           .attr("id", "mapnik_format")
144           .attr("class", "form-select w-auto")
145           .append($("<option>").val("png").text("PNG").prop("selected", true))
146           .append($("<option>").val("jpeg").text("JPEG"))
147           .append($("<option>").val("svg").text("SVG"))
148           .append($("<option>").val("pdf").text("PDF"))));
149
150     $("<div>")
151       .appendTo($form)
152       .attr("class", "row mb-3")
153       .append($("<label>")
154         .attr("for", "mapnik_scale")
155         .attr("class", "col-auto col-form-label")
156         .text(I18n.t("javascripts.share.scale")))
157       .append($("<div>")
158         .attr("class", "col-auto")
159         .append($("<div>")
160           .attr("class", "input-group flex-nowrap")
161           .append($("<span>")
162             .attr("class", "input-group-text")
163             .text("1 : "))
164           .append($("<input>")
165             .attr("name", "mapnik_scale")
166             .attr("id", "mapnik_scale")
167             .attr("type", "text")
168             .attr("class", "form-control")
169             .on("change", update))));
170
171     $("<div>")
172       .attr("class", "row mb-3")
173       .appendTo($form)
174       .append($("<div>")
175         .attr("class", "col-auto")
176         .append($("<div>")
177           .attr("class", "form-check")
178           .append($("<label>")
179             .attr("for", "image_filter")
180             .attr("class", "form-check-label")
181             .text(I18n.t("javascripts.share.custom_dimensions")))
182           .append($("<input>")
183             .attr("id", "image_filter")
184             .attr("type", "checkbox")
185             .attr("class", "form-check-input")
186             .bind("change", toggleFilter))));
187
188     ["minlon", "minlat", "maxlon", "maxlat"].forEach(function (name) {
189       $("<input>")
190         .attr("id", "mapnik_" + name)
191         .attr("name", name)
192         .attr("type", "hidden")
193         .appendTo($form);
194     });
195
196     $("<input>")
197       .attr("name", "format")
198       .attr("value", "mapnik")
199       .attr("type", "hidden")
200       .appendTo($form);
201
202     var csrf_param = $("meta[name=csrf-param]").attr("content"),
203         csrf_token = $("meta[name=csrf-token]").attr("content");
204
205     $("<input>")
206       .attr("name", csrf_param)
207       .attr("value", csrf_token)
208       .attr("type", "hidden")
209       .appendTo($form);
210
211     var args = {
212       width: "<span id=\"mapnik_image_width\"></span>",
213       height: "<span id=\"mapnik_image_height\"></span>"
214     };
215
216     $("<p>")
217       .attr("class", "text-muted")
218       .html(I18n.t("javascripts.share.image_dimensions", args))
219       .appendTo($form);
220
221     $("<input>")
222       .attr("type", "submit")
223       .attr("class", "btn btn-primary")
224       .attr("value", I18n.t("javascripts.share.download"))
225       .appendTo($form);
226
227     locationFilter
228       .on("change", update)
229       .addTo(map);
230
231     marker.on("dragend", movedMarker);
232     map.on("move", movedMap);
233     map.on("moveend layeradd layerremove", update);
234
235     $ui
236       .on("show", shown)
237       .on("hide", hidden);
238
239     function shown() {
240       $("#mapnik_scale").val(getScale());
241       update();
242     }
243
244     function hidden() {
245       map.removeLayer(marker);
246       map.options.scrollWheelZoom = map.options.doubleClickZoom = true;
247       locationFilter.disable();
248       update();
249     }
250
251     function toggleMarker() {
252       if ($(this).is(":checked")) {
253         marker.setLatLng(map.getCenter());
254         map.addLayer(marker);
255         map.options.scrollWheelZoom = map.options.doubleClickZoom = "center";
256       } else {
257         map.removeLayer(marker);
258         map.options.scrollWheelZoom = map.options.doubleClickZoom = true;
259       }
260       update();
261     }
262
263     function toggleFilter() {
264       if ($(this).is(":checked")) {
265         locationFilter.setBounds(map.getBounds().pad(-0.2));
266         locationFilter.enable();
267       } else {
268         locationFilter.disable();
269       }
270       update();
271     }
272
273     function movedMap() {
274       marker.setLatLng(map.getCenter());
275       update();
276     }
277
278     function movedMarker() {
279       if (map.hasLayer(marker)) {
280         map.off("move", movedMap);
281         map.on("moveend", updateOnce);
282         map.panTo(marker.getLatLng());
283       }
284     }
285
286     function updateOnce() {
287       map.off("moveend", updateOnce);
288       map.on("move", movedMap);
289       update();
290     }
291
292     function escapeHTML(string) {
293       var htmlEscapes = {
294         "&": "&amp;",
295         "<": "&lt;",
296         ">": "&gt;",
297         "\"": "&quot;",
298         "'": "&#x27;"
299       };
300       return string === null ? "" : String(string).replace(/[&<>"']/g, function (match) {
301         return htmlEscapes[match];
302       });
303     }
304
305     function update() {
306       var bounds = map.getBounds();
307
308       $("#link_marker")
309         .prop("checked", map.hasLayer(marker));
310
311       $("#image_filter")
312         .prop("checked", locationFilter.isEnabled());
313
314       // Link / Embed
315
316       $("#short_input").val(map.getShortUrl(marker));
317       $("#long_input").val(map.getUrl(marker));
318       $("#short_link").attr("href", map.getShortUrl(marker));
319       $("#long_link").attr("href", map.getUrl(marker));
320
321       var params = {
322         bbox: bounds.toBBoxString(),
323         layer: map.getMapBaseLayerId()
324       };
325
326       if (map.hasLayer(marker)) {
327         var latLng = marker.getLatLng().wrap();
328         params.marker = latLng.lat + "," + latLng.lng;
329       }
330
331       $("#embed_html").val(
332         "<iframe width=\"425\" height=\"350\" src=\"" +
333           escapeHTML(OSM.SERVER_PROTOCOL + "://" + OSM.SERVER_URL + "/export/embed.html?" + $.param(params)) +
334           "\" style=\"border: 1px solid black\"></iframe><br/>" +
335           "<small><a href=\"" + escapeHTML(map.getUrl(marker)) + "\">" +
336           escapeHTML(I18n.t("javascripts.share.view_larger_map")) + "</a></small>");
337
338       // Geo URI
339
340       $("#geo_uri")
341         .attr("href", map.getGeoUri(marker))
342         .html(map.getGeoUri(marker));
343
344       // Image
345
346       if (locationFilter.isEnabled()) {
347         bounds = locationFilter.getBounds();
348       }
349
350       var scale = $("#mapnik_scale").val(),
351           size = L.bounds(L.CRS.EPSG3857.project(bounds.getSouthWest()),
352                           L.CRS.EPSG3857.project(bounds.getNorthEast())).getSize(),
353           maxScale = Math.floor(Math.sqrt(size.x * size.y / 0.3136));
354
355       $("#mapnik_minlon").val(bounds.getWest());
356       $("#mapnik_minlat").val(bounds.getSouth());
357       $("#mapnik_maxlon").val(bounds.getEast());
358       $("#mapnik_maxlat").val(bounds.getNorth());
359
360       if (scale < maxScale) {
361         scale = roundScale(maxScale);
362         $("#mapnik_scale").val(scale);
363       }
364
365       $("#mapnik_image_width").text(Math.round(size.x / scale / 0.00028));
366       $("#mapnik_image_height").text(Math.round(size.y / scale / 0.00028));
367
368       if (map.getMapBaseLayerId() === "mapnik") {
369         $("#export-image").show();
370         $("#export-warning").hide();
371       } else {
372         $("#export-image").hide();
373         $("#export-warning").show();
374       }
375     }
376
377     function select() {
378       $(this).select();
379     }
380
381     function getScale() {
382       var bounds = map.getBounds(),
383           centerLat = bounds.getCenter().lat,
384           halfWorldMeters = 6378137 * Math.PI * Math.cos(centerLat * Math.PI / 180),
385           meters = halfWorldMeters * (bounds.getEast() - bounds.getWest()) / 180,
386           pixelsPerMeter = map.getSize().x / meters,
387           metersPerPixel = 1 / (92 * 39.3701);
388       return Math.round(1 / (pixelsPerMeter * metersPerPixel));
389     }
390
391     function roundScale(scale) {
392       var precision = 5 * Math.pow(10, Math.floor(Math.LOG10E * Math.log(scale)) - 2);
393       return precision * Math.ceil(scale / precision);
394     }
395   };
396
397   return control;
398 };