On 10 October 2011 18:12, thindery <[email protected]> wrote: > > I'm currently working with the xml version, as it was the best tutorial I > could find for querying a database. But I am finding issues with IE and the > way it parse's xml. I'm also finding for some reason that the more nodes I > have the xml generate, the more likely the application doesn't work. Kind > of weird?
Not weird. The more nodes you have, the greater the opportunity to introduce an error. XML is the one instance where you *should* code for IE. IE's XML parsing is far more strict and standards-compliant than other browsers'. If you don't like XML, you could just write out JSON directly. You don't *have* to use a function to do it (just as there is an example for writing XML directly). There may be examples out there which will help with markers; I don't know of any. Searching might find something useful: http://www.google.co.uk/search?q=example+json_encode+php -- 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.
