Skip to content
Advertisement

How to add [UP] -3 [DOWN] controls to switch between layers on a custom map?

I’ve been googling for days now, and getting kind of frustrated.. I hope anyone can help me!

What I’m trying to achieve is the controls (as shown below), which if pressing the DOWN button for example, it will show the map layer which is one “floor” below the current, and set the “0” to “-1”.

enter image description here <—

My current map looks like this, and I want to be able to go up and down on “floors”.

This is the GROUND level enter image description here

And this is -1 floor, the level beneath the above image enter image description here

I have all the images etc, I have basic understanding of Leaflet, but I can’t figure out how to add this control and make it load the desired level.

Anyone that could help me, or lead me in the right direction?

Kind Regards, Andreas.

Advertisement

Answer

I created a working controler for you (but it is not designed):

L.LayerControl = L.Control.extend({
    options: {
        position: 'topright',
        layerIdx: 0,
        //control position - allowed: 'topleft', 'topright', 'bottomleft', 'bottomright'
    },

    initialize: function(layers, options) {
        this.layers = layers;
        L.setOptions(this, options);
    },

    onAdd: function (map) {
        this.map = map;
        var container = L.DomUtil.create('div', 'leaflet-bar leaflet-control layercontrol');
        var buttonUp = L.DomUtil.create('a', '', container);
            buttonUp.innerHTML = '^';
        this.text = L.DomUtil.create('a', '', container);
        this.text.innerHTML = this.layers[this.options.layerIdx].name;
        this.text.style.fontWeight = '900';
        var buttonDown = L.DomUtil.create('a', '', container);
            buttonDown.innerHTML = 'v';
        L.DomEvent.disableClickPropagation(container);
        L.DomEvent.on(buttonUp, 'click', this._clickUp, this);
        L.DomEvent.on(buttonDown, 'click', this._clickDown, this);

        this._removeAllLayers();
        this.map.addLayer(this.layers[this.options.layerIdx].layer);

        return container;
    },
    _clickUp : function () {
        if(this.layers.length -1 > this.options.layerIdx){  
            this.map.fire('layercontrolUp', {layer: this.layers[this.options.layerIdx].layer, name: this.layers[this.options.layerIdx].name});
            this.options.layerIdx++;
            this.text.innerHTML = this.layers[this.options.layerIdx].name;
            this._removeAllLayers();
            this.map.addLayer(this.layers[this.options.layerIdx].layer);
        }
    },
    _clickDown : function () {
        if(0 < this.options.layerIdx){  
            this.map.fire('layercontrolDown', {layer: this.layers[this.options.layerIdx].layer, name: this.layers[this.options.layerIdx].name});
            this.options.layerIdx--;
            this.text.innerHTML = this.layers[this.options.layerIdx].name;
            this._removeAllLayers();
            this.map.addLayer(this.layers[this.options.layerIdx].layer);
        }
    },
    _removeAllLayers: function(){
        //removing all layers from the map where added from the control
        this.layers.forEach(function(controlLayer){
            this.map.removeLayer(controlLayer.layer);       
        });
    }
});


var fg1 = new L.FeatureGroup();
fg1.addLayer(L.marker([51.5, -0.09]).bindPopup("<b>Hello world!</b><br />I am a popup.").openPopup());


var fg2 = new L.FeatureGroup();
fg2.addLayer(L.circle([51.508, -0.11], 500, {
        color: 'red',
        fillColor: '#f03',
        fillOpacity: 0.5
    }).bindPopup("I am a circle."));


var fg3 = new L.FeatureGroup();
fg3.addLayer(L.polygon([
        [51.509, -0.08],
        [51.503, -0.06],
        [51.51, -0.047]
    ]).bindPopup("I am a polygon."));



var layerControlLayers = [
    {
        name: 'KG1',
        layer: fg1
    },
    {
        name: 'KG2',
        layer: fg2
    },
    {
        name: 'EG',
        layer: fg3
    },
]

//layerIdx: start counting with 0 = KG1
new L.LayerControl(layerControlLayers, {layerIdx: 2}).addTo(map)

map.on('layercontrolUp', function(e){
    console.log(e);
});

map.on('layercontrolDown', function(e){
    console.log(e);
});
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement