RouteController
open class RouteController : NSObject
extension RouteController: Router
A RouteController
tracks the user’s progress along a route, posting notifications as the user reaches significant points along the route. On every location update, the route controller evaluates the user’s location, determining whether the user remains on the route. If not, the route controller calculates a new route.
RouteController
is responsible for the core navigation logic whereas
NavigationViewController
is responsible for displaying a default drop-in navigation UI.
-
Details about the user’s progress along the current route, leg, and step.
Declaration
Swift
public var routeProgress: RouteProgress { get set }
-
The most recently received user location.
Note
This is a raw location received fromlocationManager
. To obtain an idealized location, use thelocation
property.Declaration
Swift
public var rawLocation: CLLocation? { get set }
-
Declaration
Swift
public var reroutesProactively: Bool
-
Declaration
Swift
public var refreshesRoute: Bool
-
The route controller’s delegate.
Declaration
Swift
public weak var delegate: RouterDelegate?
-
The route controller’s associated location manager.
Declaration
Swift
public unowned var dataSource: RouterDataSource
-
The Directions object used to create the route.
Declaration
Swift
public var directions: Directions
-
The idealized user location. Snapped to the route line, if applicable, otherwise raw.
See also
snappedLocation, rawLocationDeclaration
Swift
public var location: CLLocation? { get }
-
Declaration
Swift
required public init(along route: Route, routeIndex: Int, options: RouteOptions, directions: Directions = Directions.shared, dataSource source: RouterDataSource)
-
Declaration
Swift
public func advanceLegIndex()
-
Keys in the user info dictionaries of various notifications posted by instances of
See moreRouteController
.Declaration
Swift
public struct NotificationUserInfoKey : Hashable, Equatable, RawRepresentable
-
Declaration
Swift
public func userIsOnRoute(_ location: CLLocation) -> Bool