I’m looking for a solution to a problem. I recently implemented a Google map with multiple markers. Then, because some of the markers were closely spaced, I implemented a marker clusterer this way:
var markerCluster = new MarkerClusterer(map, markers,
{ gridSize: 20, maxZoom: 25, imagePath: ‘https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m’ });
It works perfectly in my editor preview.
But when I publish the page, the clusterer no longer works on the live site. Anyone have any ideas as to what’s going on?