Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lostzen/lost

A drop-in replacement for Google Play services location APIs for Android
https://github.com/lostzen/lost

android android-development android-library location location-based location-privacy location-services

Last synced: about 1 month ago
JSON representation

A drop-in replacement for Google Play services location APIs for Android

Awesome Lists containing this project

README

        

# Deprecated

This project is deprecated for use and not recommended for modern Android applications. The maintainers are no longer available to maintain it and the implementation is now fairly divergent from modern Android requirements. We appreciate everyone who has contributed to this project in the past. Thank you!

# Lost

Location Open Source Tracker (for Android)

[![Circle CI Build Status](https://circleci.com/gh/mapzen/lost.png?circle-token=87063f053ef960fa184031157ec01aa5549fd4ce)](https://circleci.com/gh/mapzen/lost)

# Usage

This project seeks to provide an open source alternative to the [Google Play services location APIs][2] that depends only on the Android SDK. It provides 1:1 replacements for the [FusedLocationProviderApi][3], [GeofencingApi][4], and [SettingsApi][5].

Lost operates by making calls directly to the [LocationManager][1]. Lost can run on any Android device running API 15 or higher regardless of whether or not it supports the Google Play ecosystem.

Set up:
- [Installation](https://github.com/mapzen/lost/blob/master/docs/installation.md)
- [Upgrading 1.x to 2.0](https://github.com/mapzen/lost/blob/master/docs/upgrade-1x-2.md)
- [Upgrading 2.x to 3.0](https://github.com/mapzen/lost/blob/master/docs/upgrade-2x-3.md)
- [Getting Started](https://github.com/mapzen/lost/blob/master/docs/getting-started.md)
- [Getting the Last Known Location](https://github.com/mapzen/lost/blob/master/docs/last-known-location.md)
- [Receiving Location Updates](https://github.com/mapzen/lost/blob/master/docs/location-updates.md)
- [Mock Locations & Routes](https://github.com/mapzen/lost/blob/master/docs/mock-locations-routes.md)
- [Changing Location Settings](https://github.com/mapzen/lost/blob/master/docs/location-settings.md)
- [Creating and Monitoring Geofences](https://github.com/mapzen/lost/blob/master/docs/geofences.md)

# Sample
For a working example please refer to the [Sample App](https://github.com/mapzen/lost/tree/master/lost-sample).

[1]: https://developer.android.com/reference/android/location/LocationManager.html
[2]: http://developer.android.com/google/play-services/location.html
[3]: https://developer.android.com/reference/com/google/android/gms/location/FusedLocationProviderApi.html
[4]: https://developers.google.com/android/reference/com/google/android/gms/location/GeofencingApi.html
[5]: https://developers.google.com/android/reference/com/google/android/gms/location/SettingsApi.html