Subversion Repositories eFlore/Applications.cel

Rev

Rev 2998 | Rev 3016 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2998 Rev 3006
Line 184... Line 184...
184
function executerMarkerClusterer(points, bounds) {
184
function executerMarkerClusterer(points, bounds) {
185
	if (points.length > 0) {
185
	if (points.length > 0) {
186
		if (markerClusterer) {
186
		if (markerClusterer) {
187
			markerClusterer.clearMarkers();
187
			markerClusterer.clearMarkers();
188
		}
188
		}
-
 
189
		var options = {
-
 
190
			imagePath: 'https://raw.githubusercontent.com/googlemaps/v3-utility-library/master/markerclustererplus/images/m'
-
 
191
		};
189
		markerClusterer = new MarkerClusterer(map, points);
192
		markerClusterer = new MarkerClusterer(map, points, options);
190
		map.fitBounds(bounds);
193
		map.fitBounds(bounds);
191
	}
194
	}
192
}
195
}
Line 193... Line 196...
193
 
196