0
我注意到文字和圖像樣式在渲染時似乎並不考慮它們的圖層順序。例如,當具有這些樣式的許多要素靠得很近時,所有文本都會呈現在其他重疊向量要素之上。有沒有辦法禁用或重寫此行爲?謝謝。OpenLayers 3圖像和文本樣式zindex
myFeature.setStyle(new ol.style.Style({
image: new ol.style.Icon({
src: '/images/myImage.png',
anchor: [0.5, 1],
anchorXUnits: 'fraction',
anchorYUnits: 'fraction'
})
}));
myOtherFeature.setStyle(new ol.style.Style({
image: new ol.style.Circle({
fill: new ol.style.Fill({
color: 'rgb(255,200,77)'
}),
stroke: new ol.style.Stroke({
color: 'rgba(0,0,0,.2)',
width: 1
}),
radius: 14
}),
text: new ol.style.Text({
font: 'light 10px Arial',
text: '1',
fill: new ol.style.Fill({color: 'black'}),
stroke: new ol.style.Stroke({color: 'black', width: 0.5})
})
}));
看到這個討論:https://github.com/openlayers/ol3/issues/1876 – bartvde
這就是我一直在尋找。謝謝! – kenji