Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lostzen/lost
- Owner: lostzen
- License: other
- Archived: true
- Created: 2014-04-04T20:26:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-04-23T14:07:13.000Z (over 1 year ago)
- Last Synced: 2024-09-21T18:14:45.503Z (about 2 months ago)
- Topics: android, android-development, android-library, location, location-based, location-privacy, location-services
- Language: Java
- Homepage: http://mapzen.github.io/lost/
- Size: 1.82 MB
- Stars: 351
- Watchers: 42
- Forks: 70
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - lostzen/lost - A drop-in replacement for Google Play services location APIs for Android (android)
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