Place

public struct Place : Equatable

Represents information about specific place.

Lifecycle

  • Creates an instance of Place.

    Declaration

    Swift

    public init(
        coordinate: CLLocationCoordinate2D,
        name: String? = nil,
        address: Address? = nil
    )

    Parameters

    coordinate

    A coordinate representing the geographic coordinate of the place.

    name

    A string representing the name of the place.

    address

    An address representing the address of the place.

  • Create a new Place instance.

    Important

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

    Declaration

    Swift

    public init(
        coordinate: CLLocationCoordinate2D,
        name: String? = nil,
        address: Address? = nil,
        entryPoints: [EntryPoint] = []
    )

    Parameters

    coordinate

    The coordinate where this palce is located.

    name

    The name of the place.

    address

    The Address information about this place.

    entryPoints

    An EntryPoint Array that contaisn all POIs

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?
  • A list of entrances to the POI.

    Important

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

    Declaration

    Swift

    public let entryPoints: [EntryPoint]
  • Custom implementation of comparing Place objects, by requiring Places’ name and freeform addresses to be equal.

    Declaration

    Swift

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