Looking for a way to filter autofill results filtered by two countries, Canada and the USA.
Currently, I can only filter one or the other with parameters like this ...
var options = { types: ['(cities)'], componentRestrictions: {country: 'us'} } var autocomplete = new google.maps.places.Autocomplete(input,options);
... but I have not seen any documentation that explains how to limit autocomplete results to two countries.
Any help is appreciated.
source share