Directions
open class Directions: NSObject
A Directions object provides you with optimal directions between different locations, or waypoints. The directions object passes your request to the Mapbox Directions API and returns the requested information to a closure (block) that you provide. A directions object can handle multiple simultaneous requests. A RouteOptions object specifies criteria for the results, such as intermediate waypoints, a mode of transportation, or the level of detail to be returned.
Each result produced by the directions object is stored in a Route object. Depending on the RouteOptions object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
-
A closure (block) to be called when a directions request is complete.
If the request was canceled or there was an error obtaining the routes, this parameter may be
nil.If the request was canceled or there was an error obtaining the routes, this parameter is
nil. This is not to be confused with the situation in which no results were found, in which case the array is present but empty.Declaration
Parameters
waypointsAn array of
Waypointobjects. Each waypoint object corresponds to aWaypointobject in the originalRouteOptionsobject. The locations and names of these waypoints are the result of conflating the original waypoints to known roads. The waypoints may include additional information that was not specified in the original waypoints.routesAn array of
Routeobjects. The preferred route is first; any alternative routes come next if theRouteOptionsobject’sincludesAlternativeRoutesproperty was set totrue. The preferred route depends on the route options object’sprofileIdentifierproperty.errorThe error that occurred, or
nilif the placemarks were obtained successfully.
-
The shared directions object.
To use this object, a Mapbox access token should be specified in the
MGLMapboxAccessTokenkey in the main application bundle’s Info.plist.Declaration
Swift
open static let shared = Directions(accessToken: nil) -
Initializes a newly created directions object with an optional access token and host.
Declaration
Swift
public init(accessToken: String?, host: String?)Parameters
accessTokenA Mapbox access token. If an access token is not specified when initializing the directions object, it should be specified in the
MGLMapboxAccessTokenkey in the main application bundle’s Info.plist.hostAn optional hostname to the server API. The Mapbox Directions API endpoint is used by default.
-
Initializes a newly created directions object with an optional access token.
The directions object sends requests to the Mapbox Directions API endpoint.
Declaration
Swift
public convenience init(accessToken: String?)Parameters
accessTokenA Mapbox access token. If an access token is not specified when initializing the directions object, it should be specified in the
MGLMapboxAccessTokenkey in the main application bundle’s Info.plist.
-
Begins asynchronously calculating the route or routes using the given options and delivers the results to a closure.
This method retrieves the routes asynchronously over a network connection. If a connection error or server error occurs, details about the error are passed into the given completion handler in lieu of the routes.
Routes may be displayed atop a Mapbox map. They may be cached but may not be stored permanently. To use the results in other contexts or store them permanently, upgrade to a Mapbox enterprise plan.
Declaration
Swift
open func calculate(_ options: RouteOptions, completionHandler: @escaping CompletionHandler) -> URLSessionDataTaskParameters
optionsA
RouteOptionsobject specifying the requirements for the resulting routes.completionHandlerThe closure (block) to call with the resulting routes. This closure is executed on the application’s main thread.
Return Value
The data task used to perform the HTTP request. If, while waiting for the completion handler to execute, you no longer want the resulting routes, cancel this task.
-
The HTTP URL used to fetch the routes from the API.
After requesting the URL returned by this method, you can parse the JSON data in the response and pass it into the
Route.init(json:waypoints:profileIdentifier:)initializer.Declaration
Swift
open func url(forCalculating options: RouteOptions) -> URL
Install in Dash
Directions Class Reference