')
.text(I18n.t('javascripts.close'))
- .attr('class', 'sidebar_close')
- .attr('href', '#')
+ .attr('class', 'icon close')
.bind('click', toggle))
.append(
$('')
@@ -35,10 +34,6 @@ L.OSM.layers = function(options) {
.attr('class', 'section base-layers')
.appendTo($ui);
- $('
')
- .text(I18n.t('javascripts.map.layers.base'))
- .appendTo(baseSection);
-
list = $('
')
.appendTo(baseSection);
@@ -68,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 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);
}
});
@@ -85,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);
@@ -115,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 = $('