MTOfflineTile
public struct MTOfflineTile : Equatable, Hashable, CustomStringConvertible
Represents a discrete tile coordinate in a map grid at a specific zoom level.
-
The X coordinate of the tile.
Declaration
Swift
public let x: Int -
The Y coordinate of the tile.
Declaration
Swift
public let y: Int -
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
xThe X coordinate.
yThe Y coordinate.
zThe zoom level.
-
Declaration
Swift
public var description: String { get }