Uses of Class
com.parse.ParseGeoPoint

Uses of ParseGeoPoint in com.parse
 

Methods in com.parse that return ParseGeoPoint
 ParseGeoPoint ParseObject.getParseGeoPoint(String key)
          Access a ParseGeoPoint value.
 

Methods in com.parse with parameters of type ParseGeoPoint
 double ParseGeoPoint.distanceInKilometersTo(ParseGeoPoint point)
          Get distance between this point and another geopoint in kilometers.
 double ParseGeoPoint.distanceInMilesTo(ParseGeoPoint point)
          Get distance between this point and another geopoint in kilometers.
 double ParseGeoPoint.distanceInRadiansTo(ParseGeoPoint point)
          Get distance in radians between this point and another GeoPoint.
 ParseQuery ParseQuery.whereNear(String key, ParseGeoPoint point)
          Add a proximity based constraint for finding objects with key point values near the point given.
 ParseQuery ParseQuery.whereWithinGeoBox(String key, ParseGeoPoint southwest, ParseGeoPoint northeast)
          Add a constraint to the query that requires a particular key's coordinates be contained within a given rectangular geographic bounding box.
 ParseQuery ParseQuery.whereWithinKilometers(String key, ParseGeoPoint point, double maxDistance)
          Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.
 ParseQuery ParseQuery.whereWithinMiles(String key, ParseGeoPoint point, double maxDistance)
          Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.
 ParseQuery ParseQuery.whereWithinRadians(String key, ParseGeoPoint point, double maxDistance)
          Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.