I'm using OpenLayers 6.0.1 (had the same problem on version 5) to display multiple features on the map. Everything is nice and sharp until I start moving map. The features look like that:
But when I will move the map they become blurry till I release the mouse button. Take a look:
Is that normal? Can I do something about it?
I'm defining View
like this:
view: new ol.View({
center: ol.proj.fromLonLat([17, 52]),
resolutions: tileLayer.tileSource.getTileGrid().getResolutions(),
zoom: 3
})
I've read somewhere that missing resolutions
could create such effect but this didn't help in my case.