On Sep 17, 11:08 pm, Emre Avsar <[email protected]> wrote: > Actually it isn't really a google maps problem, > i have now the same problem localy. > The great firefox can read the xml-data, but my IE makes problems...
I think the problem is character encoding, as is usual with IE-only issues in XML. In particular, loadData,php?i=1 produces <beschreibung>Polo Schweiz ist der gr?sste Shop f r Motorradfans</ beschreibung> <typ>Anh?ngervermietung (Polo)</typ> Even if the ? characters are produced as literal ? by the php, the word "fuer" will definitely cause problems. (Sorry, my English keyboard doesn't do accented characters easily) You need to encode high-end characters, and then double-encode them to ensure that any unsupported character entities don't cause a problem: <beschreibung>Polo Schweiz ist der gr&ouml;sste Shop f&uml;r Motorradfans</beschreibung> <typ>Anh&auml;ngervermietung (Polo)</typ> Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
