我已设法使用GLGeocoder geocodeAddressString
从他们的名字中检索了这2个城市坐标后,我想计算它们之间的距离。但是我遇到的问题是CLLocationDistance
在geocodeAddressString
之前运行。
我如何确保距离仅在城市位置之后计算?
请参阅下面的代码:
__block CLLocation *depLocation;
__block CLLocation *arrLocation;
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString:@"Birmingham" completionHandler:^(NSArray* placemarks, NSError* error){
for (CLPlacemark* aPlacemark in placemarks)
{
depLocation = [[CLLocation alloc]
initWithLatitude:aPlacemark.location.coordinate.latitude
longitude:aPlacemark.location.coordinate.longitude];
}
}];
CLGeocoder *geocoder2 = [[CLGeocoder alloc] init];
[geocoder2 geocodeAddressString:@"Amritsar" completionHandler:^(NSArray* placemarks2, NSError* error){
for (CLPlacemark* aPlacemark2 in placemarks2)
{
arrLocation = [[CLLocation alloc]
initWithLatitude:aPlacemark2.location.coordinate.latitude
longitude:aPlacemark2.location.coordinate.longitude];
}
}];
CLLocationDistance distanceXYZ = [depLocation distanceFromLocation:arrLocation];
NSString *distanceLabel = [NSString stringWithFormat:@"Distance to point %4.0f m.", distanceXYZ];
答案 0 :(得分:1)
简单的答案是嵌套所有完成块。复制所有geoCoder2
内容并将其放入geocoder
完成区块,然后将distanceXYZ
和distanceLabel
复制到geocoder2
的完成区