diff --git a/iphone/Maps/Core/Location/MWMLocationManager.h b/iphone/Maps/Core/Location/MWMLocationManager.h index f5e3f7c366..e662c47921 100644 --- a/iphone/Maps/Core/Location/MWMLocationManager.h +++ b/iphone/Maps/Core/Location/MWMLocationManager.h @@ -14,6 +14,7 @@ NS_SWIFT_NAME(LocationManager) + (void)removeObserver:(id)observer NS_SWIFT_NAME(remove(observer:)); + (void)setMyPositionMode:(MWMMyPositionMode)mode; ++ (void)checkLocationStatus; + (nullable CLLocation *)lastLocation; + (BOOL)isLocationProhibited; diff --git a/iphone/Maps/Core/Location/MWMLocationManager.mm b/iphone/Maps/Core/Location/MWMLocationManager.mm index 991aa6cd30..d97c6df339 100644 --- a/iphone/Maps/Core/Location/MWMLocationManager.mm +++ b/iphone/Maps/Core/Location/MWMLocationManager.mm @@ -368,6 +368,12 @@ void setShowLocationAlert(BOOL needShow) { } } ++ (void)checkLocationStatus +{ + setShowLocationAlert(YES); + [self.manager processLocationStatus:self.manager.lastLocationStatus]; +} + #pragma mark - Prediction - (MWMLocationPredictor *)predictor