GithubHelp home page GithubHelp logo

ozzie00 / mapbox-android-sdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gotomypc/mapbox-android-sdk

0.0 3.0 0.0 145.12 MB

Open Source Maps SDK for Android

Home Page: https://mapbox.com/mapbox-android-sdk/

License: Other

Shell 0.05% Java 99.95%

mapbox-android-sdk's Introduction

Build Status

Mapbox Android SDK

An open source alternative for native maps on Android. This library lets you use Mapbox, OpenStreetMap, and other tile sources in your app, as well as overlays like GeoJSON data and interactive tooltips.

This is a fork of osmdroid, so the entire core is open source: it doesn't depend on the Google Maps SDK or any components outside of AOSP that would require the Google Play Services.

Mapbox GL Coming Soon

Please note that we'll be releasing Mapbox GL for Android in the coming months. It's the vector-based future of our rendering technology and will replace the Mapbox Android SDK. We are working to provide a clear upgrade path between existing toolsets and GL as it matures. For more information please see the Mapbox Mobile Web page as well as Mapbox GL project repository.

Installation

We recommend using the Mapbox Android SDK with Gradle: this will automatically install the necessary dependencies and pull the SDK binaries from the Maven Central repository ( Mapbox Android SDK on Maven Central ).

To install the current stable version add this to your build.gradle:

repositories {
    mavenCentral()
}

dependencies {
    compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:0.7.4@aar'){
        transitive=true
    }
}

To install the current SNAPSHOT version add this to your build.gradle:

repositories {
    mavenCentral()
    maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}

dependencies {
    compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:0.7.5-SNAPSHOT@aar'){
        transitive=true
    }
}

For a full example Android project incorporating the SDK in this manner, please see the Mapbox Dev Preview app.

NOTE: SDK Versions

At any given time there will be 3 different versions of the SDK to use. You're welcome to use whichever one makes the most sense for your project, just be aware that each comes with a different level of stability.

  1. Stable / Supported
  • Currently 0.7.4
  1. SNAPSHOT
  • Currently 0.7.5-SNAPSHOT
  1. Source

Manually / Hardcoding In Project

Download and include the mapbox-android-sdk.aar file and all artifacts (.aar, .jar files, and Android support / compatibility libraries listed) listed in MapboxAndroidSDK / build.gradle. For those new to Gradle the artifacts are listed in the dependencies block. These will change over time so please check back regularly.

Legacy Support (Eclipse) - Experimental

The Mapbox Android SDK is also packaged as a .apklib file. This allows integration with older tools (Eclipse) that don't support the .aar format yet. In order to make this work the project will need to make use of Maven, and it the case of Eclipse the M2Eclipse Maven plugin. From there configure the Maven pom.xml to include the following dependency:

<dependency>
    <groupId>com.mapbox.mapboxsdk</groupId>
    <artifactId>mapbox-android-sdk</artifactId>
    <version>0.7.4</version>
    <type>apklib</type>
</dependency>

For more information on how to use Maven and Eclipse together please see Sonatype's Developing with Eclipse and Maven tutorial.

Eclipse Hardcoding - NOT Recommended

The best way to make sure that the Mapbox Android SDK is setup properly (as well as updated as new versions are released) is to make use of Gradle or Maven as documented above. However, if that's not possible the Mapbox Android SDK can also be added to the project by hardcoding it in. Please note that this is extremely brittle and not scalable. Here's the steps:

  1. Download the mapbox-android-sdk-0.7.4.apklib.
  2. Extract the source code and import it directly into the Eclipse project
  • jar xf mapbox-android-sdk-0.7.4.apklib
  1. Download all .jar dependencies from build.gradle and add to the Eclipse project as libaries. Do NOT extract the content of these files.
  • NOTE: Make sure to also include all of the dependencies of these dependencies too. This is done by looking at the POM files for each of the individual libraries on http://search.maven.com. For example, OkHttp relies on Okio. Failure to include all of them (and using their correct version) can cause the project to not compile and usually results in java.lang.NoClassDefFoundError errors. This is one reason why we recommend using a Build Tool like Gradle or Maven. :-)
  1. Automatically Included as of 0.6.0 Download all .java files from Cocoahero's GeoJSON library and add to the Eclipse project's source code.

Building From Source

Building from source means you get the very latest version of our code. The first step is to clone the repository to a directory in your system

git clone https://github.com/mapbox/mapbox-android-sdk.git

We use Gradle as a configuration and build tool: to use it with your IDE, import the project by selecting build.gradle in the project root directory as the project file.

Don't worry about installing Gradle on your system if you don't already have it: the project makes use of Gradle Wrapper, so a correct & current project version of Gradle will automatically be installed and used to run the builds. To use the Gradle wrapper just look for gradlew or gradlew.bat (Windows) in the project's main directory.

Then you can build an archive:

cd <PROJECT_ROOT>

./gradlew clean assembleRelease

# The archive (mapbox-android-sdk-<VERSION>.aar) will be found in
<PROJECTHOME>/MapboxAndroidSDK/build/libs

Don't forget to then also include the dependencies from MapboxAndroidSDK / build.gradle in your classpath!

Code Examples

In addition to the Quick-start Guide, the MapboxAndroidSDKTestApp contains many code examples of commonly requested features. It's also a fully runnable application that's used to test features of the SDK during development.

Changes from OSMDroid

This project is a fork of OSMDroid, but is significantly different as the result of major refactoring and rethinking.

  • GeoJSON and TileJSON support added.
  • The Mapbox Android SDK is Apache 2.0 licensed, and does not include any GPL or copyleft add-ons.
  • Mapbox Android SDK is a small core design. OSMDroid's semi-related utilities like GPX uploading, UI zoom buttons, GEM & Zip file support, Scale Bar, Compass Overlay, and more have been removed. These requirements will be better served by separate modules that do one thing well.
  • Interfaces and abstract classes are only defined when suitable: most single-use interfaces are removed for simplicity.
  • Data objects like points and lines use doubles instead of the E6 int convention. This simplifies implementations. The reuse pattern is also deemphasized, since it's less necessary with newer JITs.
  • Instead of supporting specific tile layers with hardcoded paths, Mapbox Android SDK provides an easy-to-configure TileLayer class.
  • Small modules are used in place of local implementations - DiskLRUCache for caching, OkHttp for connection niceties, and android-geojson for GeoJSON parsing.
  • Markers can optionally use the Mapbox marker API for customized images.
  • Code style follows the Sun conventions
  • Automated tests are included.
  • slf4j dependency is removed

Contributors Note (aka, Where's the master branch?)

The project's master branch is actually mb-pages. There is no branch named master nor will there be. The reason for it is that it allows some automatic processing and publishing of documentation behind the scenes. In practice this shouldn't affect anybody wanting to contribute, but is something that will probably seem a bit "different" to newcomers. Anyway, that's what's going on. If you'd like more information please see #404 .

mapbox-android-sdk's People

Contributors

aegis123 avatar bleege avatar damianw avatar edenh avatar f2prateek avatar farfromrefug avatar fdansv avatar flibbertigibbet avatar friedbunny avatar geografa avatar incanus avatar isatimur avatar katydecorah avatar kjeremy avatar konklone avatar lyzidiamond avatar manimaul avatar nitrog42 avatar o-obushenko avatar pokowaka avatar samanpwbb avatar snowda avatar sonnyrajagopalan avatar sphippen avatar tatsvc avatar tmcw avatar tobrun avatar tristen avatar willwhite avatar zachbeattie avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.