MapLibre GL Native for Android is a library for embedding interactive map views with scalable, customizable vector maps onto Android devices.
-
Add bintray Maven repositories to your
build.gradle
at project level so that you can access MapLibre packages for Android:allprojects { repositories { ... mavenCentral() } }
Note
Bintray was turn off May 1st, 2021 so we migrated all packages to Maven central.
-
Add the library as a dependency into your module build.gradle
dependencies { ... implementation 'org.maplibre.gl:android-sdk:<version>' ... }
-
Sync Gradle and rebuild your app.
Note MapLibre by default ships with the proprietary Google Play Location Services. If you want to avoid pulling proprietary dependencies into your project, you can exclude Google Play Location Services as follows:
implementation ('org.maplibre.gl:android-sdk:<version>') { exclude group: 'com.google.android.gms' }
Visit https://maplibre.org/maplibre-gl-native/android/api/ to view the current API reference Javadoc files for MapLibre GL Native for Android.
See DEVELOPING.md
for instructions on how to get started working on the codebase.