use of com.omkarmoghe.pokemap.models.events.PokestopsEvent in project Pokemap by omkarmoghe.
the class NianticManager method getPokeStops.
public void getPokeStops(final double lat, final double longitude, final double alt) {
final int myCurrentBatch = this.currentBatchCall;
mHandler.post(new Runnable() {
@Override
public void run() {
try {
if (mPokemonGo != null && NianticManager.this.currentBatchCall == myCurrentBatch) {
Thread.sleep(133);
mPokemonGo.setLocation(lat, longitude, alt);
Thread.sleep(133);
Collection<Pokestop> pokestops = mPokemonGo.getMap().getMapObjects().getPokestops();
if (NianticManager.this.currentBatchCall == myCurrentBatch)
EventBus.getDefault().post(new PokestopsEvent(pokestops, lat, longitude));
}
} catch (LoginFailedException e) {
e.printStackTrace();
Log.e(TAG, "Failed to fetch map information via getPokeStops(). Login credentials wrong or user banned. Raised: " + e.getMessage());
EventBus.getDefault().post(new LoginEventResult(false, null, null));
} catch (RemoteServerException e) {
e.printStackTrace();
Log.e(TAG, "Failed to fetch map information via getPokeStops(). Remote server unreachable. Raised: " + e.getMessage());
EventBus.getDefault().post(new ServerUnreachableEvent(e));
} catch (InterruptedException | RuntimeException e) {
e.printStackTrace();
Log.e(TAG, "Failed to fetch map information via getPokeStops(). PoGoAPI crashed. Raised: " + e.getMessage());
EventBus.getDefault().post(new InternalExceptionEvent(e));
}
}
});
}
Aggregations