-
Unavailable
Undocumented
Declaration
Objective-C
- (nonnull instancetype)init NS_UNAVAILABLE;
-
Unavailable
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)new NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
- (nonnull instancetype)initWithZ:(uint8_t)z x:(uint32_t)x y:(uint32_t)y;
Swift
init(z: UInt8, x: UInt32, y: UInt32)
-
The z value of the coordinate (zoom-level).
Declaration
Objective-C
@property (nonatomic, readonly) uint8_t z;
Swift
var z: UInt8 { get }
-
The x value of the coordinate.
Declaration
Objective-C
@property (nonatomic, readonly) uint32_t x;
Swift
var x: UInt32 { get }
-
The y value of the coordinate.
Declaration
Objective-C
@property (nonatomic, readonly) uint32_t y;
Swift
var y: UInt32 { get }