This repository contains binary releases and snapshots of the Mapbox Maps SDK for iOS for distribution via Swift Package Manager.
The Mapbox Maps SDK for iOS is a public library for displaying interactive, thoroughly customizable maps in native iOS applications. It takes map styles that conform to the Mapbox Style Specification, applies them to vector tiles that conform to the Mapbox Vector Tile Specification, and renders them using Metal.
Before you can download the binary distribution of Mapbox Maps SDK for iOS, you need to create a token with DOWNLOAD:READ scope.
Go to https://account.mapbox.com and click "Create token"
Insert or append the following to ~/.netrc
machine api.mapbox.com
login mapbox
password <TOKEN WITH DOWNLOAD:READ SCOPE>Add the following dependency to your Package.swift file:
dependencies: [
.package(url: "https://github.com/mapbox/mapbox-maps-ios-binary.git", exact: "11.20.0")
]Or add it through Xcode:
- File > Add Package Dependencies
- Enter the repository URL:
https://github.com/mapbox/mapbox-maps-ios-binary.git - Select the version or branch you want to use
- Add the
MapboxMapslibrary to your target
For comprehensive guides, API documentation, and examples, visit the official Mapbox Maps SDK for iOS documentation.
This is a binary distribution repository. For the full source code, development guides, and contribution information, visit the main repository.
For code samples and example implementations, see the Examples project in the main repository.
Please use the bug template in the main repository to report any issues.
Please use the feature template in the main repository for feature requests.
This repository is specifically designed for distributing pre-built binaries of the Mapbox Maps SDK, including both stable releases and development snapshots. Using this repository can:
- Speed up build times by using pre-compiled binaries
- Simplify dependency management for projects that don't need to build from source
- Provide access to both stable releases and development snapshots
For development, contributing, or building from source, please use the main repository.