X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/36fac06bd5ae1b9c26e44945c41053e0ce6829f1..c162c065c6f6db5dc584599f5639b296b627a165:/app/assets/javascripts/leaflet.share.js diff --git a/app/assets/javascripts/leaflet.share.js b/app/assets/javascripts/leaflet.share.js index 9c3d94218..eedfe3ab3 100644 --- a/app/assets/javascripts/leaflet.share.js +++ b/app/assets/javascripts/leaflet.share.js @@ -1,51 +1,416 @@ -//= require templates/map/share - -L.Control.Share = L.Control.extend({ - options: { - position: 'topright', - title: 'Share' - }, - - onAdd: function (map) { - var className = 'leaflet-control-locate', - classNames = className + ' leaflet-control-zoom leaflet-bar leaflet-control', - container = L.DomUtil.create('div', classNames); - - var self = this; - this._layer = new L.LayerGroup(); - this._layer.addTo(map); - this._event = undefined; - - var link = L.DomUtil.create('a', 'leaflet-bar-part leaflet-bar-part-single', container); - link.href = '#'; - link.title = this.options.title; - - this._uiPane = L.DomUtil.create('div', 'leaflet-map-ui', map._container); - - L.DomEvent - .on(link, 'click', L.DomEvent.stopPropagation) - .on(link, 'click', L.DomEvent.preventDefault) - .on(link, 'click', this.toggle, this) - .on(link, 'dblclick', L.DomEvent.stopPropagation); - - return container; - }, - - toggle: function() { - var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right'); - - if ($(this._uiPane).is(':visible')) { - $(this._uiPane).hide(); - controlContainer.css({paddingRight: '0'}); - } else { - $(this._uiPane) - .show() - .html(JST["templates/map/share"]()); - controlContainer.css({paddingRight: '200px'}); - } - } -}); - -L.control.share = function(options) { - return new L.Control.Share(options); +L.OSM.share = function (options) { + var control = L.control(options), + marker = L.marker([0, 0], { draggable: true }), + locationFilter = new L.LocationFilter({ + enableButton: false, + adjustButton: false + }); + + control.onAdd = function (map) { + var $container = $("
") + .attr("class", "control-share"); + + var button = $("") + .attr("class", "control-button") + .attr("href", "#") + .attr("title", I18n.t("javascripts.share.title")) + .html("") + .on("click", toggle) + .appendTo($container); + + var $ui = $("
") + .attr("class", "share-ui"); + + $("
") + .attr("class", "sidebar_heading") + .appendTo($ui) + .append( + $("") + .text(I18n.t("javascripts.close")) + .attr("class", "icon close") + .bind("click", toggle)) + .append( + $("

") + .text(I18n.t("javascripts.share.title"))); + + // Link / Embed + + var $linkSection = $("
") + .attr("class", "section share-link") + .appendTo($ui); + + $("

") + .text(I18n.t("javascripts.share.link")) + .appendTo($linkSection); + + var $form = $("
") + .attr("class", "standard-form") + .appendTo($linkSection); + + $("
") + .attr("class", "form-row") + .appendTo($form) + .append( + $("
") + .attr("class", "share-tabs") + .appendTo($form) + .append($("") + .attr("class", "active") + .attr("for", "long_input") + .attr("id", "long_link") + .text(I18n.t("javascripts.share.long_link"))) + .append($("") + .attr("for", "short_input") + .attr("id", "short_link") + .text(I18n.t("javascripts.share.short_link"))) + .append($("") + .attr("for", "embed_html") + .attr("href", "#") + .text(I18n.t("javascripts.share.embed"))) + .on("click", "a", function (e) { + e.preventDefault(); + var id = "#" + $(this).attr("for"); + $linkSection.find(".share-tabs a") + .removeClass("active"); + $(this).addClass("active"); + $linkSection.find(".share-tab") + .hide(); + $linkSection.find(".share-tab:has(" + id + ")") + .show() + .find("input, textarea") + .select(); + }); + + $("
") + .attr("class", "form-row share-tab") + .css("display", "block") + .appendTo($form) + .append($("") + .attr("id", "long_input") + .attr("type", "text") + .on("click", select)); + + $("
") + .attr("class", "form-row share-tab") + .appendTo($form) + .append($("") + .attr("id", "short_input") + .attr("type", "text") + .on("click", select)); + + $("
") + .attr("class", "form-row share-tab") + .appendTo($form) + .append( + $("