> How do i get the info windows to open without having to click them
> when creating the markers?
>
> I create the marker like so:
>
> var marker = new GMarker(point)
> GEvent.addLstener(marker,"click", function(){
> marker.openInfoWindowHtml('somehtmlinhere')})

Try this -

 var marker = new GMarker(point)
 GEvent.addLstener(marker,"click", function(){
 marker.openInfoWindowHtml('somehtmlinhere')})

 marker.openInfoWindowHtml('somehtmlinhere');

>
> gmarkers.push(marker)
>
> So, just open the info win by default, without clicking the marker?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to