An open API service indexing awesome lists of open source software.

https://github.com/wolox/wolmo-maps-android

Wolmo Maps - Wolox Mobile SDK maps module for Android
https://github.com/wolox/wolmo-maps-android

android framework googlemaps maps sdk wolmo wolox

Last synced: 8 months ago
JSON representation

Wolmo Maps - Wolox Mobile SDK maps module for Android

Awesome Lists containing this project

README

          

[![Build Status](https://www.bitrise.io/app/bdcd47872923d729/status.svg?token=FBpjtLs8Y7_r0SqaTDQSXw&branch=master)](https://www.bitrise.io/app/bdcd47872923d729)
[![Release](https://jitpack.io/v/Wolox/wolmo-maps-android.svg)](https://jitpack.io/#Wolox/wolmo-maps-android)



# WOLMO MAPS (ANDROID)

The MAPS module provides simple tools to build Google Maps views.

### Usage

Import the module as alibrary in your project using Gradle:

**root build.gradle**
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
**your app module build.gradle**
```groovy
dependencies {
compile 'com.github.Wolox:wolmo-maps-android:master-SNAPSHOT'
}
```
Note: The above line will download the latest version of the module, if you want to run an specific version replace `master-SNAPSHOT` with `1.0.0` or any other version. Avaiable versions can be found here: [Github releases](https://github.com/Wolox/wolmo-maps-android/releases)
## Features

* Fragments to simplify loading Google Maps
* Polylines and assets rendering over the map
* Zoom controls and utilities
* In-map markers click listeners

### Dependencies

1. [WOLMO CORE](https://github.com/Wolox/wolmo-core-android)
2. Google Maps for Android
3. Google Maps Utils for Android (com.google.maps.android:android-maps-utils:0.4)

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push your branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## About

This project was written by [Wolox](http://www.wolox.com.ar) and is maintained by:
* [Juan Ignacio Molina](https://github.com/juanignaciomolina)
* [Javier Minces](https://github.com/Karamchi)

![Wolox](https://raw.githubusercontent.com/Wolox/press-kit/master/logos/logo_banner.png)

## License

**WOLMO MAPS** is available under the MIT [license](https://raw.githubusercontent.com/Wolox/wolmo-maps-android/master/LICENSE.md).

Copyright (c) Wolox S.A

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.