|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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. |
abstract void |
LocationCallback.done(ParseGeoPoint geoPoint,
ParseException e)
Override this function with the code you want to run after the location fetch is complete. |
ParseQuery<T> |
ParseQuery.whereNear(String key,
ParseGeoPoint point)
Add a proximity based constraint for finding objects with key point values near the point given. |
ParseQuery<T> |
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<T> |
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<T> |
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<T> |
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. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |