On Aug 26, 6:21 am, Ben Shillito <[email protected]> wrote: > I've created a customised google map using this website; > > http://econym.org.uk/gmap/basic3.htm > > I then converted it to API v3 using this example; > > http://www.geocodezip.com/v3_MW_example_map3.html > > However on the initial tutorial by Mike Williams he offered a way of > using an <infowindow> tag inside the xml which allowed for html > content for the infowindow, to achieve this I had to include the line; > > var html = GXml.value(markers[i].getElementsByTagName("infowindow") > [0]); > > However, now i've translated all the code to v3 this no longer > works... Can anyone suggest a way to fix this issue?
There is no GXml.value in v3. You will need to code that functionality yourself. I have a version I use at http://www.geocodezip.com/scripts/GXml.js which I created during a brief period where that function was accidentally removed from v2. -- Larry > > Thanks!!! -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
