Geo
public struct Geo : Codable
GeoType The geographical information type. Latitude and Longitude will only be contained in this object if requested (see the geo parameter of the relevant services). The name, state and country members are omitted if the location maps to an uninhabited area.
See also
GeoType-
Country of the location.
Declaration
Swift
public let country: Country?
-
Geographical latitude of the location.
Declaration
Swift
public let latitude: Float?
-
Geographical longitude of the location.
Declaration
Swift
public let longitude: Float?
-
The name of the location
Declaration
Swift
public let name: String?