X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f5f4bfd72502e4edf9b6e4d76fd012a67f6fa693..c4c0e8105a8edc35205add749f461ec7be689aef:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index e5fbdf7c8..241880a20 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -1,61 +1,56 @@ -L.OSM.layers = function(options) { +L.OSM.layers = function (options) { var control = L.control(options); control.onAdd = function (map) { var layers = options.layers; - var $container = $('
') - .attr('class', 'control-layers'); + var $container = $("
") + .attr("class", "control-layers"); - var link = $('') - .attr('class', 'control-button') - .attr('href', '#') - .attr('title', 'Layers') - .html('') - .on('click', toggle) + var button = $("") + .attr("class", "control-button") + .attr("href", "#") + .attr("title", I18n.t("javascripts.map.layers.title")) + .html("") + .on("click", toggle) .appendTo($container); - var $ui = $('
') - .attr('class', 'layers-ui'); + var $ui = $("
") + .attr("class", "layers-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.map.layers.header'))); + $("

") + .text(I18n.t("javascripts.map.layers.header"))); - var baseSection = $('
') - .attr('class', 'section base-layers') + var baseSection = $("
") + .attr("class", "section base-layers") .appendTo($ui); - $('

') - .text(I18n.t('javascripts.map.layers.base')) + var baseLayers = $("

    ") .appendTo(baseSection); - list = $('
      ') - .appendTo(baseSection); - - layers.forEach(function(layer) { - var item = $('
    • ') - .appendTo(list); + layers.forEach(function (layer) { + var item = $("
    • ") + .appendTo(baseLayers); if (map.hasLayer(layer)) { - item.addClass('active'); + item.addClass("active"); } - var div = $('
      ') + var div = $("
      ") .appendTo(item); - map.whenReady(function() { - var miniMap = L.map(div[0], {attributionControl: false, zoomControl: false}) - .addLayer(new layer.constructor()); + map.whenReady(function () { + var miniMap = L.map(div[0], { attributionControl: false, zoomControl: false, keyboard: false }) + .addLayer(new layer.constructor({ apikey: layer.options.apikey })); miniMap.dragging.disable(); miniMap.touchZoom.disable(); @@ -63,92 +58,125 @@ L.OSM.layers = function(options) { miniMap.scrollWheelZoom.disable(); $ui - .on('show', shown) - .on('hide', hide); + .on("show", shown) + .on("hide", hide); function shown() { miniMap.invalidateSize(); - setView(); - map.on('moveend', setView); + setView({ animate: false }); + map.on("moveend", moved); } function hide() { - map.off('moveend', setView); + map.off("moveend", moved); } - function setView() { - miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0)); + function moved() { + setView(); + } + + function setView(options) { + miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0), options); } }); - var label = $('