var $container = $('<div>')
.attr('class', 'control-layers');
- var link = $('<a>')
- .attr('class', 'control-button')
+ var button = $('<a>')
+ .attr('class', 'control-button mobile-hide')
.attr('href', '#')
- .attr('title', 'Layers')
+ .attr('title', I18n.t('javascripts.map.layers.title'))
.html('<span class="icon layers"></span>')
.on('click', toggle)
.appendTo($container);
.attr('class', 'sidebar_heading')
.appendTo($ui)
.append(
- $('<a>')
+ $('<span>')
.text(I18n.t('javascripts.close'))
- .attr('class', 'sidebar_close')
- .attr('href', '#')
+ .attr('class', 'icon close')
.bind('click', toggle))
.append(
$('<h4>')
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);
}
});
.appendTo(item);
var input = $('<input>')
- .attr('type', 'radio')
- .prop('checked', map.hasLayer(layer))
- .appendTo(label);
+ .attr('type', 'radio')
+ .prop('checked', map.hasLayer(layer))
+ .appendTo(label);
label.append(layer.options.name);
$('<p>')
.text(I18n.t('javascripts.map.layers.overlays'))
+ .attr("class", "deemphasize")
.appendTo(overlaySection);
var list = $('<ul>')
function toggle(e) {
e.stopPropagation();
e.preventDefault();
- options.sidebar.togglePane($ui);
+ options.sidebar.togglePane($ui, button);
}
return $container[0];