On Nov 19, 1:22 pm, xelawho <[email protected]> wrote: > > ok, so I figured out that I had to take out the < > around the points, > and I'm back to square one - weird abstract shapes, but at least > shapes in Chrome and FF. And still with IE pulling up an xml error.
The weird shapes may be due to \\ appearing where you only need a single \ If you code a literal string, a="asd\n", Javascript uses \ to make that \n (newline, ASCII character 10), so if you want a real backslash you need to use \\ : a="asd\\n". That's a string of five characters, a s d backslash n. If you're not doing that, but *reading in* a string of characters from elsewhere, either XML or an HTML textbox for example, you don't need to escape the backslashes, they are all real backslashes. My IE7 doesn't object to your XML. Make sure you have cleared you cache, or use a cache-busting parameter like http://www.xelawho.com/map/allzonesencoded.xml?1 -- vary that number each time you request a changed file. -- 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.
