whereWithinKilometers method
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.
Radius of earth used is {@code 6371.0} kilometers.
Implementation
void whereWithinKilometers(
String key, ParseGeoPoint point, double maxDistance) {
whereWithinRadians(
key, point, maxDistance / ParseGeoPoint.EARTH_MEAN_RADIUS_KM);
}