			var directionDisplay;
			var directionsService = new google.maps.DirectionsService();
			var maCarte;
			
				directionsDisplay = new google.maps.DirectionsRenderer();
				var tours = new google.maps.LatLng(45.914805,3.077247);
				var optionsCarte = {
					zoom: 16,
					mapTypeId: google.maps.MapTypeId.SATELLITE,
					center: tours
				}
				maCarte = new google.maps.Map(document.getElementById("EmplacementDeMaCarte"), optionsCarte);
//--------------------------------------
				// CrÃ©ation de l'icÃ´ne 
		var myMarkerImage = new google.maps.MarkerImage('/uploads/icone.png');
		
		var campMarker = new google.maps.Marker({
			position: tours, 
			map: maCarte,
			icon: myMarkerImage,
			title: "CAMPING CLOS BALANEDE ***"
		});
			
		//--------------fenetre 
		// Options de la fenÃªtre
		var myWindowcamp = {
			content:
			'CAMPING ***<br>'+
			'CLOS BALANEDE<br>'+
			'63140 CHATEL-GUYON<br>'+
			'T&eacute;l. : 04 73 86 02 47<br>'+
			'Fax : 04 73 86 05 64<br>'+
			'E-mail : contact@balanede.com'
		};
		
		// CrÃ©ation de la fenÃªtre
		var myInfoWindowseptsaints = new google.maps.InfoWindow(myWindowcamp);
		
		// Affichage de la fenÃªtre au click sur le marker
		google.maps.event.addListener(campMarker, 'click', function() {
			myInfoWindowseptsaints.open(maCarte,campMarker);
		});
//--------------------------------------
		
			
			 function setDirections(fromAddress, toAddress) {
			   gdir.load("from: " + fromAddress + " to: " + toAddress,{ "locale": "fr" });
			 }
			
			function setDirections(fromAddress, toAddress) {
				directionsDisplay.setMap(maCarte);
				directionsDisplay.setPanel(document.getElementById("EmplacementItineraireTexte"));
				var requeteItineraire = {
					origin: fromAddress,
					destination: toAddress,
					travelMode: google.maps.DirectionsTravelMode.DRIVING
				};
				directionsService.route(requeteItineraire, function(response, status) {
					if (status == google.maps.DirectionsStatus.OK) {
						directionsDisplay.setDirections(response);
					}
				});
				}

