1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(position-x,position-y), zoom);
// Position du marqueur sur le plan
var marker = new GMarker(new GLatLng(position-x,position-y));
map.addOverlay(marker);
// Afficher renseignement au click sur le marqueur
GEvent.addListener(marker, "click", function() {
var content = "<h3>Titire</h3><p>Contenu</p>";
marker.openInfoWindowHtml(content);})
}
}
//]]>
</script> |