summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLOfflineRegion.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLOfflineRegion.h')
-rw-r--r--platform/darwin/src/MGLOfflineRegion.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLOfflineRegion.h b/platform/darwin/src/MGLOfflineRegion.h
index a855ec5614..ad9731eb33 100644
--- a/platform/darwin/src/MGLOfflineRegion.h
+++ b/platform/darwin/src/MGLOfflineRegion.h
@@ -2,6 +2,8 @@
NS_ASSUME_NONNULL_BEGIN
+@class MGLTileSource;
+
/**
An object conforming to the `MGLOfflineRegion` protocol determines which
resources are required by an `MGLOfflinePack` object. At present, only
@@ -13,7 +15,7 @@ NS_ASSUME_NONNULL_BEGIN
/**
The number of tiles needed to load one of the style’s sources within the region.
*/
-@property (nonatomic, readonly) uint64_t tileCount;
+-(uint64_t)countTilesForTileSource:(MGLTileSource *)tileSource;
@end