From 3982c2edebe34c1b9d0769b25f2f62fd93102ba9 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Tue, 9 Aug 2011 09:40:50 +0200 Subject: [PATCH] [ios] Closes #308 - Display compass calibration alert --- platform/apple_location_service.mm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform/apple_location_service.mm b/platform/apple_location_service.mm index ce65bc3b97..c083299fe3 100644 --- a/platform/apple_location_service.mm +++ b/platform/apple_location_service.mm @@ -180,6 +180,12 @@ public: } } +// Display compass calibration dialog automatically +- (BOOL)locationManagerShouldDisplayHeadingCalibration:(CLLocationManager *)manager +{ + return YES; +} + @end location::LocationService * CreateAppleLocationService()