MaplyViewControllerLayer

@interface MaplyViewControllerLayer : NSObject

The View Controller Layer is a base class for other display layers.

You don’t create these directory. This is a base class for things like the MaplyQuadPagingLayer and the MaplyQuadImageTilesLayer.

  • Set the priority for drawing.

    This is how you control where the geometry produced by this layer shows up with respect to other layers and other geometry. This must be set immediately after creation. It will have undefined behavior after the layer has started.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) int drawPriority;

    Swift

    var drawPriority: Int32 { get set }
  • Set as unique identifier, or group…

    use this property in order to localize this layer in the Globe/Map, you use in a predicate to catch as a load layer in Globe…

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *identifier;

    Swift

    var identifier: String! { get set }