私は2つの位置の緯度と経度を持っています。
この2つの位置の間の距離はすでにわかっています。
CLLocation *locA = [[CLLocation alloc] initWithLatitude:[player.strLatitude floatValue] longitude:[player.strLongitude floatValue]];
CLLocation *locB = [[CLLocation alloc] initWithLatitude:app.lat longitude:app.lag];
CLLocationDistance distance = [locB distanceFromLocation:locA];
NSLog(@"Distance%f",distance);
[locA release]; [locB release];
今、私はこの2つの位置の間の角度を見つけたい.
中央には 1 つのユーザーの位置があり、その Cicle 内の他のユーザーの位置を適切な角度で表示したいと考えています。
手伝ってくれてありがとう。