[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:
Kiryl Kaveryn 2024-08-15 21:09:49 +04:00 committed by Alexander Borsuk
parent 747b3553fb
commit f48ed054e4
2 changed files with 7 additions and 0 deletions

View file

@ -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;

View file

@ -368,6 +368,12 @@ void setShowLocationAlert(BOOL needShow) {
}
}
+ (void)checkLocationStatus
{
setShowLocationAlert(YES);
[self.manager processLocationStatus:self.manager.lastLocationStatus];
}
#pragma mark - Prediction
- (MWMLocationPredictor *)predictor