I have the following jQuery code which adds map marker clusters:
markerCluster = new MarkerClusterer(map);
I'm using markerCluster.addMarker(Marker);
to add individual markers to clusters (full code block at the bottom of the page).
The problem I have is my clusters have no image attached by default.
I can do the following:
var options = 'an image path';
markerCluster = new MarkerClusterer(map,markers,options);
However as options is the third parameter, I effectively overwrite the second parameter. Is there a way to set an image to MarkerCluster without overwriting the markers?
(function () {
var address = response[key]["address"];
$.getJSON('http://maps.googleapis.com/maps/api/geocode/json?address='+response[key]["post_code"]+'&sensor=false', null, function (data) {
var p = data.results[0].geometry.location
var latlng = new google.maps.LatLng(p.lat, p.lng);
var Marker = new google.maps.Marker({
position: latlng,
map: map,
content: address
});
markerCluster.addMarker(Marker);
google.maps.event.addListener(Marker, 'click', function () {
infowindow.setContent(this.content);
infowindow.open(map, this);
});
});
})();