> When using the IE script debugger, it goes into what looks like the
> google code is doing underneath.

Yup, its easier with Firebug.
In the previous version I'd spotted the 'odd' line and put a stop on
it and the line after, to step through and see which one triggered the
error.

Anyways, I think its breaking in the lines-from-XML routine -
   // read each point on that line
   var points = states[a].getAttribute("points");
   var levels = lines[a].getAttribute("levels");
...
It's re-using the points string from the 'states' XML previously used,
I think you meant
   var points = lines[a].getAttribute("points");

cheers, Ross K
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to