我正在尝试在OL3中设置矢量要素的填充不透明度,如果我有十六进制值,则无法弄清楚如何执行此操作...我已经看到了rgba的示例。有什么建议吗?
这就是我所拥有的:
style : function(feature, resolution) {
return [new ol.style.Style(
{
stroke : new ol.style.Stroke(
{
color : feature.get('color'),
width : 2
}),
fill : new ol.style.Fill(
{
color : feature.get('color'), //'#FF0000'
opacity : 0.2 // I thought this would work, but it's not an option
})
})]
}
答案 0 :(得分:11)
您可以使用ol.color.asArray
功能。该函数将颜色字符串转换为颜色数组。
所以这就是你可以使用的:
var hexColor = feature.get('color');
var color = ol.color.asArray(hexColor);
color = color.slice();
color[3] = 0.2; // change the alpha of the color
slice()
用于创建新的颜色数组。这是为了避免破坏颜色字符串到颜色数组"缓存ol.color.asArray
函数维护的内容。
请参阅http://openlayers.org/en/master/apidoc/ol.color.html?unstable=true#asArray。
答案 1 :(得分:10)
这已经晚了但可能对某人有帮助。 也可以使用rgba属性。
fill: new ol.style.Fill({color: 'rgba(255, 255, 0, 0.63)'}),
答案 2 :(得分:1)
import ol_color from 'ol/color';
colorWithAlpha(color, alpha) {
const [r, g, b] = Array.from(ol_color.asArray(color));
return ol_color.asString([r, g, b, alpha]);
}