MaplyVectorStyleSimple
Objective-C
@interface MaplyVectorStyleSimple : NSObject <MaplyVectorStyle>
Swift
class MaplyVectorStyleSimple : NSObject, MaplyVectorStyle
Base class for the simple vector style.
-
Unique Identifier for this style
Declaration
Objective-C
@property (nonatomic) long long uuid;
Swift
var uuid: Int64 { get set }
-
Set if this geometry is additive (e.g. sticks around) rather than replacement
Declaration
Objective-C
@property (nonatomic) _Bool geomAdditive;
Swift
var geomAdditive: Bool { get set }
-
Priority for sorting among layers
Declaration
Objective-C
@property (nonatomic) int drawPriority;
Swift
var drawPriority: Int32 { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, weak) NSObject<MaplyRenderControllerProtocol> *viewC
Swift
weak var viewC: (NSObjectProtocol & MaplyRenderControllerProtocol)! { get set }
-
Undocumented
Declaration
Objective-C
- (id)initWithGen:(MaplyVectorStyleSimpleGenerator *)gen viewC:(NSObject<MaplyRenderControllerProtocol> *)viewC;
Swift
init!(gen: MaplyVectorStyleSimpleGenerator!, viewC: (NSObjectProtocol & MaplyRenderControllerProtocol)!)