<!--


function load() 
  { if (GBrowserIsCompatible())
    {	var map = new GMap2(document.getElementById("divmap"));
	map.enableContinuousZoom(); map.enableScrollWheelZoom();
	map.setCenter(new GLatLng(48.2975, 4.07444), 13); //Troyes
	map.addControl(new GLargeMapControl()); // Zoom
	map.addControl(new GMapTypeControl()); //Affiche Carte/satellite/mixte
	map.setMapType( G_SATELLITE_MAP ) ; 
	map.addControl(new GScaleControl()); //Affiche Echelle
	//Ajoute trois marqueurs
	var marqueur1 = new GMarker(new GLatLng(48.30445,  4.06146,  true), {draggable: false});
	marqueur1.getIcon().image = "http://labs.google.com/ridefinder/images/mm_20_green.png";
	GEvent.addListener(marqueur1, "mouseover",  function() {
		marqueur1.openInfoWindowHtml("<p style=\"font-family:Arial;\"><b>Lyc&eacute;e Marie de Champagne</b><br>" + 
		"2 av. Marie de Champagne<br><br><table><tr><td><i>Latitude</i></td><td>48&ordm;18'16''</td></tr>" + 
		"<tr><td><i>Longitude</i></td><td style=\"text-align:right;\">&nbsp;4&ordm;03'41''</td></tr></table></p>");
	} ) ;
	map.addOverlay( marqueur1 );
	var marqueur2 = new GMarker(new GLatLng(48.26975,  4.07780,  true), {draggable: false});
	marqueur2.getIcon().image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
	GEvent.addListener(marqueur2, "mouseover",  function() {
		marqueur2.openInfoWindowHtml("<p style=\"font-family:Arial;\"><b>Lyc&eacute;e Chrestien de Troyes</b><br>" + 
		"rue J-J. Khim<br><br><table><tr><td><i>Latitude</i></td><td>48&ordm;16'11''</td></tr>" + 
		"<tr><td><i>Longitude</i></td><td style=\"text-align:right;\">&nbsp;4&ordm;04'40''</td></tr></table></p>");
	} ) ;
	map.addOverlay(marqueur2 );
	var marqueur3 = new GMarker(new GLatLng(48.27490,  4.07220,  true), {draggable: false});
	marqueur3.getIcon().image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	GEvent.addListener(marqueur3, "mouseover",  function() {
		marqueur3.openInfoWindowHtml("<p style=\"font-family:Arial;\"><b>Lyc&eacute;e Les Lombards</b><br>" + 
		"12 av. des Lombards<br><br><table><tr><td><i>Latitude</i></td><td>48&ordm;16'29''</td></tr>" + 
		"<tr><td><i>Longitude</i></td><td style=\"text-align:right;\">&nbsp;4&ordm;04'19''</td></tr></table></p>");
	} ) ;
	map.addOverlay(marqueur3 );
    }
  }


//-->

