X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5e9ab5bc5edb63b7ab7719fa989a18f52e3637a2..1f4e41f6725ea373aa13bbb067595e2c4fc326d8:/app/assets/javascripts/leaflet.layers.js?ds=sidebyside diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 09cf1cf60..bbc84701c 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -1,15 +1,10 @@ -L.OSM.Layers = L.Control.extend({ - onAdd: function (map) { - this._map = map; - this._initLayout(); - return this.$container[0]; - }, - - _initLayout: function () { - var map = this._map, - layers = this.options.layers; - - 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 link = $('') @@ -17,20 +12,21 @@ L.OSM.Layers = L.Control.extend({ .attr('href', '#') .attr('title', 'Layers') .html('') - .appendTo(this.$container); + .on('click', toggle) + .appendTo($container); - if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') { - this.$ui = $('
') - .attr('class', 'layers-ui') - .appendTo(this.options.uiPane); + var $ui = $('
') + .attr('class', 'layers-ui') + .appendTo(options.uiPane); - $('

') - .text(I18n.t('javascripts.map.layers.header')) - .appendTo(this.$ui); + $('

') + .text(I18n.t('javascripts.map.layers.header')) + .appendTo($ui); + if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') { var overlaySection = $('
') .addClass('overlay-layers') - .appendTo(this.$ui); + .appendTo($ui); $('

') .text(I18n.t('javascripts.map.layers.overlays')) @@ -72,7 +68,7 @@ L.OSM.Layers = L.Control.extend({ var baseSection = $('

') .addClass('base-layers') - .appendTo(this.$ui); + .appendTo($ui); $('

') .text(I18n.t('javascripts.map.layers.base')) @@ -128,29 +124,27 @@ L.OSM.Layers = L.Control.extend({ }); }); - $(link).on('click', $.proxy(this.toggleLayers, this)); - }, + function toggle(e) { + e.stopPropagation(); + e.preventDefault(); - toggleLayers: function (e) { - e.stopPropagation(); - e.preventDefault(); + var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right'); - var controlContainer = $('.leaflet-control-container .leaflet-top.leaflet-right'); + if ($ui.is(':visible')) { + $(control.options.uiPane).hide(); + controlContainer.css({paddingRight: '0'}); + } else { + $(control.options.uiPane).show(); + controlContainer.css({paddingRight: '230px'}); + } - if (this.$ui.is(':visible')) { - $(this.options.uiPane).hide(); - controlContainer.css({paddingRight: '0'}); - } else { - $(this.options.uiPane).show(); - controlContainer.css({paddingRight: '230px'}); + $ui.find('.base-layers .leaflet-container').each(function() { + $(this).data('map').invalidateSize(); + }); } - this.$ui.find('.base-layers .leaflet-container').each(function() { - $(this).data('map').invalidateSize(); - }); - } -}); + return $container[0]; + }; -L.OSM.layers = function(options) { - return new L.OSM.Layers(options); + return control; };