X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ef73cc1f574124b10cda75188aa542d9f4d802bb..d1bebd08035434880a5edb92fdae8c9b24d825f9:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 15f114a5c..443e47e76 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -1,92 +1,192 @@ -//= require templates/map/layers - -L.OSM.Layers = L.Control.extend({ - onAdd: function (map) { - this._map = map; - this._initLayout(map); - return this._container; - }, +L.OSM.layers = function(options) { + var control = L.control(options); + + control.onAdd = function (map) { + var layers = options.layers; + + var $container = $('
') + .attr('class', 'control-layers'); + + var button = $('') + .attr('class', 'control-button') + .attr('href', '#') + .attr('title', I18n.t('javascripts.map.layers.title')) + .html('') + .on('click', toggle) + .appendTo($container); + + var $ui = $('
') + .attr('class', 'layers-ui'); + + $('
') + .attr('class', 'sidebar_heading') + .appendTo($ui) + .append( + $('') + .text(I18n.t('javascripts.close')) + .attr('class', 'icon close') + .bind('click', toggle)) + .append( + $('

') + .text(I18n.t('javascripts.map.layers.header'))); + + var baseSection = $('
') + .attr('class', 'section base-layers') + .appendTo($ui); + + list = $('
    ') + .appendTo(baseSection); + + layers.forEach(function(layer) { + var item = $('
  • ') + .appendTo(list); - _initLayout: function () { - var className = 'leaflet-control-map-ui', - container = this._container = L.DomUtil.create('div', className); + if (map.hasLayer(layer)) { + item.addClass('active'); + } - var link = L.DomUtil.create('a', 'control-button', container); - link.innerHTML = ""; - link.href = '#'; - link.title = 'Layers'; + var div = $('
    ') + .appendTo(item); - this._ui = $(L.DomUtil.create('div', 'layers-ui', this.options.uiPane)) - .html(JST["templates/map/layers"]()); + map.whenReady(function() { + var miniMap = L.map(div[0], {attributionControl: false, zoomControl: false}) + .addLayer(new layer.constructor()); - var list = this._ui.find('.base-layers ul'); + miniMap.dragging.disable(); + miniMap.touchZoom.disable(); + miniMap.doubleClickZoom.disable(); + miniMap.scrollWheelZoom.disable(); - this.options.layers.forEach(function(layer) { - var item = $('
  • ') - .appendTo(list); + $ui + .on('show', shown) + .on('hide', hide); - if (this._map.hasLayer(layer)) { - item.addClass('active'); - } + function shown() { + miniMap.invalidateSize(); + setView({animate: false}); + map.on('moveend', moved); + } - var div = $('
    ') - .appendTo(item); + function hide() { + map.off('moveend', moved); + } - this._map.whenReady(function() { - var map = L.map(div[0], {attributionControl: false, zoomControl: false}) - .setView(this._map.getCenter(), Math.max(this._map.getZoom() - 2, 0)) - .addLayer(new layer.constructor); + function moved() { + setView(); + } - map.dragging.disable(); - map.touchZoom.disable(); - map.doubleClickZoom.disable(); - map.scrollWheelZoom.disable(); - }, this); + function setView(options) { + miniMap.setView(map.getCenter(), Math.max(map.getZoom() - 2, 0), options); + } + }); - var label = $('') - .text(layer.options.name) + var label = $('