summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLTileSet_Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLTileSet_Private.h')
-rw-r--r--platform/darwin/src/MGLTileSet_Private.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLTileSet_Private.h b/platform/darwin/src/MGLTileSet_Private.h
index 6a14d428db..038fe57fa2 100644
--- a/platform/darwin/src/MGLTileSet_Private.h
+++ b/platform/darwin/src/MGLTileSet_Private.h
@@ -2,8 +2,23 @@
#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 \ No newline at end of file
+@end
+
+NS_ASSUME_NONNULL_END