Location

public struct Location : Codable, Equatable, FunctionResult

Describes a location on planet Earth

  • Latitude of the location in degrees; as defined by the sender

    Declaration

    Swift

    public let latitude: Double
  • Longitude of the location, in degrees; as defined by the sender

    Declaration

    Swift

    public let longitude: Double
  • Describes a location on planet Earth

    Declaration

    Swift

    public init(latitude: Double, longitude: Double)

    Parameters

    latitude

    Latitude of the location in degrees; as defined by the sender

    longitude

    Longitude of the location, in degrees; as defined by the sender