1
我想修改方法select的樣式。我能夠改變這種方法的風格,但我無法複製藍色筆畫的白色邊框。OpenLayers 3描邊樣式
有人能夠風格與中風矢量和邊框到中風?
見這個例子中,明白我在說什麼: http://openlayers.org/en/v3.4.0/examples/select-features.html
我想修改方法select的樣式。我能夠改變這種方法的風格,但我無法複製藍色筆畫的白色邊框。OpenLayers 3描邊樣式
有人能夠風格與中風矢量和邊框到中風?
見這個例子中,明白我在說什麼: http://openlayers.org/en/v3.4.0/examples/select-features.html
的技巧是,你有兩種風格。隨着第一種風格,你正在畫一條白線,第二種風格上面有一條較薄的藍色線條:
var width = 3;
var styles = [
new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'white',
width: width + 2
})
}),
new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'blue',
width: width
})
})
];
正是我想要的,謝謝!!!!! – FatAl