> http://www.xelawho.com/map/zonessimple.htm > > Does anybody have any ideas?
When reading XML data, getAttribute() returns a string. getElementsByTagName() does not, it returns an XML element. If you would like the content of that element (in this case you would), you could look at the usage of the GXml.value() method http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GXml var levels = GXml.value ( zones[i].getElementsByTagName("levels") ) ; -- 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.
