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
When the map view is zoomed far out, ML will respond with zero search results (every map zoom/pan makes a search request).
The bounding box being passed is based on the current map viewport, which in said state can go beyond the values of 90°/180°:
{ "geospatial-constraint-query": { "constraint-name": "Location", "box": [ { "south": -153.31842955933732, "west": -263.51118227807473, "north": 196.83694800929285, "east": 282.62983484645946 } ] } }
Check and limit the viewport values before making the request to avoid this issue.
The text was updated successfully, but these errors were encountered:
mfgumban
No branches or pull requests
When the map view is zoomed far out, ML will respond with zero search results (every map zoom/pan makes a search request).
The bounding box being passed is based on the current map viewport, which in said state can go beyond the values of 90°/180°:
Check and limit the viewport values before making the request to avoid this issue.
The text was updated successfully, but these errors were encountered: