I'm using Google's Geocoder to find lat lng coordinates for a given address.

    var geocoder = new google.maps.Geocoder();
    geocoder.geocode(
    {
        'address':  address,
        'region':   'uk'
    }, function(results, status) {
        if(status == google.maps.GeocoderStatus.OK) {
            lat: results[0].geometry.location.lat(),
            lng: results[0].geometry.location.lng()
    });

address variable is taken from an input field.

I want to search locations only in UK. I thought that specifying 'region': 'uk' should be enough but it's not. When I type in "Boston" it's finding Boston in US and I wanted the one in UK.

How to restrict Geocoder to return locations only from one country or maybe from a certain lat lng range?

Thanks

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

UPDATE: This answer may not be the best approach anymore. See the comments below the answer for more details.


In addition to what Pekka already suggested, you may want to concatenate ', UK' to your address, as in the following example:

<!DOCTYPE html>
<html> 
<head> 
   <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
   <title>Google Maps Geocoding only in UK Demo</title> 
   <script src="http://maps.google.com/maps/api/js?sensor=false" 
           type="text/javascript"></script> 
</head> 
<body> 
   <div id="map" style="width: 400px; height: 300px"></div> 

   <script type="text/javascript"> 

   var mapOptions = { 
      mapTypeId: google.maps.MapTypeId.TERRAIN,
      center: new google.maps.LatLng(54.00, -3.00),
      zoom: 5
   };

   var map = new google.maps.Map(document.getElementById("map"), mapOptions);
   var geocoder = new google.maps.Geocoder();

   var address = 'Boston';

   geocoder.geocode({
      'address': address + ', UK'
   }, 
   function(results, status) {
      if(status == google.maps.GeocoderStatus.OK) {
         new google.maps.Marker({
            position:results[0].geometry.location,
            map: map
         });
      }
   });

   </script> 
</body> 
</html>

Screenshot:

Geocoding only in UK

I find that this is very reliable. On the other hand, the following example shows that neither the region parameter, nor the bounds parameter, are having any effect in this case:

<!DOCTYPE html>
<html> 
<head> 
   <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
   <title>Google Maps Geocoding only in UK Demo with Bounds</title> 
   <script src="http://maps.google.com/maps/api/js?sensor=false" 
           type="text/javascript"></script> 
</head> 
<body> 
   <div id="map" style="width: 500px; height: 300px"></div> 

   <script type="text/javascript"> 

   var mapOptions = { 
      mapTypeId: google.maps.MapTypeId.TERRAIN,
      center: new google.maps.LatLng(50.00, -33.00),
      zoom: 3
   };

   var map = new google.maps.Map(document.getElementById("map"), mapOptions);   
   var geocoder = new google.maps.Geocoder();

   // Define north-east and south-west points of UK
   var ne = new google.maps.LatLng(60.00, 3.00);
   var sw = new google.maps.LatLng(49.00, -13.00);

   // Define bounding box for drawing
   var boundingBoxPoints = [
      ne, new google.maps.LatLng(ne.lat(), sw.lng()),
      sw, new google.maps.LatLng(sw.lat(), ne.lng()), ne
   ];

   // Draw bounding box on map    
   new google.maps.Polyline({
      path: boundingBoxPoints,
      strokeColor: '#FF0000',
      strokeOpacity: 1.0,
      strokeWeight: 2,
      map: map
   });

   // Geocode and place marker on map
   geocoder.geocode({
      'address': 'Boston',
      'region':  'uk',
      'bounds':  new google.maps.LatLngBounds(sw, ne)
   }, 
   function(results, status) {
      if(status == google.maps.GeocoderStatus.OK) {
         new google.maps.Marker({
            position:results[0].geometry.location,
            map: map
         });
      }
   });

   </script> 
</body> 
</html>

Evidence of the above:

Google Maps Geocoding only in UK Demo with Bounds

link|improve this answer
This is what I would call a "dirty fix" but I think I'll have to do that :/ – 6bytes Apr 15 '10 at 16:39
2  
@6bytes: It may be a hack, but I still have to find a case where it does not work. – Daniel Vassallo Apr 15 '10 at 16:43
2  
Great research @Daniel! – Pekka Apr 16 '10 at 7:47
1  
Quite a bug we've found here :) I hope Google knows about this and will fix it soon. – 6bytes Apr 16 '10 at 8:04
You might also want to post this in the public Google Maps API help forum at groups.google.com/group/google-maps-api/topics (if you haven't done so already :-)). – John Mueller Apr 16 '10 at 11:27
show 6 more comments
feedback

According to the docs, the region parameter seems to set a bias only (instead of a real limit to that region). I guess when the API doesn't find the exact address in the UK place, it will expand it search no matter what region you enter.

I've fared pretty well in the past with specifying the country code in the address (in addition to the region). I haven't had much experience with identical place names in different countries yet, though. Still, it's worth a shot. Try

'address': '78 Austin Street, Boston, UK'

it should return no address (Instead of the US Boston), and

'address': '78 Main Street, Boston, UK'

Should return the Boston in the UK because that actually has a Main Street.

Update:

How to restrict Geocoder to return locations only from one country or maybe from a certain lat lng range?

You can set a bounds parameter. See here

You would have to calculate a UK-sized rectangle for that, of course.

link|improve this answer
1  
Typing in "Boston" returns the one in US, typing in "Boston, UK" returns the one in UK. Why if I'm connecting from Europe a US based location is returned first? I can't force my users to type in country code :( – 6bytes Apr 15 '10 at 16:38
@Pekka, I tried geocoding 78 Austin Street, Boston, UK just for curiosity, but it returned some random 'Austin Avenue' close to Manchester. Google Maps Link: maps.google.com/… – Daniel Vassallo Apr 15 '10 at 16:41
@Daniel that's odd. I get a clear "address not found" when I type in that address in Google Maps. (A geocoding result should come with an extremely low accuracy value.) – Pekka Apr 15 '10 at 16:48
@6bytes: I think that in case of ambiguity, Google tends to select the most popular city (This was discussed on Stack Overflow once: it looks like it chooses the one with the biggest population). Obviously the region parameter should be returning the UK city, but apparently it is not reliable yet. The only reliable way I am aware of at the moment is to concatenate ', UK' to your address. If users add the country code and you add the UK part twice, it won't hurt either (even though you might want to check for that). – Daniel Vassallo Apr 15 '10 at 16:48
@Pekka: Yes in the public Google Maps (maps.google.com). But try it out with the example in my answer, using the Maps API. The Google Maps API and the public Google Maps seem to use different data sets sometimes. I've witnessed this a few times. In some places, even the imagery and the road maps are different. – Daniel Vassallo Apr 15 '10 at 16:50
show 6 more comments
feedback

The following code will get the first matching address in the UK without the need to modify the address.

  var geocoder = new google.maps.Geocoder();
  geocoder.geocode(
  {
    'address':  address,
    'region':   'uk'
  }, function(results, status) {
    if(status == google.maps.GeocoderStatus.OK) {
        for (var i=0; i<results.length; i++) {
            for (var j=0; j<results[i].address_components.length; j++) {
                for (var k=0; k<results[i].address_components[j].types.length; k++) {
                    if (results[i].address_components[j].short_name == "GB") {
                        lat = results[i].geometry.location.lat();
                        lng = results[i].geometry.location.lng();
                        ...
                        return;
                    }
                }
            }
        }
    });
link|improve this answer
I think you are the only person who has answered this in the way the api is intended to be used. Setting a bias as documented - but then actually checking the results to see if there is a preferred match. – Fraser Feb 27 at 9:30
+1 best answer. – Seybsen Apr 26 at 8:52
feedback

I found problems with putting ",UK", setting the region to UK and setting bounds. However, doing ALL THREE seems to fix it for me. Here's a snippet:-

var sw = new google.maps.LatLng(50.064192, -9.711914)
var ne = new google.maps.LatLng(61.015725, 3.691406)
var viewport = new google.maps.LatLngBounds(sw, ne);

geocoder.geocode({ 'address': postcode + ', UK', 'region': 'UK', "bounds": viewport }, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
.....etc.....
link|improve this answer
feedback

I tried with the following:

geocoder.geocode( {'address':request.term + ', USA'}

And its working for me for particular region (US country).

link|improve this answer
feedback

For the united kingdom, you have to use GB for region. UK is not the ISO country code!

link|improve this answer
Actually the docs explicitly say you have to use UK: code.google.com/apis/maps/documentation/geocoding/#RegionCodes (it uses ccTLD, not ISO 3166-1). – therefromhere Dec 1 '11 at 20:14
feedback

Your Answer

 
or
required, but never shown

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