> but what I can't figure now is how the syntax would go to get the span
> info in there... I assume it's something like
> map.openInfoWindowTabsHtml(pts,<span class='iwstyle'>shape.tabs</
> span>, {maxWidth: '300'})Syntax is covered in the docs http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GMap2.openInfoWindowTabsHtml second argument is expected to be a array of GInfoWindowTab objects. Your working code constructs tab objects and pushes them onto an array like this tabs.push(new GInfoWindowTab(tabLabel,tabHtml)); If you want to change the content of the tabs object you'll want to change what 'tabHtml' is before you create the tab object. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
