summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLMapCamera.mm
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLMapCamera.mm')
-rw-r--r--platform/darwin/src/MGLMapCamera.mm22
1 files changed, 11 insertions, 11 deletions
diff --git a/platform/darwin/src/MGLMapCamera.mm b/platform/darwin/src/MGLMapCamera.mm
index 968b64ad17..62f7931641 100644
--- a/platform/darwin/src/MGLMapCamera.mm
+++ b/platform/darwin/src/MGLMapCamera.mm
@@ -1,7 +1,9 @@
#import "MGLMapCamera.h"
#import "MGLGeometry_Private.h"
-#include <mbgl/util/projection.hpp>
+#import <CoreLocation/CoreLocation.h>
+
+#include <mbgl/math/wrap.hpp>
BOOL MGLEqualFloatWithAccuracy(CGFloat left, CGFloat right, CGFloat accuracy)
{
@@ -27,17 +29,15 @@ BOOL MGLEqualFloatWithAccuracy(CGFloat left, CGFloat right, CGFloat accuracy)
CLLocationDirection heading = -1;
CGFloat pitch = -1;
if (CLLocationCoordinate2DIsValid(centerCoordinate) && CLLocationCoordinate2DIsValid(eyeCoordinate)) {
- mbgl::LatLng centerLatLng = MGLLatLngFromLocationCoordinate2D(centerCoordinate);
- mbgl::LatLng eyeLatLng = MGLLatLngFromLocationCoordinate2D(eyeCoordinate);
-
- mbgl::ProjectedMeters centerMeters = mbgl::Projection::projectedMetersForLatLng(centerLatLng);
- mbgl::ProjectedMeters eyeMeters = mbgl::Projection::projectedMetersForLatLng(eyeLatLng);
- heading = std::atan((centerMeters.northing() - eyeMeters.northing()) /
- (centerMeters.easting() - eyeMeters.easting()));
+ heading = MGLDirectionBetweenCoordinates(eyeCoordinate, centerCoordinate);
- double groundDistance = std::hypot(centerMeters.northing() - eyeMeters.northing(),
- centerMeters.easting() - eyeMeters.easting());
- pitch = std::atan(eyeAltitude / groundDistance);
+ CLLocation *centerLocation = [[CLLocation alloc] initWithLatitude:centerCoordinate.latitude
+ longitude:centerCoordinate.longitude];
+ CLLocation *eyeLocation = [[CLLocation alloc] initWithLatitude:eyeCoordinate.latitude
+ longitude:eyeCoordinate.longitude];
+ CLLocationDistance groundDistance = [eyeLocation distanceFromLocation:centerLocation];
+ CGFloat radianPitch = atan2(eyeAltitude, groundDistance);
+ pitch = mbgl::util::wrap(90 - MGLDegreesFromRadians(radianPitch), 0.0, 360.0);
}
return [[self alloc] initWithCenterCoordinate:centerCoordinate