patloew / RxLocation

🗺 [DEPRECATED] Reactive Location APIs Library for Android and RxJava 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No error event if address not exist

java1developer opened this issue · comments

use any ocean point for reproduce
disposable.add(rxLocation.geocoding().fromLocation(location.latitude, location.longitude)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Consumer<Address>() {
@Override
public void accept(Address address) {
view.onAddressUpdate(address);
}
}, new Consumer<Throwable>() {
@Override
public void accept(Throwable throwable) {
Log.e(TAG, "Error fetching location/address updates", throwable);
}
}));

This library is now deprecated and not maintained anymore. Please switch to the CoLocation library.