We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to limit the search to include both US and CA.
<GooglePlacesAutocomplete placeholder='Enter Location' fetchDetails={true} onPress={(data, details) => { // 'details' is provided when fetchDetails = true }} query={{ key: "MY_API_KEY", language: 'en' **//components: { country: ["us", "ca"] } --> doesn't work** components: 'country:us', }} />
Library Version: 2.5.6
React Native Version: 0.72.4
[x ] iOS
[x ] Android
Web
[x ] I am using expo
The text was updated successfully, but these errors were encountered:
You can use as below components: 'country:us|country:ca'
components: 'country:us|country:ca'
But
Currently, you can use componentRestrictions to filter by up to 5 countries (from google)
Sorry, something went wrong.
No branches or pull requests
Describe the problem
I want to limit the search to include both US and CA.
Reproduction - (required - issue will be closed without this)
Click to expand!
Additional context
Library Version: 2.5.6
React Native Version: 0.72.4
[x ] iOS
[x ] Android
Web
[x ] I am using expo
The text was updated successfully, but these errors were encountered: