AWFOverlayProvider

Objective-C

@protocol AWFOverlayProvider <NSObject>

Swift

protocol AWFOverlayProvider : NSObjectProtocol

The AWFOverlayProvider protocol defines the required properties and methods for an object that provides a map overlay object.

  • The overlay object that is added to a map.

    The class type for this object will vary depending on the type of mapping library used. For example, when using Apple’s MapKit, this object will be an instance of MKTileOverlay.

    Declaration

    Objective-C

    @required
    @property (nonatomic, strong, readonly) id _Nonnull overlay;

    Swift

    var overlay: Any { get }