IndoorWaypoint

public class IndoorWaypoint
extension IndoorWaypoint: NativeBase
extension IndoorWaypoint: Hashable

Represents an indoor waypoint, used as input for indoor route calculation.

  • Creates an indoor waypoint.

    Declaration

    Swift

    public init(coordinates: GeoCoordinates, venueId: String, levelId: String)

    Parameters

    coordinates

    A waypoint’s geographic coordinates.

    venueId

    An ID of the venue where the waypoint is located.

    levelId

    An ID of the level where the waypoint is located

  • Creates an outdoor waypoint.

    Declaration

    Swift

    public init(coordinates: GeoCoordinates)

    Parameters

    coordinates

    A waypoint’s geographic coordinates.

  • The waypoint’s geographic coordinates.

    Declaration

    Swift

    public var coordinates: GeoCoordinates { get }
  • The ID of the venue where the waypoint is located, if applicable.

    Declaration

    Swift

    public var venueId: String? { get }
  • The ID of the level where the waypoint is located, if applicable.

    Declaration

    Swift

    public var levelId: String? { get }