MSFCombinedTileDataSource
Objective-C
@interface MSFCombinedTileDataSource : MSFTileDataSource
Swift
class MSFCombinedTileDataSource : MSFTileDataSource
A tile data source that combines two data sources (usually offline and online) and selects tiles based on zoom level. All requests below specified zoom level are directed to the first data source and all requests at or above specified zoom level are directed to the second data source.
-
Constructs a combined tile data source object.
Declaration
Objective-C
- (id)initWithDataSource1:(MSFTileDataSource *)dataSource1 dataSource2:(MSFTileDataSource *)dataSource2 zoomLevel:(int)zoomLevel;Swift
init!(dataSource1: MSFTileDataSource!, dataSource2: MSFTileDataSource!, zoomLevel: Int32)Parameters
dataSource1First data source that is used if requested tile is below given zoomLevel.
dataSource2Second data source that is used if requested tile is at or above given zoomLevel.
zoomLevelThreshold zoom level value.
-
Undocumented
Declaration
Objective-C
- (int)getMinZoom;Swift
func getMinZoom() -> Int32 -
Undocumented
Declaration
Objective-C
-(int)getMinZoomSwigExplicitMSFCombinedTileDataSource;Swift
func getMinZoomSwigExplicitMSFCombinedTileDataSource() -> Int32 -
Undocumented
Declaration
Objective-C
- (int)getMaxZoom;Swift
func getMaxZoom() -> Int32 -
Undocumented
Declaration
Objective-C
-(int)getMaxZoomSwigExplicitMSFCombinedTileDataSource;Swift
func getMaxZoomSwigExplicitMSFCombinedTileDataSource() -> Int32 -
Undocumented
Declaration
Objective-C
- (MSFMapBounds *)getDataExtent;Swift
func getDataExtent() -> MSFMapBounds! -
Undocumented
Declaration
Objective-C
-(MSFMapBounds*)getDataExtentSwigExplicitMSFCombinedTileDataSource;Swift
func getDataExtentSwigExplicitMSFCombinedTileDataSource() -> MSFMapBounds! -
Undocumented
Declaration
Objective-C
- (NSString *)getContainerMetaData:(NSString *)key;Swift
func getContainerMetaData(_ key: String!) -> String! -
Undocumented
Declaration
Objective-C
-(NSString*)getContainerMetaDataSwigExplicitMSFCombinedTileDataSource: (NSString*)key;Swift
func getContainerMetaDataSwigExplicitMSFCombinedTileDataSource(_ key: String!) -> String! -
Undocumented
Declaration
Objective-C
- (MSFTileData *)loadTile:(MSFMapTile *)tile;Swift
func load(_ tile: MSFMapTile!) -> MSFTileData! -
Undocumented
Declaration
Objective-C
-(MSFTileData*)loadTileSwigExplicitMSFCombinedTileDataSource: (MSFMapTile*)tile;Swift
func loadTileSwigExplicitMSFCombinedTileDataSource(_ tile: MSFMapTile!) -> MSFTileData! -
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()