// JavaScript Document

  function initialize() {
        if (GBrowserIsCompatible()) {
        
          // Create and Center a Map
          var map = new GMap2(document.getElementById("map_canvas"));
          map.setCenter(new GLatLng(46.411692,11.243616), 15);
          map.addControl(new GLargeMapControl());
          map.addControl(new GMapTypeControl());
		   
		  
		  
		 // Punkt auf Karte
 		  var point = new GLatLng(46.411692,11.243616);
		 map.addOverlay(new GMarker(point));
		 
		 //map.openInfoWindow(map.getCenter(), document.createTextNode('Soelva \n\n Kaltern'));
	
		  
		  
		// Create our "tiny" marker icon
  //		var blueIcon = new GIcon(G_DEFAULT_ICON);
  //		blueIcon.image = "http://www.soelva.com/i/logo.gif";
		
		// Set up our GMarkerOptions object
	//	markerOptions = { icon:blueIcon };
		
	//	var point = new GLatLng(46.428451,11.25);
//		map.addOverlay(new GMarker(point, markerOptions));
		 
		 
		 
		 //Suchen auf der Karte 
          // bind a search control to the map, suppress result list
         //map.addControl(new google.maps.LocalSearch(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,20)));
		
		
		
        }
      }
     // GSearch.setOnLoadCallback(initialize);