Skip to content Skip to sidebar Skip to footer

Google Map Apis : Uk Specific Results

I'm developing a map application in Android. I'm using Google maps API to show results in Autocomplete textview dropdown .The results this API is returning is of the places of the

Solution 1:

There's no way to force the API to restrict it's results to a region like you can in some of the other Google Maps Web Service APIs. If you really need that functionality then maybe you should be using the Geocoding API or the Places Autocomplete API as included in the Google Maps JS V3 API.

If you can't use either of those two suggestions your options are limited to:

  1. You can use the location / radius parameters like you found, but there are treated as more like "suggestions" than absolutes.

  2. I'd try setting the language parameter to en-GB which might favor UK-based results slightly over others.

Post a Comment for "Google Map Apis : Uk Specific Results"