# mapbox-navigation-native-ios **Repository Path**: mirrors_mapbox/mapbox-navigation-native-ios ## Basic Information - **Project Name**: mapbox-navigation-native-ios - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-24 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mapbox-navigation-native-ios ### Prerequisites Before you can download the [Mapbox Navigation Native](https://github.com/mapbox/mapbox-navigation-native) for iOS, you need to create a token with `DOWNLOAD:READ` scope. Go to https://account.mapbox.com and click "Create token" ##### SPM, CocoaPods and Carthage Insert or append the following to `~/.netrc` ```bash machine api.mapbox.com login mapbox password ``` ## Integration ##### Swift Package Manager ###### Using SPM Package ```swift .package(url: "git@github.com:mapbox/mapbox-navigation-native-ios.git", from: "207.0.0"), ``` ##### CocoaPods ```ruby pod 'MapboxNavigationNative', '207.0.0' ``` ##### Carthage Add the following code to your Cartfile. ```bash binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.json" == 207.0.0 binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 23.11.0 ``` Then run the following command in the Terminal. ```bash carthage update --platform ios --use-netrc ```