Skip to content

Instantly share code, notes, and snippets.

@DeKaN
Created May 14, 2016 10:11
Show Gist options
  • Save DeKaN/b4794b1ddf0488da805900e7feae21de to your computer and use it in GitHub Desktop.
Save DeKaN/b4794b1ddf0488da805900e7feae21de to your computer and use it in GitHub Desktop.
var sizes = [53, 56, 66, 78, 90];
var mcStyles = [];
for (var i = 0, size; size = sizes[i]; i++) {
mcStyles.push({
url: '/static/img/markers/m' + (i + 1) + '.png',
height: size,
width: size
});
}
var mcOptions = {
gridSize: 50,
maxZoom: 10,
enableRetinaIcons: true,
minimumClusterSize: 4
minimumClusterSize: 4,
styles: mcStyles
};
map = new google.maps.Map(element[0], mapOptions);
mc = new MarkerClusterer(map, [], mcOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment