summaryrefslogtreecommitdiff
path: root/ios/app/MBXAppDelegate.m
blob: ce699ce69489a6a409362b886c911938f5f824c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#import "MBXAppDelegate.h"
#import "MBXViewController.h"
#import <mbgl/ios/MapboxGL.h>
#import <mbgl/ios/MGLAccountManager.h>
#import <mbgl/ios/MGLMapboxEvents.h>

@implementation MBXAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Set Access Token
    NSString *accessToken = [[NSProcessInfo processInfo] environment][@"MAPBOX_ACCESS_TOKEN"];
    if (accessToken) {
        // Store to preferences so that we can launch the app later on without having to specify
        // token.
        [[NSUserDefaults standardUserDefaults] setObject:accessToken forKey:@"access_token"];
    } else {
        // Try to retrieve from preferences, maybe we've stored them there previously and can reuse
        // the token.
        accessToken = [[NSUserDefaults standardUserDefaults] objectForKey:@"access_token"];
    }
    if ( ! accessToken) NSLog(@"No access token set. Mapbox vector tiles won't work.");

    // Signal To SDK That Opt Out Is In App UI
//    [MGLAccountManager setMapboxMetricsEnabledSettingShownInApp:YES];

    // Start Mapbox GL SDK
    [MGLAccountManager setAccessToken:accessToken];

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[MBXViewController new]];
    [self.window makeKeyAndVisible];

    return YES;
}

/**
- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Example of how to resume Metrics Collection
    
    // Reasons for needing to resume:
    // 1. In UIBackground and app starts listening for Location Updates where it previously had not been listening.
    // 2. App is entering foreground where it had called pauseMetricsCollection.
    [MGLMapboxEvents resumeMetricsCollection];
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Example of how to pause Metrics Collection
    
    // Reason for needing to pause:
    // 1. Either entering or already in UIBackground and app stops listening for Location Updates
    // via any CLLocationManager instance it may have.
    [MGLMapboxEvents pauseMetricsCollection];
}
*/

@end