i had trouble trying retrieve user based on search distance, , have received great support community. code boiled down following: let userlocation = pfgeopoint(latitude: userlatitude, longitude: userlongitude) query.wherekey("location", neargeopoint:userlocation, withinkilometers: 100) the issue code tailored swift/xcode, , when tried "converting to" android came down to query.wherewithinkilometers("location", parsegeopoint point, 100); i not sure if proper way of writing in java (android), , not sure parsegeopoint point. i have looked https://parse.com/docs/android/api/com/parse/parsegeopoint.html , bit stuck. if need clarification, let me know. thanks update: below how store location point of current user parse @override public void onlocationchanged(location loc) { // todo auto-generated method stub double lati = loc.getlatitude(); double longi = loc.getlongitude(); parseuser c...