summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLTileSet_Private.h
blob: 038fe57fa27b6230b30f85f2786ca7717c9445e8 (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
#import "MGLTileSet.h"

#include <mbgl/util/tileset.hpp>

NS_ASSUME_NONNULL_BEGIN

@class MGLAttributionInfo;

@interface MGLTileSet (Private)

/**
 A structured representation of the `attribution` property. The default value is
 `nil`.
 
 @param fontSize The default text size in points.
 @param linkColor The default link color.
 */
- (nullable NS_ARRAY_OF(MGLAttributionInfo *) *)attributionInfosWithFontSize:(CGFloat)fontSize linkColor:(nullable MGLColor *)linkColor;

- (mbgl::Tileset)mbglTileset;

@end

NS_ASSUME_NONNULL_END