This problem only seems to occur on Samsung Galaxy S4 standard Internet browser (Android browser). The image of the first cluster remains on the map when you either click a cluster or zoom in with the controls.
I've tried removing the markers and putting them back again but to little success. Searched Google, but I'm not finding anything useful, anybody have a solution to this problem?
Edit: Image for reference.
Edit2: Here's what I tried.
google.maps.event.addListener(map, 'zoom_changed', function () {
if (mapMarkers.length > 1) {
for (var i = 0; i < mapMarkers.length; i++) {
mapMarkers[i].setVisible(false);
mapMarkers[i].setVisible(true);
}
}
});
google.maps.event.addListener(map, 'clusterclick', function () {
if (mapMarkers.length > 1) {
for (var i = 0; i < mapMarkers.length; i++) {
mapMarkers[i].setVisible(false);
mapMarkers[i].setVisible(true);
}
}
});
I came across the same issue and found this: https://code.google.com/p/google-maps-utility-library-v3/issues/detail?id=309. What worked for my situation was editing the unminified version of markercluster.js: