mike-000
mike-000
You should be able to fix that by setting a `zIndex` on the layer https://openlayers.org/en/latest/examples/layer-z-index.html
A layer should not be used more than once on a map. Either declare a second layer using the same source, or for an XYZ source you can specify that...
The problem does not only affect non-parallel projections, as the workaround was being triggered elsewhere (with noticeable performance impact). This is screenshot (magnified x3) of central Asia from uncorrected https://deploy-preview-13654--ol-site.netlify.app/en/latest/examples/geotiff-reprojection.html...
Yes, as the layer maintains the cache I think `WebGLTileLayer` should have API `clear()` and/or `refresh()` methods which do that (and without using private properties of the renderer which would...
@M393 the WebGL renderer wasn't clearing the source cache - it should be now but if the source is shared with another (non-WebGL) layer you still could not guarantee it...
There is no ellipse geometry, but it can be represented as a polygon https://codesandbox.io/s/ellipse-0qyuqu?file=/main.js
That also happens with a TileJSON source - these sources need to become 'ready' before the tiles can be accessed. If the control cannot load the previews asynchronously (?) the...
Easiest way would be to ignore a click in the handler if it is within 250ms of the previous one https://jsbin.com/nehahoroja/edit?html,output
The examples are now not working as the latest build and css are now at https://openlayers.org/en/latest/legacy/ol.css https://openlayers.org/en/latest/legacy/ol.js That is not compatible with extending classes using `ol_ext_inherits` so the short term...
Your button would need to activate/deactivate the centering and rotating of the view. Because an overlay does not rotate with the view and relies on the view rotating to show...