0

我有一个 API,它返回一个城市内不同区域的列表以及该区域的天气。我想根据我当前的位置获取最近的区域。

API 返回

  • 区域
  • 纬度
  • 经度
  • 天气

如何根据这些数据找到最近的区域?

4

1 回答 1

6

您必须为所有区域创建 CLLocation 对象,并为用户的当前位置创建一个对象。然后使用类似于下面的循环来获取最近的位置:

NSArray *allLocations; // this array contains all CLLocation objects for the locations from the API you use

CLLocation *currentUserLocation;

CLLocation *closestLocation;
CLLocationDistance closestLocationDistance = -1;

for (CLLocation *location in allLocations) {

    if (!closestLocation) {
        closestLocation = location;
        closestLocationDistance = [currentUserLocation distanceFromLocation:location];
        continue;
    }

    CLLocationDistance currentDistance = [currentUserLocation distanceFromLocation:location];

    if (currentDistance < closestLocationDistance) {
        closestLocation = location;
        closestLocationDistance = currentDistance;
    }
}

需要注意的一点是,这种计算距离的方法使用 A 点和 B 点之间的直线。没有考虑道路或其他地理对象。

于 2012-08-19T15:25:38.763 回答