Coordinate
public struct Coordinate : Decodable, Equatable
A geographic coordinate
-
Undocumented
Declaration
Swift
public let latitude: Double
-
Undocumented
Declaration
Swift
public let longitude: Double
-
Initializes a
Coordinate
- latitude: A double representing the latitude
- longitude: A double representing the longitude
Declaration
Swift
public init(latitude: Double, longitude: Double)
-
Undocumented
Declaration
Swift
public init?(latitude: Double?, longitude: Double?)