I am working on a map project where I need clustering. I implemented a store locator and used MarkerClusterer which works fine. Now I have another requirement from the customer and I wonder which solution I should use to achieve these goals:
- Zoom level 0: Cluster markers within 1500km distance to each other
- Zoom level 1: Cluster within 1000km
- Zoom level 2: Cluster within 750km
- Zoom level 3: Cluster within 400km
- Zoom level 4 and above: no clustering
I was thinking I should be using MarkerManager and MarkerClusterer together, but I am not sure about that. Any help to get me on the right path?
Thanks in advance!