gpt4 book ai didi

styles - OpenLayers 3笔触样式

转载 作者:行者123 更新时间:2023-12-04 13:38:34 25 4
gpt4 key购买 nike

我想修改select方法的样式。我可以更改此方法的样式,但无法复制蓝色描边的白色边框。

有人能够用笔画为矢量设置样式并在笔画上加上边框吗?

请参阅此示例,以了解我在说什么:
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
})
})
];

关于styles - OpenLayers 3笔触样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29959377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com