angular2-google-place-autocomplete
angular2-google-place-autocomplete copied to clipboard
Is there a way to restrict the country using the directive ?
Is there a way to restrict the country using the directive ?
Yes, you need to modify GoogleplaceDirective
var country = ''
var options = {
componentRestrictions: {"country": country}
};
this.autocomplete = new google.maps.places.Autocomplete(input, options );
I will add and let release on my next version.