MBMCanonicalTileID


@interface MBMCanonicalTileID : NSObject

Represents a tile coordinate.

  • 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)
  • z

    The z value of the coordinate (zoom-level).

    Declaration

    Objective-C

    @property (nonatomic, readonly) uint8_t z;

    Swift

    var z: UInt8 { get }
  • x

    The x value of the coordinate.

    Declaration

    Objective-C

    @property (nonatomic, readonly) uint32_t x;

    Swift

    var x: UInt32 { get }
  • y

    The y value of the coordinate.

    Declaration

    Objective-C

    @property (nonatomic, readonly) uint32_t y;

    Swift

    var y: UInt32 { get }