我只想计算两个位置之间的距离。 在哪个用户可以输入位置的地址,并从该地址我想要计算它们之间的距离。
是否可以使用这些地址计算CLLocation的距离?
答案 0 :(得分:7)
首先,您需要将地址地理编码为纬度/经度,然后您可以使用CLLocation框架来计算距离。 要对地址进行地理编码,您可以使用此forward geocoding API。
// get CLLocation fot both addresses
CLLocation *location = [[CLLocation alloc] initWithLatitude:address.latitude longitude:address.longitude];
// calculate distance between them
CLLocationDistance distance = [firstLocation distanceFromLocation:secondLocation];