forked from organicmaps/organicmaps
Closed #388 - Automatic dismiss for compass calibration dialog
This commit is contained in:
parent
3f8bc6e7c5
commit
9f5c1a17d1
2 changed files with 13 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
BOOL m_isStarted;
|
||||
BOOL m_reportFirstUpdate;
|
||||
NSMutableSet * m_observers;
|
||||
BOOL m_isTimerActive;
|
||||
}
|
||||
|
||||
- (void)start:(id <LocationObserver>)observer;
|
||||
|
|
|
@ -135,9 +135,21 @@
|
|||
}
|
||||
}
|
||||
|
||||
- (void)onTimer:(NSTimer *)timer
|
||||
{
|
||||
[m_locationManager dismissHeadingCalibrationDisplay];
|
||||
m_isTimerActive = NO;
|
||||
}
|
||||
|
||||
// Display compass calibration dialog automatically
|
||||
- (BOOL)locationManagerShouldDisplayHeadingCalibration:(CLLocationManager *)manager
|
||||
{
|
||||
if (!m_isTimerActive)
|
||||
{
|
||||
[NSTimer scheduledTimerWithTimeInterval:2.5 target:self selector:@selector(onTimer:)
|
||||
userInfo:nil repeats:NO];
|
||||
m_isTimerActive = YES;
|
||||
}
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue