我有一个带有样式定义的ol3图层。我想在选择交互中使用相同的样式:
style = function(feature, resolution) {
var iconFont = 'FontAwesome';
var iconFontText = '\uf1f8'; // fa-trash
var iconSize = 24;
var col = 'black';
var styles = [];
var styleIcon = new ol.style.Style({
text: new ol.style.Text({
font: 'Normal ' + iconSize + 'px ' + iconFont,
text: iconFontText,
fill: new ol.style.Fill({color: col})
})
});
styles.push(styleIcon);
}
return styles;
};
new ol.layer.Vector({
source: that.source,
style: style
});
new ol.interaction.Select({
features: that.selectedFeatures,
style: style
})
我只想更改样式的一个属性(iconSize)以突出显示所选要素。这有可能吗?我不想定义两个单独的样式,但如果可以以编程方式复制样式并替换iconsize值,我会很好。
答案 0 :(得分:2)
现在我找到了一个有效的解决方案:
您可以在样式函数中添加其他参数(例如,突出显示[bool]):
style = function(feature, resolution, highlight) {
...
}
而不是
new ol.interaction.Select({
features: that.selectedFeatures,
style: style
})
你可以使用
new ol.interaction.Select({
features: that.selectedFeatures,
style: function(feature,resolution){
return style(feature,resolution,true);
}
})
答案 1 :(得分:0)
可能的解决方案:告诉您的函数ol.interaction.Select
处于活动状态:
var style = function(ft, res, selecting){
return [
new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#ffcc33',
width: selecting ? 4 : 2
})
})
];
};
var selecting = false;
selectInteraction.on('select', function(evt) {
selecting = evt.selected.length > 0;
});