-
Notifications
You must be signed in to change notification settings - Fork 175
Support for accuracy circles in Clustering #847
Copy link
Copy link
Closed
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Metadata
Metadata
Assignees
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Is your feature request related to a problem? Please describe.
When using the Clustering component, it is easy to customize the markers for clusters and items. However, there is currently no straightforward way to add "geographic decorations" like accuracy circles (using the Circle composable) that are tied to individual ClusterItems.
Because the Clustering component manages marker visibility internally, adding a native Circle for an item requires manual synchronization with the ClusterManager. If a user attempts to draw a circle inside clusterItemContent, it is rendered into a Bitmap, which doesn't scale geographically like a native Circle.
Describe the solution you'd like
A way to define additional map components asociated with each ClusterItem that follow the item's visibility (i.e., shown only when the item is NOT clustered).