Existe-t-il une méthode pour modifier les index Z des couches dans OpenLayers3 comme c'était le cas dans l'ancienne version?
map.setLayerIndex(markers, 99); //set the marker layer to an arbitrarily high layer index
J'ai besoin de changer l'ordre des couches à travers une carte. Donc, une telle possibilité de définir un z-index comme celui-ci n'aide
var geoLayer = new ol.layer.Vector({
source : new ol.source.GeoJSON({
projection : 'EPSG:900913',
url : './myGeoJson.json'
}),
style : function(feature, resolution) {
var text = resolution < 5000 ? feature.get('name') : '';
if (!styleCache[text]) {
styleCache[text] = [new ol.style.Style({
fill : new ol.style.Fill({
color : 'rgba(255, 255, 255, 0.1)'
}),
stroke : new ol.style.Stroke({
color : '#319FD3',
width : 1
}),
text : new ol.style.Text({
font : '12px Calibri,sans-serif',
text : text,
fill : new ol.style.Fill({
color : '#000'
}),
stroke : new ol.style.Stroke({
color : '#fff',
width : 3
})
}),
zIndex : 999
})];
}
}
});