我需要在当前位置的任何方向上获取最近 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)));
}
我不知道天气是否正确,请帮助我。