// JavaScript Document

    if (GBrowserIsCompatible()) {

    

      var map = new GMap2(document.getElementById("map"));

      var point = new GLatLng(35.696225, 139.698000);

//	var point = new GLatLng(35.69581788606498, 139.72186535598858);



	var icon = new GIcon;

    icon.image = "img/gglmap_logo.gif";

    

    icon.iconSize = new GSize(41,42);

    

    icon.iconAnchor = new GPoint(41,42);

 

      map.setCenter(point, 15);



//      var mp = new GLatLng(35.691262809854685 , 139.710254073143 );

	var mp = new GLatLng(35.696225, 139.698000);

      var marker = new GMarker(mp, icon);



      map.addOverlay(marker);

      

     map.addControl(new GLargeMapControl());

  //    map.setCenter(new GLatLng(35.691267, 139.710574), 15);

    }


















