When using google geocoding api v3 I have a some full and valid addresses that contain US state names as either part of the house name or street name. Google interprets this as being in the US, even though the full address including country is included.

eg (it is a ficticious address, as I cannot publish real customer details, but the principle is the same). New York Farm Main Street St Hellier JE1 1AA JERSEY

http://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address=New%20York%20Farm%2cMain%20Street%2cSt%20Hellier+%2c%2cJE1+1AA%2cJERSEY

If I either miss out the 'New York Farm' line, or add 'UK' to the end then the correct geocoding is returned. But obviously this is difficult to do automatically (especially as Jersey is not in the UK) and I have a lot of addresses with presumably other similar cases. If I pass in a region parameter it still has the same problem.

Is there a way I can 'force' the country?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can use "region biasing" or "viewport biasing" - both should give you results that are more relevant to the specified area. You probably want region biasing - they even give this example:

You can set the Geocoding API to return results biased to a particular region using the region parameter. This parameter takes a ccTLD (country code top-level domain) argument specifying the region bias. Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions. For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb" (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland").

Indeed, adding &region=uk to your query makes it return the appropriate place.

link|improve this answer
Thanks. But Jersey (Channel Islands) is not in the UK, so when I automate this and add the ISO 3166 code based on a user selected country dropdown list I add '&region=JE' - which still gives me a US location. maps.googleapis.com/maps/api/geocode/… – simon831 Jun 1 '11 at 12:35
feedback

Your Answer

 
or
required, but never shown

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