How do we limit auto complete search box to a particular region/country?

You will need to perform javascript modification on the autocomplete. You can refer to the reference link and code below:

http://stackoverflow.com/questions/7179452/limiting-google-maps-autocomplete-to-uk-address-only

var input = document.getElementById('searchTextField');
var options = {
   types: ['(cities)'],
   componentRestrictions: {country: 'uk'} //UK only
};
var autocomplete = new google.maps.places.Autocomplete(input,options);

If you need further help, you can request our devs for customization by sending a message via our profile page here http://codecanyon.net/user/highwarden

8+

Users who have LIKED this post:

  • Sofia Moss
  • Melanie