OpenLayers3에서 이전 버전과 마찬가지로 레이어의 Z- 색인을 변경하는 방법이 있습니까?
map.setLayerIndex(markers, 99); //set the marker layer to an arbitrarily high layer index
지도를 사용하는 동안 레이어 순서를 변경해야합니다. z-index를 정의하는 것과 같은 가능성은 도움이되지 않습니다.
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
})];
}
}
});