X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ad10390663f5c27d4ac9eea1ff35a5a6e2ae4622..f17304e8ed8490f8c80bd86ea0d78538ca46f589:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 8653a0921..edcbfbd4d 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -18,26 +18,23 @@ 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', 'sidebar_close') + .attr('href', '#') + .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 +64,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 moved() { + setView(); } - function setView() { - miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0)); + function setView(options) { + miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0), options); } }); var label = $('