')
.text(I18n.t('javascripts.close'))
- .attr('class', 'sidebar_close')
- .attr('href', '#')
+ .attr('class', 'icon close')
.bind('click', toggle))
.append(
$('')
@@ -64,16 +63,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 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);
}
});
@@ -81,9 +84,9 @@ L.OSM.layers = function(options) {
.appendTo(item);
var 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);
@@ -111,40 +114,66 @@ L.OSM.layers = function(options) {
$('
')
.text(I18n.t('javascripts.map.layers.overlays'))
+ .attr("class", "deemphasize")
.appendTo(overlaySection);
var list = $('
')
.appendTo(overlaySection);
- function addOverlay(layer, name) {
+ function addOverlay(layer, name, maxArea) {
var item = $('- ')
+ .tooltip({
+ placement: 'top'
+ })
.appendTo(list);
var label = $('