我从第三方API中提取数据,该数据给出了lat / lon coords以及该点的状态。我目前能够成功绘制点并在第一次迭代时为它们的状态提供正确的样式。但是,如果状态发生变化,我需要每3秒钟更新一次样式。我尝试过使用mySource.changed()
但它没有用。我看了一遍,找不到解决方案,即使这似乎不是一件难以实现的事情吗?
我也每隔3秒尝试clear()
我的音源,但随后矢量图层会闪烁'我需要它无缝更新。我也尝试删除/重新添加整个矢量图层。我需要使用样式功能吗?还是功能叠加?为什么我不能像谷歌地图或传单一样覆盖样式?
我的风格
var takenStyle = new ol.style.Style({
image: new ol.style.Icon({
src: '../_images/redMark.png',
scale: .2
})
});
var openStyle = new ol.style.Style({
image: new ol.style.Icon({
src: '../_images/greenMark.png',
scale: .2
})
});
var unsureStyle = new ol.style.Style({
image: new ol.style.Icon({
src: '../_images/yellowMark.png',
scale: .2
})
});
我如何分配样式/功能
if ((data.scopes[i].parking_spot.status === true)) {
var feature = new ol.Feature({
geometry: new ol.geom.Point(ol.proj.transform(pointCoords, 'EPSG:4326', 'EPSG:3857'))
});
feature.setStyle(takenStyle);
feature.setId(i);
pointSource.addFeature(feature);
更新:使用Navageer Gowda的建议,我终于弄明白了。我创建了第二个函数,并迭代了这些函数来更新样式。
if ((data.scopes[i].parking_spot.occupied === true && data.scopes[i].parking_spot.occupied === lastCheck[i].occupied)) {
theFeatures[i].setStyle(takenStyle);
}
答案 0 :(得分:2)
要每3秒强制刷新图层样式,您可以执行以下操作:
window.setInterval(function () {
layer.getSource().dispatchEvent('change');
}, 3000);
但是,API通过在ol.source.Vector上使用自定义加载程序功能和ol.layer.Vector上的自定义样式函数,以更干净的方式支持您尝试执行的操作。它看起来像这样:
var layer = new ol.layer.Vector({
source: new ol.source.Vector({
loader: function(extent, resolution, projection) {
var fetchData = function() {
// Fetch data here, add features *without style* to layer.getSource()
};
// Fetch data once immediately
fetchData();
// re-fetch every 3 seconds
window.setInterval(fetchData, 3000);
}
}),
style: function(feature, resolution) {
var props = feature.getProperties();
// Psuedo-logic shown here, use your own to determine which style to return
if (isTaken) {
return takenStyle;
} else if (isOpen) {
return openStyle;
} else {
return unsureStyle;
}
}
});
答案 1 :(得分:1)
每次更改样式时,您似乎再次添加相同的功能。你可以做任何一件事