summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLRasterTileSource_Private.h
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-09-17 23:37:24 -0400
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-09-18 16:21:59 +0300
commita6618dc0f938598f88c9650ef099f37681abed28 (patch)
tree8ac5a8e644a1e3b1d056c11f51fd7f2505c78a91 /platform/darwin/src/MGLRasterTileSource_Private.h
parent461358be4b6edc7d49a3ed6a36bdd0cd186241a2 (diff)
downloadqtlocation-mapboxgl-a6618dc0f938598f88c9650ef099f37681abed28.tar.gz
[ios] Speculative fix for failing test: MGLDocumentationExampleTests.testMGLHillshadeStyleLayer()
Diffstat (limited to 'platform/darwin/src/MGLRasterTileSource_Private.h')
-rw-r--r--platform/darwin/src/MGLRasterTileSource_Private.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLRasterTileSource_Private.h b/platform/darwin/src/MGLRasterTileSource_Private.h
index 8502b811e2..55f342c7ff 100644
--- a/platform/darwin/src/MGLRasterTileSource_Private.h
+++ b/platform/darwin/src/MGLRasterTileSource_Private.h
@@ -1,8 +1,10 @@
#import "MGLRasterTileSource.h"
#include <memory>
+#include <mbgl/util/variant.hpp>
namespace mbgl {
+ class Tileset;
namespace style {
class RasterSource;
}
@@ -14,7 +16,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, readonly, nullable) mbgl::style::RasterSource *rawSource;
-- (std::unique_ptr<mbgl::style::RasterSource>)pendingSourceWithIdentifier:(NSString *)identifier configurationURL:(NSURL *)configurationURL tileSize:(CGFloat)tileSize;
+- (std::unique_ptr<mbgl::style::RasterSource>)pendingSourceWithIdentifier:(NSString *)identifier urlOrTileset:(mbgl::variant<std::string, mbgl::Tileset>)urlOrTileset tileSize:(uint16_t)tileSize;
@end