Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/airbnb/AirMapView
A view abstraction to provide a map user interface with various underlying map providers
https://github.com/airbnb/AirMapView
airmapview android google-maps java map mapbox
Last synced: 29 days ago
JSON representation
A view abstraction to provide a map user interface with various underlying map providers
- Host: GitHub
- URL: https://github.com/airbnb/AirMapView
- Owner: airbnb
- License: apache-2.0
- Created: 2015-02-18T17:50:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T21:33:33.000Z (almost 3 years ago)
- Last Synced: 2024-08-03T22:23:08.868Z (4 months ago)
- Topics: airmapview, android, google-maps, java, map, mapbox
- Language: Java
- Homepage: http://airbnb.github.io/AirMapView/
- Size: 8.25 MB
- Stars: 1,870
- Watchers: 165
- Forks: 215
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - airbnb/AirMapView - A view abstraction to provide a map user interface with various underlying map providers (Java)
- awesome-android-ui - https://github.com/airbnb/AirMapView
README
# AirMapView
[![Build Status](https://travis-ci.org/airbnb/AirMapView.svg)](https://travis-ci.org/airbnb/AirMapView)
AirMapView is a view abstraction that enables interactive maps
for devices with and without Google Play Services. It is built
to support multiple native map providers including Google Maps V2 and soon Amazon Maps V2.
If a device does not have any supported native map provider, AirMapView
will fallback to a web based map provider (currently Google Maps). Easy to integrate, it is a drop-in replacement for the Google Maps V2 package. AirMapView's original author is [Nick Adams](https://github.com/nwadams).* [Features](#features)
* [Download](#download)
* [How to Use](#how-to-use)
* [Sample App](#sample-app)## Features
* Google Maps V2
* Swap map providers at runtime
* Web based maps for devices without Google Play Services![](screenshots/google_maps_v2.png)
![](screenshots/google_web_maps.png)## Download
Grab via Gradle:
```groovy
compile 'com.airbnb.android:airmapview:1.8.0'
```Snapshots of the development version are available in [Sonatype's `snapshots` repository](https://oss.sonatype.org/content/repositories/snapshots/).
## Sample App
The project includes a sample app which uses AirMapView. The sample app allows toggling between map providers, exemplifies adding map markers, and displays various callback information. The sample project can be built manually or you can [download the APK](https://www.dropbox.com/s/8gcxn2ouc44t53x/AirMapView-Sample.apk?dl=0).## How to Use
1. Define `AirMapView` in your layout file
```xml
```1. Initialize in code
```java
mapView = (AirMapView) findViewById(R.id.map_view);
mapView.initialize(getSupportFragmentManager());
```1. Add markers/polylines/polygons
```java
map.addMarker(new AirMapMarker(latLng, markerId)
.setTitle("Airbnb HQ")
.setIconId(R.drawable.icon_location_pin));
```## Mapbox Web setup
To use Mapbox Web maps in AirMapView, you'll need to [sign up for a free account with Mapbox](https://www.mapbox.com/signup/). From there you'll use an [Access Token](https://www.mapbox.com/help/define-access-token/) and [Map ID](https://www.mapbox.com/help/define-map-id/) in your AirMapView app. They're are then included in your app's `AndroidManifest.xml` file as `meta-data` fields.```xml
```
## Native Google Maps setup
With AirMapView, to support native Google maps using the [Google Maps v2](https://developers.google.com/maps/documentation/android/) SDK you will still need to set up the Google Maps SDK as described [here](https://developers.google.com/maps/documentation/android/start#getting_the_google_maps_android_api_v2). Follow all the instructions except the one about adding a map since AirMapView takes care of that for you. See the sample app for more information about how to set up the maps SDK.
License
--------Copyright 2015 Airbnb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.[1]: http://airbnb.github.io/airbnb/AirMapView/