-//= require templates/map/layers
-
L.OSM.Layers = L.Control.extend({
onAdd: function (map) {
this._map = map;
- this._initLayout(map);
- return this._container;
+ this._initLayout();
+ return this.$container[0];
},
- _initLayout: function (map) {
- var className = 'leaflet-control-map-ui',
- container = this._container = L.DomUtil.create('div', className);
+ _initLayout: function () {
+ var map = this._map,
+ layers = this.options.layers;
- var link = this._layersLink = L.DomUtil.create('a', 'leaflet-map-ui-layers', container);
- link.href = '#';
- link.title = 'Layers';
+ this.$container = $('<div>')
+ .attr('class', 'control-layers');
- this._uiPane = this.options.uiPane;
+ var link = $('<a>')
+ .attr('class', 'control-button')
+ .attr('href', '#')
+ .attr('title', 'Layers')
+ .html('<span class="icon layers"></span>')
+ .appendTo(this.$container);
- $(link).on('click', $.proxy(this.toggleLayers, this));
- },
+ if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
+ this.$ui = $('<div>')
+ .attr('class', 'layers-ui')
+ .appendTo(this.options.uiPane);
- toggleLayers: function (e) {
- e.stopPropagation();
- e.preventDefault();
+ $('<h2>')
+ .text(I18n.t('javascripts.map.layers.header'))
+ .appendTo(this.$ui);
- var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+ var overlaySection = $('<section>')
+ .addClass('overlay-layers')
+ .appendTo(this.$ui);
- if ($(this._uiPane).is(':visible')) {
- $(this._uiPane).hide();
- controlContainer.css({paddingRight: '0'});
- } else {
- $(this._uiPane)
- .show()
- .html(JST["templates/map/layers"]());
+ $('<p>')
+ .text(I18n.t('javascripts.map.layers.overlays'))
+ .appendTo(overlaySection);
- var list = $(this._uiPane).find('.base-layers ul');
+ var list = $('<ul>')
+ .appendTo(overlaySection);
- var layers = this.options.layers;
- for (var i = 0; i < layers.length; i++) {
- var item = $('<li></li>')
+ function addOverlay(layer, name) {
+ var item = $('<li>')
.appendTo(list);
- var div = $('<div></div>')
- .appendTo(item);
+ var label = $('<label>')
+ .appendTo(item);
- var map = L.map(div[0], {attributionControl: false, zoomControl: false})
- .setView(this._map.getCenter(), Math.max(this._map.getZoom() - 2, 0))
- .addLayer(new layers[i].layer.constructor);
+ var input = $('<input>')
+ .attr('type', 'checkbox')
+ .prop('checked', map.hasLayer(layer))
+ .appendTo(label);
- map.dragging.disable();
- map.touchZoom.disable();
- map.doubleClickZoom.disable();
- map.scrollWheelZoom.disable();
+ label.append(name);
- var label = $('<label></label>')
- .text(layers[i].name)
- .appendTo(item);
+ input.on('change', function() {
+ if (input.is(':checked')) {
+ map.addLayer(layer);
+ } else {
+ map.removeLayer(layer);
+ }
+ });
+
+ map.on('layeradd layerremove', function() {
+ input.prop('checked', map.hasLayer(layer));
+ });
}
- controlContainer.css({paddingRight: '200px'});
+ addOverlay(map.noteLayer, I18n.t('javascripts.map.layers.notes'));
+ addOverlay(map.dataLayer, I18n.t('javascripts.map.layers.data'));
}
+
+ var baseSection = $('<section>')
+ .addClass('base-layers')
+ .appendTo(this.$ui);
+
+ $('<p>')
+ .text(I18n.t('javascripts.map.layers.base'))
+ .appendTo(baseSection);
+
+ list = $('<ul>')
+ .appendTo(baseSection);
+
+ layers.forEach(function(layer) {
+ var item = $('<li>')
+ .appendTo(list);
+
+ if (map.hasLayer(layer)) {
+ item.addClass('active');
+ }
+
+ var div = $('<div>')
+ .appendTo(item);
+
+ map.whenReady(function() {
+ var miniMap = L.map(div[0], {attributionControl: false, zoomControl: false})
+ .setView(map.getCenter(), Math.max(map.getZoom() - 2, 0))
+ .addLayer(new layer.constructor);
+
+ miniMap.dragging.disable();
+ miniMap.touchZoom.disable();
+ miniMap.doubleClickZoom.disable();
+ miniMap.scrollWheelZoom.disable();
+
+ map.on('moveend', function() {
+ miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0));
+ });
+
+ div.data('map', miniMap);
+ });
+
+ var label = $('<label>')
+ .text(layer.options.name)
+ .appendTo(item);
+
+ item.on('click', function() {
+ layers.forEach(function(other) {
+ if (other === layer) {
+ map.addLayer(other);
+ } else {
+ map.removeLayer(other);
+ }
+ });
+ });
+
+ map.on('layeradd layerremove', function() {
+ item.toggleClass('active', map.hasLayer(layer));
+ });
+ });
+
+ $(link).on('click', $.proxy(this.toggleLayers, this));
+ },
+
+ toggleLayers: function (e) {
+ e.stopPropagation();
+ e.preventDefault();
+
+ var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right');
+
+ if (this.$ui.is(':visible')) {
+ $(this.options.uiPane).hide();
+ controlContainer.css({paddingRight: '0'});
+ } else {
+ $(this.options.uiPane).show();
+ controlContainer.css({paddingRight: '230px'});
+ }
+
+ this.$ui.find('.base-layers .leaflet-container').each(function() {
+ $(this).data('map').invalidateSize();
+ });
}
});