AWFMKTileOverlay

Objective-C

@interface AWFMKTileOverlay : MKTileOverlay

Swift

class AWFMKTileOverlay : MKTileOverlay

The AWFMKTileOverlay class provides an MKTileOverlay instance that provides improved disk and in-memory caching of tile data.

  • The opacity to use when rendering the overlay.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat alpha;

    Swift

    var alpha: CGFloat { get set }
  • The data source object that provides URL and request information required for loading tile resources.

    Declaration

    Objective-C

    @property (nonatomic, weak, nullable) id<AWFTileDataSource> dataSource;

    Swift

    weak var dataSource: AWFTileDataSource? { get set }
  • Cancels all active asynchronous requests for tile resources.

    Declaration

    Objective-C

    - (void)cancelRequests;

    Swift

    func cancelRequests()