使用iphone中的谷歌地图计算两个位置之间的距离

时间:2011-09-26 07:02:25

标签: iphone objective-c google-maps

我只想计算两个位置之间的距离。 在哪个用户可以输入位置的地址,并从该地址我想要计算它们之间的距离。

是否可以使用这些地址计算CLLocation的距离?

1 个答案:

答案 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];