Reindenting.

This commit is contained in:
Oliver Jowett 2015-12-21 17:40:39 +00:00
parent 457761f060
commit 779c66e2e9

View file

@ -474,18 +474,18 @@ function initialize_map() {
new google.maps.Point(0, 0), // Origin point of image new google.maps.Point(0, 0), // Origin point of image
new google.maps.Point(16, 16)); // Position where marker should point new google.maps.Point(16, 16)); // Position where marker should point
var marker = new google.maps.Marker({ var marker = new google.maps.Marker({
position: SitePosition, position: SitePosition,
map: GoogleMap, map: GoogleMap,
icon: markerImage, icon: markerImage,
title: SiteName, title: SiteName,
zIndex: -99999 zIndex: -99999
}); });
if (SiteCircles) { if (SiteCircles) {
for (var i=0;i<SiteCirclesDistances.length;i++) { for (var i=0;i<SiteCirclesDistances.length;i++) {
drawCircle(marker, SiteCirclesDistances[i]); // in meters drawCircle(marker, SiteCirclesDistances[i]); // in meters
} }
} }
} }
} }