For that many tabs, you'd need to consider using a non-Google tabbing solution. There are lots of Javascript tab systems out there. Unfortunately, all the free and easy-to-use ones that I've looked at have problems with Google infowindows. Either they don't like the fact that the target <div> inside the infowindow doesn't exist when the tab software loads, or they just look really ugly when displayed inside a Google infowindow.
Other than that, you may need to look at a non-tab solution. For example, you could use a non-tabbed infowindow with a series of buttons. Clicking button-8 could trigger a custom Event, by making a call to GEvent.trigger(marker,"Click8"). Set up listeners for the custom Events in the same way as you would for a "click" event, but with each one creating a different page of infowindow contents. Or use GEvent.trigger(marker,"Click",8) and have your "Click" listener produce the relevant content page for that parameter. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
