1 // 2 // AIRMapUrlTileCachedOverlay.h 3 // Airmaps 4 // 5 // Created by Markus Suomi on 10/04/2021. 6 // 7 8 #import <MapKit/MapKit.h> 9 10 @interface AIRMapUrlTileCachedOverlay : MKTileOverlay 11 12 @property NSInteger maximumNativeZ; 13 @property (nonatomic, copy) NSURL *tileCachePath; 14 @property NSInteger tileCacheMaxAge; 15 @property BOOL offlineMode; 16 17 @end 18