On Jan 9, 1:58 pm, David <[email protected]> wrote: > When using GEvent.trigger to open an infowindow (ie GEvent.trigger > (markers[i], "click"); is it possible to get it to open a specific tab?
Not directly. http://code.google.com/apis/maps/documentation/reference.html#GInfoWindow implies map.getInfoWindow().selectTab(t) where t is the number of the tab. t may start from zero. So you would need a function myclick(i,t) where you can pass both the marker number and the tab you want selected, and then select the tab after opening the infoWindow. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
