summaryrefslogtreecommitdiff
path: root/platform/ios/app/MBXViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/app/MBXViewController.m')
-rw-r--r--platform/ios/app/MBXViewController.m11
1 files changed, 1 insertions, 10 deletions
diff --git a/platform/ios/app/MBXViewController.m b/platform/ios/app/MBXViewController.m
index 9c506cadfa..b2c6ca26b3 100644
--- a/platform/ios/app/MBXViewController.m
+++ b/platform/ios/app/MBXViewController.m
@@ -7,7 +7,6 @@
#import "MBXUserLocationAnnotationView.h"
#import "LimeGreenStyleLayer.h"
#import "MBXEmbeddedMapViewController.h"
-#import "MBXOrnamentsViewController.h"
#import "MBXFrameTimeGraphView.h"
@@ -105,9 +104,8 @@ typedef NS_ENUM(NSInteger, MBXSettingsMiscellaneousRows) {
MBXSettingsMiscellaneousShowSnapshots,
MBXSettingsMiscellaneousShouldLimitCameraChanges,
MBXSettingsMiscellaneousShowCustomLocationManager,
- MBXSettingsMiscellaneousOrnamentsPlacement,
MBXSettingsMiscellaneousPrintLogFile,
- MBXSettingsMiscellaneousDeleteLogFile
+ MBXSettingsMiscellaneousDeleteLogFile,
};
// Utility methods
@@ -501,7 +499,6 @@ CLLocationCoordinate2D randomWorldCoordinate() {
@"Show Snapshots",
[NSString stringWithFormat:@"%@ Camera Changes", (_shouldLimitCameraChanges ? @"Unlimit" : @"Limit")],
@"View Route Simulation",
- @"Ornaments Placement",
]];
if (self.debugLoggingEnabled)
@@ -759,12 +756,6 @@ CLLocationCoordinate2D randomWorldCoordinate() {
}
break;
}
- case MBXSettingsMiscellaneousOrnamentsPlacement:
- {
- MBXOrnamentsViewController *ornamentsViewController = [[MBXOrnamentsViewController alloc] init];
- [self.navigationController pushViewController:ornamentsViewController animated:YES];
- break;
- }
default:
NSAssert(NO, @"All miscellaneous setting rows should be implemented");
break;