
	/*
	position geographique de le sciete EDITO St Brieuc
	*/
	var coordinate=new google.maps.LatLng(48.504763,-2.742827);

	/*
	definir les optionde à afficher la la carte 
	*/
	var mapOptions= 
	{
		zoom:11,
		center:coordinate,
		streetViewControl: false,
		navigationControl:true,
        mapTypeControl:false,
		//companyAddress: '10 rue de paris 22000 Saint-Brieuc',
        //mapId:"map"
		mapTypeId:google.maps.MapTypeId.ROADMAP
   	};
   
	/*
	Afficher la carte dans le <div id="map"></div>
	*/
	map=new google.maps.Map(document.getElementById('map'),mapOptions);
	
	/*
	Afficher l'epingle de position sur la carte
	*/
	var marker = new google.maps.Marker({
		//icon: 'http://maps.google.com/mapfiles/marker_green.png', // affiche un marker vert
		cursor: 'move',	// affiche quatre flèches en croix au survol
		map: map, 		// ID de l'objet carte (<div id="map"></div> de la page web)
		position: coordinate
	});	
	
