All Projects → dudu90 → RxLocation

dudu90 / RxLocation

Licence: Apache-2.0 license
Use with rxjava,No memory leak,Simple

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to RxLocation

Rxlocationmanager
RxJava wrap around standard Android LocationManager without Google Play Services
Stars: ✭ 115 (+121.15%)
Mutual labels:  rxjava, location
Rxgps
Finding current location cannot be easier on Android !
Stars: ✭ 307 (+490.38%)
Mutual labels:  rxjava, location
neurosky-android-sdk
Android SDK for the NeuroSky MindWave Mobile Brainwave Sensing Headset
Stars: ✭ 39 (-25%)
Mutual labels:  rxjava
gps-share
Utility to share your GPS device on local network
Stars: ✭ 49 (-5.77%)
Mutual labels:  location
UseCases
This a library that offers a generic implementation of the data layers from the clean architecture by Uncle bob.
Stars: ✭ 23 (-55.77%)
Mutual labels:  rxjava
hms-location-demo
HUAWEI Location Kit sample code encapsulates APIs of the HUAWEI Location Kit. It provides many sample programs for your reference or usage.
Stars: ✭ 32 (-38.46%)
Mutual labels:  location
RxAnimator
An RxJava2 binding for android Animator
Stars: ✭ 80 (+53.85%)
Mutual labels:  rxjava
BaseDevelop
an android project for now fashion open source framework
Stars: ✭ 24 (-53.85%)
Mutual labels:  rxjava
rxjava2-http
Transmit RxJava2 Flowable over http with non-blocking backpressure
Stars: ✭ 19 (-63.46%)
Mutual labels:  rxjava
RxLoading
RxJava library for showing a loading (i.e. progress bar) state while waiting for async data with minimal effort and advanced options.
Stars: ✭ 49 (-5.77%)
Mutual labels:  rxjava
PokemonCards
Android Clean MVP Architecture with Dagger & Simple Package Structure
Stars: ✭ 28 (-46.15%)
Mutual labels:  rxjava
InstagramLocationScraper
No description or website provided.
Stars: ✭ 13 (-75%)
Mutual labels:  location
ehhttp
OkHttp calls as RxJava types
Stars: ✭ 19 (-63.46%)
Mutual labels:  rxjava
ReadnBuyAndroidApp
Android app developed at the Vanhackathon for Shopify's challenge. Coded with Kotlin, RxJava and MVP.
Stars: ✭ 13 (-75%)
Mutual labels:  rxjava
NewsReader
Android News Reader app. Kotlin Coroutines, Retrofit and Realm
Stars: ✭ 21 (-59.62%)
Mutual labels:  rxjava
rxactivitylauncher
Provide a way to receive the results of the Activity by RxJava.
Stars: ✭ 19 (-63.46%)
Mutual labels:  rxjava
RxHttp
基于RxJava2+Retrofit+OkHttp4.x封装的网络请求类库,亮点多多,完美兼容MVVM(ViewModel,LiveData),天生支持网络请求和生命周期绑定,天生支持多BaseUrl,支持文件上传下载进度监听,支持断点下载,支持Glide和网络请求公用一个OkHttpClient⭐⭐⭐
Stars: ✭ 25 (-51.92%)
Mutual labels:  rxjava
locationestimatr.github.io
This is a game where you are put anywhere on earth, and you have to figure out where you are
Stars: ✭ 46 (-11.54%)
Mutual labels:  location
jshodan
Powerful Shodan API client using RxJava and Retrofit
Stars: ✭ 56 (+7.69%)
Mutual labels:  rxjava
AndroidTutorials
Ejemplos Android [Dagger2,RxJava,MVP,Retrofit2,SQLite]
Stars: ✭ 22 (-57.69%)
Mutual labels:  rxjava

RxLocation

Download Build Status

适用于Android的与Rxjava结合的,快速简单的定位库.

特性

1.和Rxjava结合,使你的代码更加简洁;

2.支持高德和百度定位,方便集成。

使用

在Gradle中添加依赖

repositories {
    maven {
        url 'https://dl.bintray.com/dudu90/maven'
    }
}

compile 'RxLocation:rxlocation:1.0'

初始化

RxLocation.initialize(context);
RxLocation.initialize(context,type);
RxLocation.initialize(context,type,option);

获取定位信息

new LocationRequester<BDLocation>().lastLocation()
                .take(1)
                .subscribeOn(Schedulers.io())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(new Action1<BDLocation>() {
                    @Override
                    public void call(BDLocation location) {
                        //TODO
                    }
                });

TODO

1.位置提醒

2.欢迎新的需求

鸣谢

  • 感谢我的同事和良师,promeG
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].