﻿function LoadMap01() {

    if (GBrowserIsCompatible()) {
        
        var map = new GMap2(document.getElementById("map"));

		// - - - - - - - -
		// BASIC MAP SETUP
		// - - - - - - - -
	
		map.setCenter(new GLatLng(47.265616,11.413915), 15);

		// ADD MAP TYPE CONTROL

		//  var mapTypeControl = new GMapTypeControl();
		//  var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(7,7));
		//  map.addControl(mapTypeControl, topRight);

		// ADD MAP NAVIGATION CONTROL

		var LargeMapControl = new GSmallMapControl();
		var topLeft = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(4,7));
		map.addControl(LargeMapControl, topLeft);

		// ADD MAP SCALE CONTROL

		// map.addControl(new GScaleControl());

		// CREATE BASE ICON IMAGE, DIMENSION, SHADOW, ANCHOR

		var baseIcon = new GIcon();
		baseIcon.shadow = "/images/mapicon_shadow.png";
		baseIcon.iconSize = new GSize(50, 45);
		baseIcon.shadowSize = new GSize(73, 45);
		baseIcon.iconAnchor = new GPoint(26, 45);
		baseIcon.infoWindowAnchor = new GPoint(50, 37);
		baseIcon.infoShadowAnchor = new GPoint(50, 37);

		// - - - - - - - - -
		// ADD MARKER TO MAP
		// - - - - - - - - -

		var point = new GLatLng(47.265616,11.413915);
		var tooltip = "Neue Heimat Tirol";
		//  var infotext = "<table width='150'><tr><td><a target='_blank' href='http://www.sushiseven.com/'>sushiseven</a><br />Anichstrasse 6<br />6020 Innsbruck<br />+43 (512) 363938</td></tr></table>";
		
		var mapIcon = new GIcon(baseIcon);
		mapIcon.image = "/images/mapicon.png";
		markerOptions = { title:tooltip,icon:mapIcon };
		var marker = new GMarker(point, markerOptions);
		map.addOverlay(marker);
        
    }

}