forked from organicmaps/organicmaps
[ios] Improved location mode
This commit is contained in:
parent
6ba450ee9a
commit
4e6ca0ec96
5 changed files with 30 additions and 32 deletions
|
@ -532,6 +532,9 @@ extension CarPlayService: LocationModeListener {
|
|||
break
|
||||
}
|
||||
}
|
||||
|
||||
func processMyPositionPendingTimeout() {
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Alerts and Trip Previews
|
||||
|
|
|
@ -52,10 +52,6 @@ NSString * const kEditorSegue = @"Map2EditorSegue";
|
|||
NSString * const kUDViralAlertWasShown = @"ViralAlertWasShown";
|
||||
NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing";
|
||||
NSString * const kHotelFacilitiesSegue = @"Map2FacilitiesSegue";
|
||||
|
||||
// The first launch after process started. Used to skip "Not follow, no position" state and to run
|
||||
// locator.
|
||||
BOOL gIsFirstMyPositionMode = YES;
|
||||
} // namespace
|
||||
|
||||
@interface NSValueWrapper : NSObject
|
||||
|
@ -269,8 +265,7 @@ BOOL gIsFirstMyPositionMode = YES;
|
|||
[MWMRouter restoreRouteIfNeeded];
|
||||
|
||||
self.view.clipsToBounds = YES;
|
||||
self.currentPositionMode = MWMMyPositionModePendingPosition;
|
||||
[self processMyPositionStateModeEvent:self.currentPositionMode];
|
||||
[self processMyPositionStateModeEvent:MWMMyPositionModePendingPosition];
|
||||
[MWMKeyboard addObserver:self];
|
||||
self.welcomePageController = [MWMWelcomePageController controllerWithParent:self];
|
||||
if ([MWMNavigationDashboardManager manager].state == MWMNavigationDashboardStateHidden)
|
||||
|
@ -390,6 +385,9 @@ BOOL gIsFirstMyPositionMode = YES;
|
|||
// May be better solution would be multiobservers support in the C++ core.
|
||||
[self processMyPositionStateModeEvent:location_helpers::mwmMyPositionMode(mode)];
|
||||
});
|
||||
f.SetMyPositionPendingTimeoutListener([self]{
|
||||
[self processMyPositionPendingTimeout];
|
||||
});
|
||||
|
||||
self.userTouchesAction = UserTouchesActionNone;
|
||||
[[MWMBookmarksManager sharedManager] loadBookmarks];
|
||||
|
@ -565,36 +563,27 @@ BOOL gIsFirstMyPositionMode = YES;
|
|||
self.disableStandbyOnLocationStateMode = NO;
|
||||
switch (mode)
|
||||
{
|
||||
case MWMMyPositionModeNotFollowNoPosition:
|
||||
{
|
||||
BOOL const hasLocation = [MWMLocationManager lastLocation] != nil;
|
||||
if (hasLocation)
|
||||
{
|
||||
GetFramework().SwitchMyPositionNextMode();
|
||||
break;
|
||||
}
|
||||
if ([Alohalytics isFirstSession])
|
||||
break;
|
||||
if (gIsFirstMyPositionMode)
|
||||
{
|
||||
GetFramework().SwitchMyPositionNextMode();
|
||||
break;
|
||||
}
|
||||
BOOL const isMapVisible = (self.navigationController.visibleViewController == self);
|
||||
if (isMapVisible && ![MWMLocationManager isLocationProhibited])
|
||||
{
|
||||
[self.alertController presentLocationNotFoundAlertWithOkBlock:^{
|
||||
GetFramework().SwitchMyPositionNextMode();
|
||||
}];
|
||||
}
|
||||
break;
|
||||
}
|
||||
case MWMMyPositionModePendingPosition:
|
||||
case MWMMyPositionModeNotFollowNoPosition: break;
|
||||
case MWMMyPositionModePendingPosition: [MWMLocationManager start]; break;
|
||||
case MWMMyPositionModeNotFollow: break;
|
||||
case MWMMyPositionModeFollow:
|
||||
case MWMMyPositionModeFollowAndRotate: self.disableStandbyOnLocationStateMode = YES; break;
|
||||
}
|
||||
gIsFirstMyPositionMode = NO;
|
||||
}
|
||||
|
||||
- (void)processMyPositionPendingTimeout {
|
||||
[MWMLocationManager stop];
|
||||
NSArray<id<MWMLocationModeListener>> * objects = self.listeners.allObjects;
|
||||
for (id<MWMLocationModeListener> object in objects) {
|
||||
[object processMyPositionPendingTimeout];
|
||||
}
|
||||
BOOL const isMapVisible = (self.navigationController.visibleViewController == self);
|
||||
if (isMapVisible && ![MWMLocationManager isLocationProhibited])
|
||||
{
|
||||
[self.alertController presentLocationNotFoundAlertWithOkBlock:^{
|
||||
GetFramework().SwitchMyPositionNextMode();
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - MWMRemoveAdsViewControllerDelegate
|
||||
|
|
|
@ -4,6 +4,7 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
NS_SWIFT_NAME(LocationModeListener)
|
||||
@protocol MWMLocationModeListener <NSObject>
|
||||
- (void)processMyPositionStateModeEvent:(MWMMyPositionMode)mode;
|
||||
- (void)processMyPositionPendingTimeout;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
@interface MWMLocationManager : NSObject
|
||||
|
||||
+ (void)start;
|
||||
+ (void)stop;
|
||||
|
||||
+ (void)addObserver:(id<MWMLocationObserver>)observer;
|
||||
+ (void)removeObserver:(id<MWMLocationObserver>)observer;
|
||||
|
|
|
@ -193,7 +193,11 @@ void setPermissionRequested()
|
|||
[NSNotificationCenter.defaultCenter removeObserver:self];
|
||||
self.locationManager.delegate = nil;
|
||||
}
|
||||
|
||||
+ (void)start { [self manager].started = YES; }
|
||||
|
||||
+ (void)stop { [self manager].started = NO; }
|
||||
|
||||
#pragma mark - Add/Remove Observers
|
||||
|
||||
+ (void)addObserver:(Observer)observer
|
||||
|
|
Loading…
Add table
Reference in a new issue