TilesetParameters
public struct TilesetParameters : Equatable, Sendable
Represents the parameters for a tileset.
-
The dataset name.
Declaration
Swift
public let dataset: String
-
The dataset version.
Declaration
Swift
public let version: String?
-
The language for the tileset. This value should be an ISO 639-1 language code from Locale.
Declaration
Swift
public let language: String?
-
The worldview for the tileset. This property requires an explicit language specification. This value should be an ISO 3166 alpha-2 country code from Locale.
Declaration
Swift
public let worldview: String?
-
Undocumented
Declaration
Swift
public init(dataset: String, version: String? = nil, language: String? = nil, worldview: String? = nil)