We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Not have a method for adding Polygon constraint, to check if one geoPoint exist in Polygon.
Similar exist in Android - wherePolygonContains
Create a new constraint to check if Polygon contains the geopoint
1- Get a real location of customer 2 - You need to check which city the customer is in 3 - In you database have Cities Polygons , and you can check what is the city of customer with this constraint
QueryBuilder query = QueryBuilder<ParseObject>(ParseObject('SCHEMA')); query.queries.add(MapEntry<String, dynamic>('SINGLE_QUERY', '"ColumnName":{ "$geoIntersects":{ "$point":{ "__type":"GeoPoint", "latitude":$lat, "longitude":$lng } } }' ));
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
wherePolygonContains
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
New Feature / Enhancement Checklist
Current Limitation
Not have a method for adding Polygon constraint, to check if one geoPoint exist in Polygon.
Similar exist in Android - wherePolygonContains
Feature / Enhancement Description
Create a new constraint to check if Polygon contains the geopoint
Example Use Case
1- Get a real location of customer
2 - You need to check which city the customer is in
3 - In you database have Cities Polygons , and you can check what is the city of customer with this constraint
Alternatives / Workarounds
The text was updated successfully, but these errors were encountered: