On Sep 9, 3:21 pm, shredder <[EMAIL PROTECTED]> wrote: > The script works fine with the original addresses from the tutorial, > but not with my german addresses. So I think it's no access problem, > because it's not with the american addresses.
In that case I agree with Barry: it's an encoding issue. I guess your German addresses include words like straße with an encoded character. Google outputs UTF8 encoding by default, and it's possible that your implementation of PHP can't cope with it: try adding &oe=iso-8859-1, or another encoding standard, to your query. (This won't change the ? xml preamble, which will still show utf-8, but the code itself does use the specified encoding) 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 -~----------~----~----~----~------~----~------~--~---
