【发布时间】:2016-02-18 13:38:16
【问题描述】:
在 OpenLayers 3 中可以更改选择中的边框颜色:
style = new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'blue',
width: 2
})
});
但是可以只更改边框底部吗?
类似:
style = new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'blue',
width: 2,
border-bottom: 2px dotted #ff9900
})
});
【问题讨论】: