On Oct 18, 6:55 am, bvdhaegen <[email protected]> wrote: > Dear BenB > > I have exactly the same problem as you. Trying to find a solution, but > just turning arround. > I went to your page and tried to understand your code. > It kind of worked, but since I have a customised icon, I'm loosing my > tabs of my infowindow. > So I tried to fix it, but no way. > It would be nice if you can have a look at my code. > Now it's loading your icons, but once it works, I'll install my icons. > Thanks for this.
It looks to me like your createMarker function used to do this: marker.openInfoWindowTabsHtml(infoTabs); the createMarker function you are currently using does this: marker.openInfoWindowHtml(html); Which doesn't create the tabs. Note that you are using the undocumented fact that .openInfoWindowHtml and .openInfoWindowTabs are the same under the covers, that might not always be the case. I would suggest calling .openInfoWindowTabs if you want tabbed infoWindows. -- Larry > Bernard > > The link:http://www.happycamel.com/gps-ico-notab.htm > > On Oct 13, 5:33 pm, BenB <[email protected]> > wrote: > > > Thanks Andrew! Can't believe it's as simple as that when I've been > > looking for ages! > > > Brilliant! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
