forked from organicmaps/organicmaps
[ios] add checkLocationStatus to the LocationManager
To check location availability on start track recording Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
747b3553fb
commit
f48ed054e4
2 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,7 @@ NS_SWIFT_NAME(LocationManager)
|
|||
+ (void)removeObserver:(id<MWMLocationObserver>)observer NS_SWIFT_NAME(remove(observer:));
|
||||
|
||||
+ (void)setMyPositionMode:(MWMMyPositionMode)mode;
|
||||
+ (void)checkLocationStatus;
|
||||
|
||||
+ (nullable CLLocation *)lastLocation;
|
||||
+ (BOOL)isLocationProhibited;
|
||||
|
|
|
@ -368,6 +368,12 @@ void setShowLocationAlert(BOOL needShow) {
|
|||
}
|
||||
}
|
||||
|
||||
+ (void)checkLocationStatus
|
||||
{
|
||||
setShowLocationAlert(YES);
|
||||
[self.manager processLocationStatus:self.manager.lastLocationStatus];
|
||||
}
|
||||
|
||||
#pragma mark - Prediction
|
||||
|
||||
- (MWMLocationPredictor *)predictor
|
||||
|
|
Loading…
Add table
Reference in a new issue