whereWithinMiles method

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

Implementation

LCQuery<T> whereWithinMiles(
    String key, LCGeoPoint point, double maxDistance) {
  return whereWithinRadians(key, point, maxDistance / 3958.8);
}