/*------------------------------------------------------------------------------------------------------------------------
JAVASCRIPT - google maps

autor: Brandscape
website: http://www.brandscape.pt
------------------------------------------------------------------------------------------------------------------------*/

/* =Google Maps
------------------------------------------------------------------------------------------------------------------------*/
    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));	
    	map.addControl(new GLargeMapControl3D());
		map.addControl(new GMenuMapTypeControl(true));
    	map.setCenter(new GLatLng(38.761639,-9.374213), 13);
 		map.setMapType(G_SATELLITE_MAP);
		map.addMapType(G_PHYSICAL_MAP);
		map.enableScrollWheelZoom();
		


// Ícone
		var icon = new GIcon();
		icon.image = "../imgs/gmap-icon.png";
		icon.iconSize = new GSize(80, 68);
		icon.iconAnchor = new GPoint(30, 68);
	  icon.infoWindowAnchor = new GPoint(35, 5);


// Info
		function fMarker(point,icon,html){
			var marker = new GMarker(point,icon);
			GEvent.addListener(marker, "click", function() {
	   		 marker.openInfoWindowHtml(html, {maxWidth:200});
				 map.setCenter(point, 16);
  			});	
 			return marker;
		}

// Localizacao
		var point = new GLatLng(38.761639,-9.374213);
		var html = "<b>Estúdio da Beloura</b><br/ >Beloura Office Park, Ed. 11 Piso -2<br/ >Quinta da Beloura<br/ >2710-693 Sintras";
		var marker = fMarker(point,icon,html);
		map.addOverlay(marker);


	}
}

/*-----------------------------------------------------------------------*/
window.onunload = GUnload;


/* =Iniciar
-----------------------------------------------------------------------*/
window.onload = initialize;

