<!-- Bastide de Lerins -->
<!-- Script de parametrage de la carte Google Map -->
<!-- ce script provient initialement de Google -->
<!--
function initialize() {
       if (GBrowserIsCompatible()) {
	      var map = new GMap2(document.getElementById("map_canvas"));        
          map.setCenter(new GLatLng(43.658931,7.001038), 10);
		  map.addControl(new GLargeMapControl());
		  map.addControl(new GMenuMapTypeControl(true));
		  map.addControl(new GScaleControl());
		  map.addControl(new GOverviewMapControl());
		  map.addMapType(G_PHYSICAL_MAP) ;
		  map.setMapType(G_PHYSICAL_MAP);
          var point = new GLatLng(43.592905,6.982565);
		  var iconBlue = new GIcon(); 
		  iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
		  iconBlue.iconSize = new GSize(12, 20);
		  iconBlue.shadowSize = new GSize(22, 20);
		  iconBlue.iconAnchor = new GPoint(6, 20);
		  iconBlue.infoWindowAnchor = new GPoint(5, 1);
		  var options = { title: "La Bastide de Lerins - Mougins - Cote d'Azur",icon: iconBlue, autoPan: false};
		  var marker = new GMarker(point, options);
		  var html = '<A HREF="index.htm" class="copyr"><strong>La Bastide de Lerins</strong><BR>Mougins - Cote d\'Azur<BR></A><A HREF="index.htm" class="copyr"><img src="bastide_lerins_small.jpg" alt="La Bastide de Lerins" border="0" height="67" width="100"></A>'
		  GEvent.addListener(marker, "click", function() {  marker.openInfoWindowHtml(html);  });
		  map.addOverlay(marker);
		  
	  	  map.openInfoWindowHtml(point, html);
		  
		  }
 		else {
   		  alert("Désolé, votre navigateur n'aime pas Google Maps !");
     		}
  		  }
//-->		  
