ol-layerswitcher/examples/select-groups.js
Matt Walker 5480f926f8 Update examples to use current data and updated ol-sidebar
The OSN boundary data appears to no longer be available so it's been
replaced with some USA sample data thanks to ESRI.

The sidebar component (https://github.com/Turbo87/sidebar-v2) isn't
currently compatible with OpenLayers 7 due to the JS being an ES5
prototype based class, an updated ES6 class version is now bundled
included in the examples directory.
2023-03-08 11:02:16 +00:00

167 lines
5.5 KiB
JavaScript

(function () {
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Group({
// A layer must have a title to appear in the layerswitcher
title: 'Base maps',
layers: [
new ol.layer.Group({
// A layer must have a title to appear in the layerswitcher
title: 'Water color with labels',
// Setting the layers type to 'base' results
// in it having a radio button and only one
// base layer being visibile at a time
type: 'base',
// Setting combine to true causes sub-layers to be hidden
// in the layerswitcher, only the parent is shown
combine: true,
visible: false,
layers: [
new ol.layer.Tile({
source: new ol.source.Stamen({
layer: 'watercolor'
})
}),
new ol.layer.Tile({
source: new ol.source.Stamen({
layer: 'terrain-labels'
})
})
]
}),
new ol.layer.Tile({
// A layer must have a title to appear in the layerswitcher
title: 'Water color',
// Again set this layer as a base layer
type: 'base',
visible: false,
source: new ol.source.Stamen({
layer: 'watercolor'
})
}),
new ol.layer.Tile({
// A layer must have a title to appear in the layerswitcher
title: 'OSM',
// Again set this layer as a base layer
type: 'base',
visible: true,
source: new ol.source.OSM()
})
]
}),
new ol.layer.Group({
// A layer must have a title to appear in the layerswitcher
title: 'Overlays',
// Adding a 'fold' property set to either 'open' or 'close' makes the group layer
// collapsible
fold: 'open',
layers: [
new ol.layer.Group({
// A layer must have a title to appear in the layerswitcher
title: 'Boundaries',
// Adding a 'fold' property set to either 'open' or 'close' makes the group layer
// collapsible
fold: 'open',
layers: [
new ol.layer.Image({
// A layer must have a title to appear in the layerswitcher
title: 'Counties',
visible: false,
opacity: 0.5,
source: new ol.source.ImageArcGISRest({
ratio: 1,
params: { LAYERS: 'show:3' },
url:
'https://sampleserver6.arcgisonline.com/ArcGIS/rest/services/USA/MapServer'
})
}),
new ol.layer.Image({
// A layer must have a title to appear in the layerswitcher
title: 'States',
visible: true,
source: new ol.source.ImageArcGISRest({
ratio: 1,
params: { LAYERS: 'show:2' },
url:
'https://sampleserver6.arcgisonline.com/ArcGIS/rest/services/USA/MapServer'
})
})
]
}),
new ol.layer.Image({
// A layer must have a title to appear in the layerswitcher
title: 'Highways',
visible: false,
source: new ol.source.ImageArcGISRest({
ratio: 1,
params: { LAYERS: 'show:1' },
url:
'https://sampleserver6.arcgisonline.com/ArcGIS/rest/services/USA/MapServer'
})
}),
new ol.layer.Image({
// A layer must have a title to appear in the layerswitcher
title: 'Cities',
visible: false,
source: new ol.source.ImageArcGISRest({
ratio: 1,
params: { LAYERS: 'show:0' },
url:
'https://sampleserver6.arcgisonline.com/ArcGIS/rest/services/USA/MapServer'
})
})
]
})
],
view: new ol.View({
center: ol.proj.transform([-80.789, 37.926], 'EPSG:4326', 'EPSG:3857'),
zoom: 5
})
});
var layerSwitcher = new ol.control.LayerSwitcher({
activationMode: 'click',
startActive: true,
groupSelectStyle: 'children' // Can be 'children' [default], 'group' or 'none'
});
map.addControl(layerSwitcher);
// Add a select input to allow setting the groupSelectStyle style
function createOption(name) {
var option = document.createElement('option');
option.value = name;
option.text = name;
return option;
}
var container = document.createElement('div');
container.id = 'group-select-style';
var label = document.createElement('label');
label.innerText = 'groupSelectStyle: ';
label.htmlFor = 'group-select-style-input';
var select = document.createElement('select');
select.id = 'group-select-style-input';
select.add(createOption('children'));
select.add(createOption('group'));
select.add(createOption('none'));
select.onchange = function (_e) {
map.removeControl(layerSwitcher);
layerSwitcher = new ol.control.LayerSwitcher({
activationMode: 'click',
startActive: true,
groupSelectStyle: select.value
});
map.addControl(layerSwitcher);
};
container.appendChild(label);
container.appendChild(select);
document.body.appendChild(container);
})();