diff --git a/platform/ios/Integration Tests/MGLTestLocationManager.m b/platform/ios/Integration Tests/MGLTestLocationManager.m index f9a5a8650f..20e82c9d3a 100644 --- a/platform/ios/Integration Tests/MGLTestLocationManager.m +++ b/platform/ios/Integration Tests/MGLTestLocationManager.m @@ -41,4 +41,10 @@ - (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading - (BOOL)locationManagerShouldDisplayHeadingCalibration:(CLLocationManager *)manager { return NO; } +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 140000 +- (CLAccuracyAuthorization)accuracyAuthorization { + return CLAccuracyAuthorizationFullAccuracy; +} +#endif + @end