X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dc8751cf7af7ce0e0033c078dac064d62ab819e6..176b853174e763f6c25a954e566cedcda8ef6300:/app/assets/javascripts/leaflet.share.js diff --git a/app/assets/javascripts/leaflet.share.js b/app/assets/javascripts/leaflet.share.js index e34d5ffdb..69100e420 100644 --- a/app/assets/javascripts/leaflet.share.js +++ b/app/assets/javascripts/leaflet.share.js @@ -1,89 +1,414 @@ L.OSM.share = function (options) { - var control = L.control(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'); - - $('') - .attr('class', 'control-button') - .attr('href', '#') - .attr('title', 'Share') - .html('') - .on('click', toggle) + 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'); + var $ui = $("
") + .attr("class", "share-ui"); - $('
') - .attr('class', 'sidebar_heading') + $("
") + .attr("class", "sidebar_heading") .appendTo($ui) .append( - $('') - .text(I18n.t('javascripts.close')) - .attr('class', 'sidebar_close') - .attr('href', '#') - .bind('click', toggle)) + $("") + .text(I18n.t("javascripts.close")) + .attr("class", "icon close") + .bind("click", toggle)) .append( - $('

') - .text(I18n.t('javascripts.share.title'))); + $("

") + .text(I18n.t("javascripts.share.title"))); + + // Link / Embed - var $share_link = $('
') + var $linkSection = $("
") + .attr("class", "section share-link") .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 = $('