function addMarker(map, loc1, loc2, infowindowHTML, infoWindowTitle) { addMarker(map, loc1, loc2, infowindowHTML, infoWindowTitle, false); } function addMarker(map, loc1, loc2, infowindowHTML, infoWindowTitle, openByDefault) { var marker = new google.maps.Marker({ position: new google.maps.LatLng(loc1, loc2), map: map, icon: iconBase, shadow: iconBase }); var popup = new google.maps.InfoWindow({ //content: "
Dicky Beach Family Holiday Park
Beerburrum St, Dicky Beach QLD 4551
617-5491 3342
Find out more", "Title");
addMarker(map, -26.682713, 153.122571, "
Mooloolaba Beach Holiday Park
Parkyn Parade, Mooloolaba Qld 4557
617-5444 1201
Find out more", "Title");
addMarker(map, -26.660138, 153.102873, "
Maroochydore Beach Holiday Park
Melrose Parade, Maroochydore Qld 4558
617-5443 1167
Find out more", "Title");
addMarker(map, -26.652958, 153.100963, "
Cotton Tree Holiday Park
Cotton Tree Parade, Cotton Tree Qld 4558
617-5459 9070
Find out more", "Title");
addMarker(map, -26.617315, 153.099041, "
Mudjimba Beach Holiday Park
Cottonwood Street, Mudjimba Qld 4564
617-5448 7157
Find out more", "Title");
addMarker(map, -26.529261, 153.09154, "
Coolum Beach Holiday Park
David Low Way, Coolum Beach Qld 4573
617-5446 1474
Find out more", "Title");
var center;
function calculateCenter() {
center = map.getCenter();
}
google.maps.event.addDomListener(map, 'idle', function () {
calculateCenter();
});
google.maps.event.addDomListener(window, 'resize', function () {
map.setCenter(center);
});
}