whereNear method

void whereNear (String key, ParseGeoPoint point)

Add a proximity based constraint for finding objects with key point values near the point given.

Implementation

void whereNear(String key, ParseGeoPoint point) {
  _addCondition(key, "whereNear", point.toJson);
}