找到最近的CLLocation

时间:2013-07-27 01:10:23

标签: iphone ios cllocationmanager cllocation currentlocation

如何找到距离用户最近的位置?基本上,我有一堆CLLocation,我想找到最接近用户的那个。我已检索到用户当前位置,但我想找到最接近的CLLocation。我该怎么做呢?你可以NSLog最近的。

1 个答案:

答案 0 :(得分:6)

CLLocation *currentLocation;
NSArray *otherLocations;

CLLocation *closestLocation;
CLLocationDistance closestDistance = DBL_MAX;

for (CLLocation* location in otherLocations) {
    CLLocationDistance distance = [currentLocation distanceFromLocation:location];
    if (distance < closestDistance) {
        closestLocation = location;
        closestDistance = distance;
    }
}
NSLog(@"the closest location is %@", closestLocation);