IdentifiablePlace

@dynamicMemberLookup
public struct IdentifiablePlace : Identifiable

An IdentifiablePlace and from a Geo.Place for use in SwiftUI views requiring Identifiable conformance.

Important

The id property is generated on creation and NOT associated with a specific Geo.Place.
  • id

    Declaration

    Swift

    public let id: UUID
  • Declaration

    Swift

    public let place: Geo.Place
  • Create a IdentifiablePlace for SwiftUI views requiring Identifiable conformance.

    Declaration

    Swift

    public init(_ place: Geo.Place)

    Parameters

    place

    The underlying Geo.Place

  • Declaration

    Swift

    public subscript<T>(dynamicMember keyPath: KeyPath<Geo.Place, T>) -> T { get }