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
coordinatesA waypoint’s geographic coordinates.
venueIdAn ID of the venue where the waypoint is located.
levelIdAn ID of the level where the waypoint is located
-
Creates an outdoor waypoint.
Declaration
Swift
public init(coordinates: GeoCoordinates)Parameters
coordinatesA 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 }