/* [listing 2-6] */
var centerLatitude = 48.704550;
var centerLongitude = -4.026049;
var description = '123 Rue de Kerabret, 29250 Santec, France';

var startZoom = 13;
var map;

function addMarker(latitude, longitude, description) {
    var marker = new GMarker(new GLatLng(latitude, longitude));

    GEvent.addListener(marker, 'click',
        function() {
            marker.openInfoWindowHtml(description);
        }
    );

    map.addOverlay(marker);
}

function init() {
    if (GBrowserIsCompatible()) {	
        map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);
		map.setUIToDefault();
		map.setMapType(G_SATELLITE_MAP);
        addMarker(centerLatitude, centerLongitude, description);
    }
}

window.onload = init;
window.onunload = GUnload;
/* [listing 2-6 end] */
