X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1debc147b8c4d9c917d54a279dcf0e2718e0665e..d1bebd08035434880a5edb92fdae8c9b24d825f9:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 242f76285..443e47e76 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -7,10 +7,10 @@ L.OSM.layers = function(options) { var $container = $('
') .attr('class', 'control-layers'); - var link = $('') + var button = $('') .attr('class', 'control-button') .attr('href', '#') - .attr('title', 'Layers') + .attr('title', I18n.t('javascripts.map.layers.title')) .html('') .on('click', toggle) .appendTo($container); @@ -18,26 +18,22 @@ L.OSM.layers = function(options) { var $ui = $('
') .attr('class', 'layers-ui'); - $('
') - .appendTo($ui) - .append( - $('') - .html('»') - .attr('class', 'close-button') - .attr('href', '#') - .bind('click', toggle)) - .append( - $('

') + $('
') + .attr('class', 'sidebar_heading') + .appendTo($ui) + .append( + $('') + .text(I18n.t('javascripts.close')) + .attr('class', 'icon close') + .bind('click', toggle)) + .append( + $('

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

') - .text(I18n.t('javascripts.map.layers.base')) - .appendTo(baseSection); - list = $('

    ') .appendTo(baseSection); @@ -67,23 +63,33 @@ L.OSM.layers = function(options) { 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 = $('