This repository was archived by the owner on Feb 21, 2024. It is now read-only.
Allow search to be limited to particular countries#8
Open
icewhite wants to merge 3 commits into
Open
Conversation
Changes completed - allows list-of-countries attribute to be passed which should be an array of ISO 3166-1 Alpha-2 compatible country codes. E.g. [ "gb", "es" ] makes it only return results for UK and Spain.
aarondrabeck
suggested changes
Jan 6, 2018
| }); | ||
|
|
||
| /* Allows addresses to be limited to a particular country or list of countries */ | ||
| this.autocomplete.setComponentRestrictions({ |
Contributor
There was a problem hiding this comment.
Could we do this on an observer on limitToCountries so that you can change the list of countries on the fly?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I've made a change on my fork to allow the search to be limited to particular countries.
For example, setting limit-to-countries attribute to ["gb"] only searches for addresses in Great Britain. This capability of the maps API is documented here:
places-autocomplete-multiple-countries
Would you like to apply these changes to your component? (Sorry - Not sure of protocol here - this is my first pull request.)