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 am using bounds like:
import Geosuggest from 'react-geosuggest'; //... <Geosuggest ref={geoSuggestEl} placeholder="placeholder" onSuggestSelect={onSuggestSelect} autoComplete="off" autoActivateFirstSuggest={true} country="de" ignoreEnter={false} bounds={bounds} />
where bounds defined as:
const southwest = new google.maps.LatLng(47.270111, 9.530952); const northeast = new google.maps.LatLng(50.558835, 13.835972); const bounds = new google.maps.LatLngBounds(southwest, northeast);
I expected that by providing the boundary (bavaria), I am just getting suggestions within these boundary.
Instead of just getting suggestions within these boundary, I also get e.g. "New York" in my suggestions, shouldn't this be filtered out?
The text was updated successfully, but these errors were encountered:
Hi @bayerlse! I had a look at your issue, but couldn't reproduce it. With all the information you gave here, I get the following suggestions:
There's no "New York" in the list.
Can you provide a more detailed example or link to a code playground to see this issue in action?
Sorry, something went wrong.
No branches or pull requests
Short description
I am using bounds like:
where bounds defined as:
Expected results
I expected that by providing the boundary (bavaria), I am just getting suggestions within these
boundary.
Actual results
Instead of just getting suggestions within these boundary, I also get e.g. "New York" in my suggestions, shouldn't this be filtered out?
Reproduction steps
The text was updated successfully, but these errors were encountered: