On Jun 14, 8:02 pm, Lee <[email protected]> wrote: > > I have some markers that retrieve data from an xml file. The marker > when clicked gathers a name element from the xml, but on page load > when I first click the marker (OK second time) I get: name undefined > in the info window.
You're doing this: marker.openMaxContentTabsHtml(html); and the openMaxContentTabsHtml method is expecting something else: (map, minHtml, summaryHtml, tabs, opt_maxOptions) See tabbedmaxcontent.js line 420 for details of how use the method. Because it does more than just open an infoWindow, it's not a simple replacement for marker.openInfoWindow(). -- 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.
