使用我附近的 GeoPoints 填充 ListView

Populate a ListView with GeoPoints near me

我在 Parse.com 有一个 table,里面装满了地址。
每行包含地址名称和 GeoPoint(纬度和经度)。

我想做两件事:
1. 用我的 table(姓名和地址)中的数据填充一个 ListView,但不超过例如 500 米的地方;
2. 将 GeoPoint 转换为地址(街道、城市),因此每个 ListView 项目将显示如下:
地址名称
街道(带有房屋编号),城市。

你能帮帮我吗?

我找到了第一个问题的答案。我已经在 doInBackground 方法的 activity AsyncTask 中添加了该代码。
使用 this 指南,连同

query.whereWithinKilometers("Location", geoPoint, 1.5);