Hello everyone,
We're currently using the identifyLayers function from MapViewProxy to identify features in our layers. This generally works well, but we've noticed an issue with layers where clustering is enabled:
Clicking on a cluster returns the expected result using identifyLayers. ✅
Clicking on a single, non-clustered feature does not return a result. ❌
Is this an issue of identifyLayers, or is there a better way to reliably identify all features, including non-clustered ones, in clustered layers?
We considered using identify(on layer: ArcGIS.Layer) as shown in this example . However, since we have multiple layers, calling this function repeatedly for each layer is not ideal.
Any suggestions or best practices would be appreciated—thanks in advance!