Place

public struct Place : Decodable, Equatable

Represents information about specific place

Important

This is a Public Preview API. It may be changed or removed at any time.

Public

  • Coordinate of the place

    Declaration

    Swift

    public let coordinate: CLLocationCoordinate2D
  • Name of the place

    Declaration

    Swift

    public let name: String?
  • Address of the place

    Declaration

    Swift

    public let address: Address?
  • Distance to the place from the current position

    Declaration

    Swift

    public let distance: Double?
  • Declaration

    Swift

    public static func == (lhs: Place, rhs: Place) -> Bool