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.
    • countryName: The current country name.

    Declaration

    Swift

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

Public

  • The street name.

    Declaration

    Swift

    public let streetName: String
  • The city.

    Declaration

    Swift

    public let city: String
  • The country code.

    Declaration

    Swift

    public let countryCode: String
  • The country name.

    Declaration

    Swift

    public let countryName: String