﻿// mapView JScript File

var map, marker, isStreetView;

function initialize() {
    if (GBrowserIsCompatible()) {
        var mylocation = new GLatLng(-33.850031, 151.070772);
        map = new GMap2(document.getElementById("mapMain"));
        //map.setCenter(new GLatLng(-33.8501, 151.0693), 14);
        map.setCenter(mylocation, 14);
        map.setUIToDefault();
        
        //isStreetView = new GStreetviewOverlay();
        //map.addOverlay(isStreetView);

        
        marker = new GMarker(mylocation, G_DEFAULT_ICON);
        createMarkerInfo(mylocation);
        map.addOverlay(marker);
    }
}

function createMarkerInfo(mylocation){
    GEvent.addListener(marker, "click", 
	    function() {		
	        var infoStr = "<table border=0 width='300px' height='150px'><tr><th colspan='2'><h2>Sports House Location<h2></th></tr><tr><td><img alt='Sport House' src='/images/cbk.jpeg' /></td><td><p>Sports House</p><p>6A Figtree Drive</p><p>Homebush Bay, NSW 2127</p><p>(t) +61 2 8116 9811</p></td></tr></table>";
		    marker.openInfoWindow(infoStr);
	    }
    );

}
