Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

264
Views
How to add an empty layer to my layerSwitcher in Openlayers

i am trying to add a couple of layers to my map, but these layers must be empty. I mean when i activate this layer it must return an alert or something similar saying "Coming soon".

    map = new ol.Map({
        layers: [
            new ol.layer.Group({
                'title': 'Mapas de base',
                layers: [grisOSM, mapaOSM]
            }),
            /* new ol.layer.Group({
                title: 'Capas de información',
                layers: [ ]
            }) */

        ],
        target: 'map',
        controls: ol.control.defaults({
            zoom: true,
            attributionOptions: /** @type {olx.control.AttributionOptions} */ ({
                collapsible: false
            })
        }).extend([
            scaleLineControl
        ]),
        view: vista,
        interactions: new ol.interaction.defaults({
            altShiftDragRotate: false
        }),

    });

    const layerSwitcher = new ol.control.LayerSwitcher({
        tipLabel: 'Leyenda'
    });
    map.addControl(layerSwitcher);

This is my layerSwitcher where i want to add these layers:

preview

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

An empty vector layer will show in a layer switcher and can also be used display attributions

new ol.layer.Vector({
  title: 'Empty layer',
  source: new ol.source.Vector({
    attributions: '© No data'
  })
})
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!