forked from organicmaps/organicmaps-tmp
[ios] Added incorrect feature position allert.
This commit is contained in:
parent
3c2988eef4
commit
f0c5383c96
7 changed files with 27 additions and 1 deletions
|
@ -24,6 +24,7 @@
|
|||
- (void)presentUnsavedEditsAlertWithOkBlock:(nonnull TMWMVoidBlock)okBlock;
|
||||
- (void)presentNoWiFiAlertWithName:(nonnull NSString *)name okBlock:(nullable TMWMVoidBlock)okBlock;
|
||||
- (void)presentPedestrianToastAlert:(BOOL)isFirstLaunch;
|
||||
- (void)presentIncorrectFeauturePositionAlert;
|
||||
- (void)presentInternalErrorAlert;
|
||||
- (void)presentInvalidUserNameOrPasswordAlert;
|
||||
- (void)presentDownloaderNoConnectionAlertWithOkBlock:(nonnull TMWMVoidBlock)okBlock;
|
||||
|
|
|
@ -96,6 +96,11 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
|
|||
[self displayAlert:[MWMAlert pedestrianToastShareAlert:isFirstLaunch]];
|
||||
}
|
||||
|
||||
- (void)presentIncorrectFeauturePositionAlert
|
||||
{
|
||||
[self displayAlert:[MWMAlert incorrectFeauturePositionAlert]];
|
||||
}
|
||||
|
||||
- (void)presentInternalErrorAlert
|
||||
{
|
||||
[self displayAlert:[MWMAlert internalErrorAlert]];
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
+ (MWMAlert *)unsavedEditsAlertWithOkBlock:(TMWMVoidBlock)okBlock;
|
||||
+ (MWMAlert *)locationServiceNotSupportedAlert;
|
||||
+ (MWMAlert *)pedestrianToastShareAlert:(BOOL)isFirstLaunch;
|
||||
+ (MWMAlert *)incorrectFeauturePositionAlert;
|
||||
+ (MWMAlert *)internalErrorAlert;
|
||||
+ (MWMAlert *)invalidUserNameOrPasswordAlert;
|
||||
+ (MWMAlert *)point2PointAlertWithOkBlock:(TMWMVoidBlock)okBlock needToRebuild:(BOOL)needToRebuild;
|
||||
|
|
|
@ -100,6 +100,11 @@
|
|||
return [MWMPedestrianShareAlert alert:isFirstLaunch];
|
||||
}
|
||||
|
||||
+ (MWMAlert *)incorrectFeauturePositionAlert
|
||||
{
|
||||
return [MWMDefaultAlert incorrectFeauturePositionAlert];
|
||||
}
|
||||
|
||||
+ (MWMAlert *)internalErrorAlert
|
||||
{
|
||||
return [MWMDefaultAlert internalErrorAlert];
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
+ (instancetype)endPointNotFoundAlert;
|
||||
+ (instancetype)startPointNotFoundAlert;
|
||||
+ (instancetype)internalRoutingErrorAlert;
|
||||
+ (instancetype)incorrectFeauturePositionAlert;
|
||||
+ (instancetype)internalErrorAlert;
|
||||
+ (instancetype)invalidUserNameOrPasswordAlert;
|
||||
+ (instancetype)noCurrentPositionAlert;
|
||||
|
|
|
@ -136,6 +136,16 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
|
|||
rightButtonAction:nil];
|
||||
}
|
||||
|
||||
+ (instancetype)incorrectFeauturePositionAlert
|
||||
{
|
||||
kStatisticsEvent = @"Incorrect Feature Possition Alert";
|
||||
return [self defaultAlertWithTitle:@"dialog_incorrect_feautre_position"
|
||||
message:@"message_invalid_feature_position"
|
||||
rightButtonTitle:@"ok"
|
||||
leftButtonTitle:nil
|
||||
rightButtonAction:nil];
|
||||
}
|
||||
|
||||
+ (instancetype)internalErrorAlert
|
||||
{
|
||||
kStatisticsEvent = @"Internal Error Alert";
|
||||
|
|
|
@ -276,9 +276,12 @@ extern NSString * const kAlohalyticsTapEventKey;
|
|||
[MWMAddPlaceNavigationBar showInSuperview:self.ownerController.view doneBlock:^
|
||||
{
|
||||
auto & f = GetFramework();
|
||||
|
||||
if (IsPointCoveredByDownloadedMaps(f.GetViewportCenter(), f.Storage(), f.CountryInfoGetter()))
|
||||
[self.ownerController performSegueWithIdentifier:kMapToCategorySelectorSegue sender:nil];
|
||||
//TODO(Vlad): Process else block. Probably we need to show some alert.
|
||||
else
|
||||
[self.ownerController.alertController presentIncorrectFeauturePositionAlert];
|
||||
|
||||
[self didFinishAddingPlace];
|
||||
}
|
||||
cancelBlock:^
|
||||
|
|
Loading…
Add table
Reference in a new issue