I have a simple Google map v3 with only one marker with this code:
google.maps.event.addListener(myplaceMarker, 'click', function() {
infowindow.open(map,myplaceMarker);
With this code, info window opens when I click on the marker.
How can I make the info window show up automatically when the map loads on the page?
SOLVED:
I just needed to remove the first row.
Make the call to open the map outside of the listener, else it will be set to happen when the marker object is clicked.