2016-09-15 12 views
0

私はgoogle apiを使用して描画したポリラインの原点緯度と目的地緯度の距離を求めていました。Google Maps上のポリラインポイントの長距離緯度から長距離緯度をどのように計算することができますか?

CLLocation *sourceLocation = [[CLLocation alloc]initWithLatitude:sourceCoordinate.latitude longitude:sourceCoordinate.longitude]; 

CLLocation *destinationLocation = [[CLLocation alloc]initWithLatitude:destinationCoordinate.latitude longitude:destinationCoordinate.longitude]; 

と、このメソッドに渡すよう

+0

の可能性のある重複[客観Cで二つの座標の距離を算出する方法?](http://stackoverflow.com/questions/1980898/how-to-calculate-two-coordinates-distance-in-objective- c) –

答えて

0

フォームCLLocationオブジェクト。

-(CLLocationDistance)getDistanceFromSource:(CLLocation*)source andDestination:(CLLocation*)destination { 
    CLLocationDistance distance = [source distanceFromLocation:destination]; 
    return distance; 
} 
関連する問題