I followed the examples in following site,

http://code.google.com/apis/maps/documentation/geocoding/

So I expected following url would give me UK addresses. But it is still giving me US address. Any ideas?

http://maps.googleapis.com/maps/api/geocode/json?address=baker&sensor=false&region=gb

link|improve this question

62% accept rate
feedback

1 Answer

The "region" parameter will only make the region a preference not lock out all other results.

In this case it seems the address "Baker" doesn't even show up on Google Maps as a known location - only as businesses.

http://maps.google.co.uk/maps?q=baker&hl=en&sll=53.800651,-4.064941&sspn=18.336241,46.362305&t=h&z=5

I also Googled "Baker village', "baker town", etc but with no luck. I'm guessing that location is particularly obscure and so Google is returning what it considers the more likely results - in the US.

If you try another example like "Birmingham" which is in both the US and UK you'll notice it favours the UK due to the region tag setting:

http://maps.googleapis.com/maps/api/geocode/json?address=birmingham&sensor=false&region=uk

link|improve this answer
is there a way to get a list of street addresses from a google api? I have seen few applications where you give few letters of the address and it gives you list of street addresses. – Janaka Jul 29 '11 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.