Socket
Socket
Sign inDemoInstall

github.com/maplibre/maplibre-navigation-android

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/maplibre/maplibre-navigation-android


Version published
Created
Source
Flitsmeister Navigation Android Splash

Jitpack

The Flitsmeister Navigation SDK for Android is built on a fork of the Mapbox Navigation SDK v0.19 which is build on top of the Mapbox Directions API and contains logic needed to get timed navigation instructions.

With this SDK you can implement turn by turn navigation in your own Android app while hosting your own Map tiles and Directions API.

Why have we forked

  1. Mapbox decided to put a closed source component to their navigation SDK and introduced a non open source license. Flitsmeister wants a open source solution.
  2. Mapbox decided to put telemetry in their SDK. We couldn't turn this off wihtout adjusting the source.
  3. We want to use the SDK without paying Mapbox for each MAU and without Mapbox API keys.

All issues are covered with this SDK.

What have we changed

  • We completely removed the UI part from the SDK so it will only contain the logics for navigation and not the visuals.
  • We upgraded the Mapbox Map SDK to version 8.5.0.
  • We upgraded the Mapbox Core to version 1.3.0.
  • We upgraded the NavigationRoute with the possibility to add an intercepter to the request.
  • We changed the locationLayerPlugin to the location component
  • We updated the logic around the implementation of the locationEngine so it can be used with the new locationEngine from the Mapbox SDK.
  • We removed the telemetry class from the project. Nothing is being send to Mapbox or Flitsmeister.

Getting Started

If you are looking to include this inside your project, you have to follow the the following steps:

gradle

Step 1. Add it in your root build.gradle at the end of repositories:

  allprojects {
    repositories {
      ...
      maven { url 'https://jitpack.io' }
    }
  }

Step 2. Add the dependency

  implementation 'com.github.flitsmeister:flitsmeister-navigation-android:v1.0.0'

maven

Step 1. Add it in your root build.gradle at the end of repositories:

  <repositories>
    <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
    </repository>
  </repositories>

Step 2. Add the dependency

  <dependency>
     <groupId>com.github.flitsmeister</groupId>
     <artifactId>flitsmeister-navigation-android</artifactId>
     <version>v1.0.0</version>
  </dependency>

sbt

Step 1. Add it in your build.sbt at the end of resolvers:

  resolvers += "jitpack" at "https://jitpack.io"

Step 2. Add the dependency

  libraryDependencies += "com.github.flitsmeister" % "flitsmeister-navigation-android" % "v1.0.0"	

leiningen

Step 1. Add it in your project.clj at the end of repositories:

  :repositories [["jitpack" "https://jitpack.io"]]

Step 2. Add the dependency

  :dependencies [[com.github.flitsmeister/flitsmeister-navigation-android "v1.0.0"]]

To run the sample code on a device or emulator, include your developer access token in developer-config.xml found in the project.

Getting Help

  • Have a bug to report? Open an issue. If possible, include the version of Flitsmeister Services, a full log, and a project that shows the issue.
  • Have a feature request? Open an issue. Tell us what the feature should do and why you want the feature.

Sample code

We've added one navigation example to this repo's test app. We are planning to add more to help you get started with the SDK and to inspire you.

In order to see the map or calculate a route you need your own Maptile and Direction services.

Contributing

We welcome feedback, translations, and code contributions! Please see CONTRIBUTING.md for details.

License

100% MIT License

FAQs

Package last updated on 09 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc