// JavaScript Document
function initialize() {
   var map = new GMap2(document.getElementById("map_canvas"));
    map.setCenter(new GLatLng(48.8419032, 2.3224379), 18);

     // Select a map type which supports obliques
   map.setMapType(G_HYBRID_MAP);
      map.setUIToDefault();

     // Enable the additional map types within
     //the map type collection
     map.enableRotation();
	 
	 
	//map.openInfoWindow(map.getCenter(),document.createTextNode("ITOCHU France"));

	 }  


