<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=true&amp;key=ABQIAAAAjFqZecPYiW7ud0VQMU63VxRlsysv0eMXL7k_RHGhcab_M0GTVBRsNH0JGwISlximDU8vsWQbhZU6yA"
      type="text/javascript"></script>
<script type="text/javascript">

//<![CDATA[
if (GBrowserIsCompatible())
	{
	// Icones
	var baseIcon = new GIcon();
	baseIcon.iconSize=new GSize(60,40);
	baseIcon.shadowSize=new GSize(56,32);
	baseIcon.iconAnchor=new GPoint(16,32);
	baseIcon.infoWindowAnchor=new GPoint(16,0);
          
	var estable   = new GIcon(baseIcon, "http://www.ski-experience.org/images/logo.png", null, "http://wwwrafting-experience.com/images/ombre.png");

	// Fonction Marqueur
	function createMarker(point, txt, icon, nom)
		{
  		var marker = new GMarker(point, {icon: icon, title: nom});
		GEvent.addListener(marker, "click", function()
			{
			marker.openInfoWindowHtml(txt);
			});
		return marker;
		}

	// déclaration de la map
	var map = new GMap2(document.getElementById("map"));

	// Ajout des contrôles
	map.addMapType(G_PHYSICAL_MAP);
	map.addControl(new GMapTypeControl());
	map.addControl(new GLargeMapControl());
	map.enableScrollWheelZoom();

	// Centrage de la carte
		map.setCenter(new GLatLng(44.932709, 6.588278),15);

	// Type relief
	map.setMapType(G_NORMAL_MAP);

	// Tracé points caractéristiques
	var point = new GLatLng(44.932709, 6.588278 ); map.addOverlay(createMarker(point,"Ski Expérience®<p>1 rue du centre<br>05330 Chantemerle</p>",estable,"Serre Chevalier"));
	
		}
//]]>
</script>