whereWithinRadians method

LCQuery<T> whereWithinRadians(
  1. String key,
  2. LCGeoPoint point,
  3. double maxDistance
)

Implementation

LCQuery<T> whereWithinRadians(
    String key, LCGeoPoint point, double maxDistance) {
  condition.whereWithinRadians(key, point, maxDistance);
  return this;
}