Our app uses the interactive Markers functionality to render custom HTML elements and make them clickable. In our use case, we often render hundreds of markers on the map at once.
In previous versions (v5), when multiple markers overlapped due to zooming out or having nearby coordinates, the click event payload included an array of all potential hits. This allowed us to display a custom modal listing all possible matches so users could select the correct one.
After upgrading to v6 (6.2.0), this behavior seems to have changed. The click event payload now only includes a single marker, even when clicking on an area where multiple markers clearly overlap.
This worked perfectly in v5, so it appears to be a regression in v6.
Has anyone else experienced this or know if this change was intentional?
Thanks!