summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLNetworkConfiguration.h
blob: 2db46d78c54772d63392e92b52903248be283864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

/**
 The MGLNetworkConfiguration object provides a global way to set a base API URL for
 retrieval of map data, styles, and other resources.

 Currently, MGLNetworkConfiguration is private API in code but is able to be used
 by any applications via the `MGLMapboxAPIBaseURL` dictionary key in the
 application's `Info.plist`.
 */
@interface MGLNetworkConfiguration : NSObject

/// Returns the shared instance of the `MGLNetworkConfiguration` class.
@property (class, nonatomic, readonly) MGLNetworkConfiguration *sharedManager;

/// The current API base URL. If `nil`, the Mapbox default base API URL is in use.
@property (atomic, nullable) NSURL *apiBaseURL;

@end

NS_ASSUME_NONNULL_END