現在の場所から任意の方向に最も近い 100 メートルの場所の緯度と経度の値を取得する必要があります。これが私のコードです。
CLLocationCoordinate2D annotationCenter;
double ms = 100;
double scalingFactor = ABS( (cos(2 * M_PI * currentLocationCoordinates.latitude / 360.0) ));
if ([misson.location.latitude doubleValue] == 0.0 && [mission.location.longitude doubleValue] == 0.0) {
annotationCenter.latitude = currentLocationCoordinates.latitude+(ms/103.5*1000);
annotationCenter.longitude = currentLocationCoordinates.longitude+(ms/(scalingFactor * (103.5*1000)));
}
天気が正しいかどうかわかりません。助けてください。