You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2019. It is now read-only.
With the latest version of Google Chrome, clicking on a cluster icon has no affect. I believe this is down to a recent change that is meant to prevent the cluster click event from firing if a drag is taking place. To demonstrate the problem, check out the maps on the examples page.
Commenting out...
if (!isDragging) { that.triggerClusterClick(event); }
And just replacing it with:
that.triggerClusterClick(event);
Fixes the issue. I guess there may be a problem with the code that sets "isDragging"?