Mapbox Navigation gives you all the tools you need to add turn-by-turn navigation to your iOS application.
Get up and running in a few minutes with our drop-in turn-by-turn navigation NavigationViewController
, or build a completely custom turn-by-turn navigation app with our core components for routing and navigation.
- A full-fledged turn-by-turn navigation UI for iPhone, iPad, and CarPlay that’s ready to drop into your application
- Professionally designed map styles for daytime and nighttime driving
- Worldwide driving, cycling, and walking directions powered by open data and user feedback
- Traffic avoidance and proactive rerouting based on current conditions in over 55 countries
- Natural-sounding turn instructions powered by Amazon Polly (no configuration needed)
- Support for over two dozen languages
The Mapbox Navigation SDK and Core Navigation are compatible with applications written in Swift 4.2 or Objective-C in Xcode 10.0. The Mapbox Navigation and Mapbox Core Navigation frameworks run on iOS 9.0 and above.
The last release compatible with Swift 3.2 was v0.10.1.
The Mapbox Navigation SDK is also available for Android.
To install Mapbox Navigation using CocoaPods:
-
Create a Podfile with the following specification:
pod 'MapboxNavigation', '~> 0.31.0'
-
Run
pod repo update && pod install
and open the resulting Xcode workspace.
Alternatively, to install Mapbox Navigation using Carthage:
-
Create a Cartfile with the following dependency:
github "mapbox/mapbox-navigation-ios" ~> 0.31
-
Run
carthage update --platform iOS
to build just the iOS dependencies. -
Follow the rest of Carthage’s iOS integration instructions. Your application target’s Embedded Frameworks should include
MapboxNavigation.framework
,MapboxCoreNavigation.framework
, andMapboxNavigationNative.framework
.
-
Mapbox APIs and vector tiles require a Mapbox account and API access token. In the project editor, select the application target, then go to the Info tab. Under the “Custom iOS Target Properties” section, set
MGLMapboxAccessToken
to your access token. You can obtain an access token from the Mapbox account page. -
In order for the SDK to track the user’s location as they move along the route, set
NSLocationWhenInUseUsageDescription
to:Shows your location on the map and helps improve OpenStreetMap.
-
Users expect the SDK to continue to track the user’s location and deliver audible instructions even while a different application is visible or the device is locked. Go to the Capabilities tab. Under the Background Modes section, enable “Audio, AirPlay, and Picture in Picture” and “Location updates”. (Alternatively, add the
audio
andlocation
values to theUIBackgroundModes
array in the Info tab.)
Now import the relevant modules and present a new NavigationViewController
. You can also push to a navigation view controller from within a storyboard if your application’s UI is laid out in Interface Builder.
import MapboxDirections
import MapboxCoreNavigation
import MapboxNavigation
let origin = Waypoint(coordinate: CLLocationCoordinate2D(latitude: 38.9131752, longitude: -77.0324047), name: "Mapbox")
let destination = Waypoint(coordinate: CLLocationCoordinate2D(latitude: 38.8977, longitude: -77.0365), name: "White House")
let options = NavigationRouteOptions(waypoints: [origin, destination])
Directions.shared.calculate(options) { (waypoints, routes, error) in
guard let route = routes?.first else { return }
let viewController = NavigationViewController(for: route)
present(viewController, animated: true, completion: nil)
}
Consult the API reference for further details.
The API reference includes example code for accomplishing common tasks. You can run these examples as part of the navigation-ios-examples project.
This repository also contains Swift and Objective-C testbeds that exercise a variety of navigation SDK features:
- Clone the repository or download the .zip file
- Run
carthage update --platform ios
to build just the iOS dependencies. - Open
MapboxNavigation.xcodeproj
. - Sign up or log in to your Mapbox account and grab a Mapbox Access Token.
- Open the Info.plist in the
Example
target and paste your Mapbox Access Token intoMGLMapboxAccessToken
. (Alternatively, if you plan to use this project as the basis for a public project on GitHub, place the access token in a plain text file named.mapbox
ormapbox
in your home directory instead of adding it to Info.plist.) - Build and run the
Example
target.
You can customize the appearance in order to blend in with the rest of your app. Checkout DayStyle.swift
for all styleable elements.
class CustomStyle: DayStyle {
required init() {
super.init()
mapStyleURL = URL(string: "mapbox://styles/mapbox/satellite-streets-v9")!
styleType = .nightStyle
}
override func apply() {
super.apply()
BottomBannerView.appearance().backgroundColor = .orange
}
}
then initialize NavigationViewController
with your style or styles:
let options = NavigationOptions(styles: [CustomStyle()])
NavigationViewController(for: route, options: options)
If your application needs something totally custom, such as a voice-only experience or an unconventional user interface, consult the Core Navigation installation guide.
We welcome feedback and code contributions! Please see CONTRIBUTING.md for details.
Mapbox Navigation SDK for iOS is released under the ISC License. See LICENSE.md for details.
Mapbox Navigation SDK uses Mapbox Navigator, a private binary, as a dependency. The Mapbox Navigator binary may be used with a Mapbox account and under the Mapbox TOS. If you do not wish to use this binary, make sure you swap out this dependency in the Cartfile. Code in this repository is released under the MIT license.