summaryrefslogtreecommitdiff
path: root/include/mbgl/darwin/MGLStyle.h
blob: e5b2de877c20533b80d3eb54f8394fc169d62f33 (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
#import <Foundation/Foundation.h>

#import "MGLTypes.h"

NS_ASSUME_NONNULL_BEGIN

/** A collection of convenience methods for creating style URLs of default styles provided by Mapbox. These instances of NSURL are cached. */
@interface MGLStyle : NSObject

/**
 Returns the Streets style URL.
 
 Mapbox Streets is a complete base map, perfect for incorporating your own data.
 */
+ (NSURL *)streetsStyleURL;

/**
 Returns the Emerald style URL.
 
 Emerald is a versatile style with emphasis on road networks and public transportation.
 */
+ (NSURL *)emeraldStyleURL;

/**
 Returns the Light style URL.
 
 Light is a subtle, light-colored backdrop for data visualizations.
 */
+ (NSURL *)lightStyleURL;

/**
 Returns the Dark style URL.
 
 Dark is a subtle, dark-colored backdrop for data visualizations.
 */
+ (NSURL *)darkStyleURL;

/**
 Returns the Satellite style URL.
 
 Mapbox Satellite is a beautiful global satellite and aerial imagery layer.
 */
+ (NSURL *)satelliteStyleURL;

/**
 Returns the Hybrid style URL.
 
 Hybrid combines the global satellite and aerial imagery of Mapbox Satellite with unobtrusive labels.
 */
+ (NSURL *)hybridStyleURL;

- (instancetype)init NS_UNAVAILABLE;

@end

NS_ASSUME_NONNULL_END