X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dc8751cf7af7ce0e0033c078dac064d62ab819e6..ab4de87d1eef4546a96738154cf81b7d7f72d988:/app/assets/javascripts/leaflet.share.js?ds=inline diff --git a/app/assets/javascripts/leaflet.share.js b/app/assets/javascripts/leaflet.share.js index e34d5ffdb..b9c48f15a 100644 --- a/app/assets/javascripts/leaflet.share.js +++ b/app/assets/javascripts/leaflet.share.js @@ -1,90 +1,383 @@ L.OSM.share = function (options) { - var control = L.control(options); - - control.onAdd = function (map) { - var $container = $('
") + .attr("class", "text-muted") + .text(I18n.t("javascripts.share.paste_html"))); - var $share_link = $('') + // Geo URI + + var $geoUriSection = $("") + .attr("class", "section share-geo-uri") .appendTo($ui); - var $title = $('') - .text(I18n.t('javascripts.share.link')) - .appendTo($share_link); - - var $input = $('') - .attr('type', 'text') - .on('click', select) - .appendTo($share_link); - - var $list = $('') - .appendTo($share_link); - - var $short_option = $('') - .appendTo($list); - - var $short_url_label = $('') - .attr('for', 'short_url') - .appendTo($short_option); - - var $short_url_input = $('') - .attr('id', 'short_url') - .attr('type', 'checkbox') - .prop('checked', 'checked') - .appendTo($short_url_label) - .bind('change', function() { - options.short = $(this).prop('checked'); - update(); - }); + $("") + .text(I18n.t("javascripts.share.geo_uri")) + .appendTo($geoUriSection); + + $("") + .appendTo($geoUriSection) + .append($("") + .attr("id", "geo_uri")); + + // Image + + var $imageSection = $("") + .attr("class", "section share-image") + .appendTo($ui); + + $("") + .text(I18n.t("javascripts.share.image")) + .appendTo($imageSection); + + $("") + .attr("id", "export-warning") + .attr("class", "text-muted") + .text(I18n.t("javascripts.share.only_standard_layer")) + .appendTo($imageSection); + + $form = $("") + .attr("id", "export-image") + .attr("action", "/export/finish") + .attr("method", "post") + .appendTo($imageSection); + + $("") + .attr("class", "mb-3 form-check") + .appendTo($form) + .append( + $("") + .attr("for", "image_filter") + .attr("class", "form-check-label") + .append( + $("") + .attr("id", "image_filter") + .attr("type", "checkbox") + .attr("class", "form-check-input") + .bind("change", toggleFilter)) + .append(I18n.t("javascripts.share.custom_dimensions"))); + + $("") + .appendTo($form) + .append( + $("") + .attr("for", "mapnik_format") + .text(I18n.t("javascripts.share.format"))) + .append($("") + .attr("name", "mapnik_format") + .attr("id", "mapnik_format") + .append($("").val("png").text("PNG").prop("selected", true)) + .append($("").val("jpeg").text("JPEG")) + .append($("").val("svg").text("SVG")) + .append($("").val("pdf").text("PDF"))); + + $("") + .appendTo($form) + .append($("") + .attr("for", "mapnik_scale") + .text(I18n.t("javascripts.share.scale"))) + .append("1 : ") + .append($("") + .attr("name", "mapnik_scale") + .attr("id", "mapnik_scale") + .attr("type", "text") + .on("change", update)); + + ["minlon", "minlat", "maxlon", "maxlat"].forEach(function (name) { + $("") + .attr("id", "mapnik_" + name) + .attr("name", name) + .attr("type", "hidden") + .appendTo($form); + }); + + $("") + .attr("name", "format") + .attr("value", "mapnik") + .attr("type", "hidden") + .appendTo($form); + + var csrf_param = $("meta[name=csrf-param]").attr("content"), + csrf_token = $("meta[name=csrf-token]").attr("content"); + + $("") + .attr("name", csrf_param) + .attr("value", csrf_token) + .attr("type", "hidden") + .appendTo($form); + + var args = { + width: "", + height: "" + }; + + $("") + .attr("class", "text-muted") + .html(I18n.t("javascripts.share.image_dimensions", args)) + .appendTo($form); + + $("") + .attr("type", "submit") + .attr("class", "btn btn-primary") + .attr("value", I18n.t("javascripts.share.download")) + .appendTo($form); - $short_url_label.append(I18n.t('javascripts.share.short_url')); + locationFilter + .on("change", update) + .addTo(map); - map.on('moveend layeradd layerremove', update); + marker.on("dragend", movedMarker); + map.on("move", movedMap); + map.on("moveend layeradd layerremove", update); - options.sidebar.addPane($ui); + $ui + .on("show", shown) + .on("hide", hidden); - function toggle(e) { - e.stopPropagation(); - e.preventDefault(); - options.sidebar.togglePane($ui); - $input.select(); + function shown() { + $("#mapnik_scale").val(getScale()); + update(); + } + + function hidden() { + map.removeLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = true; + locationFilter.disable(); + update(); + } + + function toggleMarker() { + if ($(this).is(":checked")) { + marker.setLatLng(map.getCenter()); + map.addLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = "center"; + } else { + map.removeLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = true; + } + update(); + } + + function toggleFilter() { + if ($(this).is(":checked")) { + locationFilter.setBounds(map.getBounds().pad(-0.2)); + locationFilter.enable(); + } else { + locationFilter.disable(); + } + update(); + } + + function movedMap() { + marker.setLatLng(map.getCenter()); + update(); + } + + function movedMarker() { + if (map.hasLayer(marker)) { + map.off("move", movedMap); + map.on("moveend", updateOnce); + map.panTo(marker.getLatLng()); + } + } + + function updateOnce() { + map.off("moveend", updateOnce); + map.on("move", movedMap); + update(); + } + + function escapeHTML(string) { + var htmlEscapes = { + "&": "&", + "<": "<", + ">": ">", + "\"": """, + "'": "'" + }; + return string === null ? "" : String(string).replace(/[&<>"']/g, function (match) { + return htmlEscapes[match]; + }); } function update() { - $input.val( - options.short ? options.getShortUrl(map) : options.getUrl(map) - ); + var bounds = map.getBounds(); + + $("#link_marker") + .prop("checked", map.hasLayer(marker)); + + $("#image_filter") + .prop("checked", locationFilter.isEnabled()); + + // Link / Embed + + $("#short_input").val(map.getShortUrl(marker)); + $("#long_input").val(map.getUrl(marker)); + $("#short_link").attr("href", map.getShortUrl(marker)); + $("#long_link").attr("href", map.getUrl(marker)); + + var params = { + bbox: bounds.toBBoxString(), + layer: map.getMapBaseLayerId() + }; + + if (map.hasLayer(marker)) { + var latLng = marker.getLatLng().wrap(); + params.marker = latLng.lat + "," + latLng.lng; + } + + $("#embed_html").val( + "" + + "" + + escapeHTML(I18n.t("javascripts.share.view_larger_map")) + ""); + + // Geo URI + + $("#geo_uri") + .attr("href", map.getGeoUri(marker)) + .html(map.getGeoUri(marker)); + + // Image + + if (locationFilter.isEnabled()) { + bounds = locationFilter.getBounds(); + } + + var scale = $("#mapnik_scale").val(), + size = L.bounds(L.CRS.EPSG3857.project(bounds.getSouthWest()), + L.CRS.EPSG3857.project(bounds.getNorthEast())).getSize(), + maxScale = Math.floor(Math.sqrt(size.x * size.y / 0.3136)); + + $("#mapnik_minlon").val(bounds.getWest()); + $("#mapnik_minlat").val(bounds.getSouth()); + $("#mapnik_maxlon").val(bounds.getEast()); + $("#mapnik_maxlat").val(bounds.getNorth()); + + if (scale < maxScale) { + scale = roundScale(maxScale); + $("#mapnik_scale").val(scale); + } + + $("#mapnik_image_width").text(Math.round(size.x / scale / 0.00028)); + $("#mapnik_image_height").text(Math.round(size.y / scale / 0.00028)); + + if (map.getMapBaseLayerId() === "mapnik") { + $("#export-image").show(); + $("#export-warning").hide(); + } else { + $("#export-image").hide(); + $("#export-warning").show(); + } } function select() { $(this).select(); } - return $container[0]; + function getScale() { + var bounds = map.getBounds(), + centerLat = bounds.getCenter().lat, + halfWorldMeters = 6378137 * Math.PI * Math.cos(centerLat * Math.PI / 180), + meters = halfWorldMeters * (bounds.getEast() - bounds.getWest()) / 180, + pixelsPerMeter = map.getSize().x / meters, + metersPerPixel = 1 / (92 * 39.3701); + return Math.round(1 / (pixelsPerMeter * metersPerPixel)); + } + + function roundScale(scale) { + var precision = 5 * Math.pow(10, Math.floor(Math.LOG10E * Math.log(scale)) - 2); + return precision * Math.ceil(scale / precision); + } }; return control;
") + .attr("class", "text-muted") + .html(I18n.t("javascripts.share.image_dimensions", args)) + .appendTo($form); + + $("") + .attr("type", "submit") + .attr("class", "btn btn-primary") + .attr("value", I18n.t("javascripts.share.download")) + .appendTo($form); - $short_url_label.append(I18n.t('javascripts.share.short_url')); + locationFilter + .on("change", update) + .addTo(map); - map.on('moveend layeradd layerremove', update); + marker.on("dragend", movedMarker); + map.on("move", movedMap); + map.on("moveend layeradd layerremove", update); - options.sidebar.addPane($ui); + $ui + .on("show", shown) + .on("hide", hidden); - function toggle(e) { - e.stopPropagation(); - e.preventDefault(); - options.sidebar.togglePane($ui); - $input.select(); + function shown() { + $("#mapnik_scale").val(getScale()); + update(); + } + + function hidden() { + map.removeLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = true; + locationFilter.disable(); + update(); + } + + function toggleMarker() { + if ($(this).is(":checked")) { + marker.setLatLng(map.getCenter()); + map.addLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = "center"; + } else { + map.removeLayer(marker); + map.options.scrollWheelZoom = map.options.doubleClickZoom = true; + } + update(); + } + + function toggleFilter() { + if ($(this).is(":checked")) { + locationFilter.setBounds(map.getBounds().pad(-0.2)); + locationFilter.enable(); + } else { + locationFilter.disable(); + } + update(); + } + + function movedMap() { + marker.setLatLng(map.getCenter()); + update(); + } + + function movedMarker() { + if (map.hasLayer(marker)) { + map.off("move", movedMap); + map.on("moveend", updateOnce); + map.panTo(marker.getLatLng()); + } + } + + function updateOnce() { + map.off("moveend", updateOnce); + map.on("move", movedMap); + update(); + } + + function escapeHTML(string) { + var htmlEscapes = { + "&": "&", + "<": "<", + ">": ">", + "\"": """, + "'": "'" + }; + return string === null ? "" : String(string).replace(/[&<>"']/g, function (match) { + return htmlEscapes[match]; + }); } function update() { - $input.val( - options.short ? options.getShortUrl(map) : options.getUrl(map) - ); + var bounds = map.getBounds(); + + $("#link_marker") + .prop("checked", map.hasLayer(marker)); + + $("#image_filter") + .prop("checked", locationFilter.isEnabled()); + + // Link / Embed + + $("#short_input").val(map.getShortUrl(marker)); + $("#long_input").val(map.getUrl(marker)); + $("#short_link").attr("href", map.getShortUrl(marker)); + $("#long_link").attr("href", map.getUrl(marker)); + + var params = { + bbox: bounds.toBBoxString(), + layer: map.getMapBaseLayerId() + }; + + if (map.hasLayer(marker)) { + var latLng = marker.getLatLng().wrap(); + params.marker = latLng.lat + "," + latLng.lng; + } + + $("#embed_html").val( + "" + + "" + + escapeHTML(I18n.t("javascripts.share.view_larger_map")) + ""); + + // Geo URI + + $("#geo_uri") + .attr("href", map.getGeoUri(marker)) + .html(map.getGeoUri(marker)); + + // Image + + if (locationFilter.isEnabled()) { + bounds = locationFilter.getBounds(); + } + + var scale = $("#mapnik_scale").val(), + size = L.bounds(L.CRS.EPSG3857.project(bounds.getSouthWest()), + L.CRS.EPSG3857.project(bounds.getNorthEast())).getSize(), + maxScale = Math.floor(Math.sqrt(size.x * size.y / 0.3136)); + + $("#mapnik_minlon").val(bounds.getWest()); + $("#mapnik_minlat").val(bounds.getSouth()); + $("#mapnik_maxlon").val(bounds.getEast()); + $("#mapnik_maxlat").val(bounds.getNorth()); + + if (scale < maxScale) { + scale = roundScale(maxScale); + $("#mapnik_scale").val(scale); + } + + $("#mapnik_image_width").text(Math.round(size.x / scale / 0.00028)); + $("#mapnik_image_height").text(Math.round(size.y / scale / 0.00028)); + + if (map.getMapBaseLayerId() === "mapnik") { + $("#export-image").show(); + $("#export-warning").hide(); + } else { + $("#export-image").hide(); + $("#export-warning").show(); + } } function select() { $(this).select(); } - return $container[0]; + function getScale() { + var bounds = map.getBounds(), + centerLat = bounds.getCenter().lat, + halfWorldMeters = 6378137 * Math.PI * Math.cos(centerLat * Math.PI / 180), + meters = halfWorldMeters * (bounds.getEast() - bounds.getWest()) / 180, + pixelsPerMeter = map.getSize().x / meters, + metersPerPixel = 1 / (92 * 39.3701); + return Math.round(1 / (pixelsPerMeter * metersPerPixel)); + } + + function roundScale(scale) { + var precision = 5 * Math.pow(10, Math.floor(Math.LOG10E * Math.log(scale)) - 2); + return precision * Math.ceil(scale / precision); + } }; return control;