這是一種計算從一個CLLocation到另一個CLLocation的角度(弧度)的有效方法嗎?計算2個CLLocations之間角度的有效方法?
-(float)angleFromLocation:(CLLocationCoordinate2D)start toLocation:(CLLocationCoordinate2D)end {
float deltaX = start.latitude - end.latitude;
float deltaY = start.longitude - end.longitude;
float ang = atan2(deltaY, deltaX);
return ang;}
請指教!
任何幫助將不勝感激。
你已經很接近了。看看這個答案的解決方案 - http://stackoverflow.com/questions/6140045/how-to-get-degree-of-poi-from-another-poi – olo