MSFMultiTileDataSource

Objective-C


@interface MSFMultiTileDataSource : MSFTileDataSource

Swift

class MSFMultiTileDataSource : MSFTileDataSource

A tile data source that handles multiple data sources.

  • Constructs a PackageManagerTileDataSource object.

    Declaration

    Objective-C

    - (id)init;

    Swift

    init!()
  • Undocumented

    Declaration

    Objective-C

    -(id)initWithMaxOpenedPackages: (int)maxOpenedPackages;

    Swift

    init!(maxOpenedPackages: Int32)
  • Undocumented

    Declaration

    Objective-C

    - (int)getMinZoom;

    Swift

    func getMinZoom() -> Int32
  • Undocumented

    Declaration

    Objective-C

    -(int)getMinZoomSwigExplicitMSFMultiTileDataSource;

    Swift

    func getMinZoomSwigExplicitMSFMultiTileDataSource() -> Int32
  • Undocumented

    Declaration

    Objective-C

    - (int)getMaxZoom;

    Swift

    func getMaxZoom() -> Int32
  • Undocumented

    Declaration

    Objective-C

    -(int)getMaxZoomSwigExplicitMSFMultiTileDataSource;

    Swift

    func getMaxZoomSwigExplicitMSFMultiTileDataSource() -> Int32
  • Undocumented

    Declaration

    Objective-C

    - (MSFMapBounds *)getDataExtent;

    Swift

    func getDataExtent() -> MSFMapBounds!
  • Undocumented

    Declaration

    Objective-C

    -(MSFMapBounds*)getDataExtentSwigExplicitMSFMultiTileDataSource;

    Swift

    func getDataExtentSwigExplicitMSFMultiTileDataSource() -> MSFMapBounds!
  • Undocumented

    Declaration

    Objective-C

    - (MSFTileData *)loadTile:(MSFMapTile *)mapTile;

    Swift

    func load(_ mapTile: MSFMapTile!) -> MSFTileData!
  • Undocumented

    Declaration

    Objective-C

    -(MSFTileData*)loadTileSwigExplicitMSFMultiTileDataSource: (MSFMapTile*)mapTile;

    Swift

    func loadTileSwigExplicitMSFMultiTileDataSource(_ mapTile: MSFMapTile!) -> MSFTileData!
  • Adds a new data source to the data source stack. The new data source will be the last (and topmost) data source.

    Declaration

    Objective-C

    - (void)add:(MSFTileDataSource *)datasource;

    Swift

    func add(_ datasource: MSFTileDataSource!)

    Parameters

    datasource

    The data source to be added.

  • Adds a new data source to the data source stack. The new data source will be the last (and topmost) data source.

    Declaration

    Objective-C

    - (void)add:(MSFTileDataSource *)datasource tileMask:(NSString *)tileMask;

    Swift

    func add(_ datasource: MSFTileDataSource!, tileMask: String!)

    Parameters

    datasource

    The data source to be added.

  • Removes a data source from the sources stack.

    Declaration

    Objective-C

    - (BOOL)remove:(MSFTileDataSource *)datasource;

    Swift

    func remove(_ datasource: MSFTileDataSource!) -> Bool

    Parameters

    datasource

    The data source to be removed.

    Return Value

    True if the data source was removed. False otherwise ( data source was not found).

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()