返回

使用openlayers的vector source loader

#分享#
发布于 2022-05-30

The vector source’s url option is the first choice for loading vector data, but it doesn’t work when a special post-processing or loading strategy required.

https://openlayers.org/en/latest/apidoc/module-ol_source_Vector-VectorSource.html

Loading strategy

First, we should learn about loading strategy in openlayers. there are 3 standard loading strategy in openlayers.

Misunderstanding

Suppose such a feature, our data according to zoom level, when zoom changed, we have to request data again for current zoom level.

...
loader:function(extent,resolution,projection){
console.log("loading data in resolution",resolution);
getData(resoluton).then(response=>{
let features = source.getFormat().readFeatures(response);
source.clear();
source.addFeatures(features);
})
}
...

The demo code, we expect loader triggered when view’s zoom changed, clear previous features and load new features at new zoom. but when scroll the wheel, It is not the case. The log message show the loader only triggered in the first few times, when we keep increasing the zoom level (resolution), loader is no longer triggered. But why? The extent is the main controller of the loader, when loader(extent...) called, the extent will add to the source’s loaded extent (codein Vector.js), so ,if resolution changed but new extent is within loaded extent, loader will not be triggered. It’s clear now, the extents in the first few time contain follows, so when we keep increasing zoom level, the vector source doesn’t invoke its loader unless the extent exceed loaded extent.

最后编辑于 2024-04-13