whereWithinGeoBox method

LCQuery<T> whereWithinGeoBox(
  1. String key,
  2. LCGeoPoint southwest,
  3. LCGeoPoint northeast
)

Implementation

LCQuery<T> whereWithinGeoBox(
    String key, LCGeoPoint southwest, LCGeoPoint northeast) {
  condition.whereWithinGeoBox(key, southwest, northeast);
  return this;
}