Address

public struct Address : Equatable

Holds information about address.

Lifecycle

  • Initializes the LocationContext.Address instance with the address.

    • streetName: The current street name.
    • city: The current city.
    • countryCode: The current country code.

    Declaration

    Swift

    public init(streetName: String, city: String, countryCode: String)

Public

  • The street name.

    Declaration

    Swift

    public let steetName: String
  • The city.

    Declaration

    Swift

    public let city: String
  • The coutry code.

    Declaration

    Swift

    public let countryCode: String