function initializeSingle(mapContainerDiv) { var map_canvas_single = document.getElementById(mapContainerDiv); var map_options_single = { //center: new google.maps.LatLng(-27.786229, 153.4548831), center: new google.maps.LatLng(-27.4599510, 153.0215030), zoom: 9, mapTypeId: google.maps.MapTypeId.ROADMAP, scrollwheel: false }; var mapSingle = new google.maps.Map(map_canvas_single, map_options_single); mapSingle.set('styles', [ { "stylers": [ { "saturation": -100 } ] } ]); addMarker(mapSingle, -27.4599510, 153.0215030, "

Spring Hill
14 Torrington Street
Spring Hill QLD
Phone: 07 3054 4359
Mon to Thurs: 6.30am - 7pm
Friday: 6.30am - 6pm
Sat: 
8am - 5pm
Sun:
 8am - 1pm


Open in Google Maps", "Title"); var center; function calculateCenter() { center = mapSingle.getCenter(); } google.maps.event.addDomListener(mapSingle, 'idle', function () { calculateCenter(); }); google.maps.event.addDomListener(window, 'resize', function () { mapSingle.setCenter(center); }); }