
			var directionDisplay;
			var directionsService = new google.maps.DirectionsService();
			var maCarte;
			
				directionsDisplay = new google.maps.DirectionsRenderer();
				var tours = new google.maps.LatLng(47.655285,-3.17183);
				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 LES 7 SAINTS ****"
		});
			
		//--------------fenetre septsaints
		// Options de la fenêtre
		var myWindowcamp = {
			content:
			'CAMPING ****<br>'+
			'LES 7 SAINTS<br>'+
			'56410 ERDEVEN<br>'+
			'T&eacute;l. : 02 97 55 52 65<br>'+
			'Fax : 02 97 55 22 67<br>'+
			'E-mail : info@septsaints.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);
					}
				});
				}
	
