mike-000

Results 205 comments of mike-000

> Changing the decluttering code to declutter per-feature instead of per-style will make the decluttering code a fair bit simpler, and will also solve #14609. Currently decluttering within a feature...

Hit detection has been reworked since the last release. Do you see the problem in the dev version https://openlayers.org/en/main/examples/webgl-points-layer.html ?

if (selectedRef.current && found !== selectedRef.current) { selectedRef.current.set('hover', 0); selectedRef.current = null; } if (!found) { overlayRef.current.setPosition(undefined); return; } should reduce the flickering of the overlay.

> I am seeing some unexpected behavior with hit detection as well. That should be fixed by #15340. As it is not yet included in a release you will need...

Layers which are not visible do not load their sources. If you use the same source in a layer which is permanently visible but has `opacity: 0` it should load...

In both the examples adding `minZoom: 0` to the layer options prevents the `maxResolution` being set inappropriately, but it would be better to fix this at the cause. While this...

An alternative to having a built-in workaround would be for applications to use a polyfill as required to make Gecko browser behavior consistent with other browsers (there would be no...

> I have no such issues when reprojection datatiles with u8's. Reprojection of Uint8 does fail when reprojecting between two UTM projections as in https://github.com/openlayers/openlayers/blob/main/test/browser/spec/ol/reproj/DataTile.test.js#L218 The values returned after reprojection...

> On firefox after calling `putImageData` the resulting canvas has mostly `[191, 0, 0, 255]` but some places it will be slightly pertubated like `[190, 0, 0, 255]` or `[191,...

I think the minified build in #901 was not compatible but in the latest version that is also fixed? Note that all the examples are still using OpenLayers 7.0.0 as...