Google maps ouvrir la fenêtre d'information par défaut?

L'exemple suivant montre un simple Marqueur (icône standard) sur Google maps pour la localisation et en cliquant sur l'icône, il ouvre la fenêtre d'informations. Puis-je afficher la fenêtre d'informations ouvert par défaut, de sorte que je n'ai pas besoin de cliquer sur l'icône pour ouvrir?

var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
    var myOptions = {
    zoom: 4,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var contentString = '<div id="content">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<h2 id="firstHeading" class="firstHeading">Uluru</h2>'+
        '</div>';

    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title:"Uluru (Ayers Rock)"
    });

    google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map,marker);
    });
InformationsquelleAutor Billa | 2011-11-23