Thanks this helps me too... The only thing that's confuding me is hoe to implement multi-tabbed infowindows when using KML files and GGeoXml. Does anybody know the best method to retreive/configure the Description text?
Thanks, Barton. On Jul 31, 2:59 am, Mike Williams <[email protected]> wrote: > If you dare to use undocumented features, you can catch the > "infowindowprepareopen" event and edit the array of GInfoWindowTab > objects that it returns. > > GEvent.addListener(map,"infowindowprepareopen", function(iwtabs) { > iwtabs[0].name="First"; > iwtabs[1] = new GInfoWindowTab("Second", > "<br>This is the second tab</br>"); > iwtabs[2] = new GInfoWindowTab("Third", > "<br>This is the third tab</br>"); > > }); > > Or you could use GeoXml or EGeoXml and write your own {createmarker} > helper function. > > -- > Mike Williamshttp://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 -~----------~----~----~----~------~----~------~--~---
