MTOfflineTile

public struct MTOfflineTile : Equatable, Hashable, CustomStringConvertible

Represents a discrete tile coordinate in a map grid at a specific zoom level.

  • x

    The X coordinate of the tile.

    Declaration

    Swift

    public let x: Int
  • y

    The Y coordinate of the tile.

    Declaration

    Swift

    public let y: Int
  • z

    The zoom level of the tile.

    Declaration

    Swift

    public let z: Int
  • Initializes a new tile coordinate.

    Declaration

    Swift

    public init(x: Int, y: Int, z: Int)

    Parameters

    x

    The X coordinate.

    y

    The Y coordinate.

    z

    The zoom level.

  • Declaration

    Swift

    public var description: String { get }