')
+ .attr('class', 'section base-layers')
.appendTo($ui);
- $('
')
- .text(I18n.t('javascripts.map.layers.base'))
- .appendTo(baseSection);
-
list = $('
')
.appendTo(baseSection);
@@ -67,16 +64,20 @@ 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);
}
});
@@ -108,8 +109,8 @@ L.OSM.layers = function(options) {
});
if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
- var overlaySection = $('')
- .addClass('overlay-layers')
+ var overlaySection = $('')
+ .attr('class', 'section overlay-layers')
.appendTo($ui);
$('
')