LatLng a = llBounds.getNorthEast();
LatLng b = llBounds.getSouthWest();
CoordinateBounds bounds = new CoordinateBounds(a.getLatitude(),
a.getLongitude(), b.getLatitude(), b.getLongitude());
TripsForBoundsQueryBean query = new TripsForBoundsQueryBean();
query.setBounds(bounds);
query.setTime(System.currentTimeMillis());
query.getInclusion().setIncludeTripBean(true);
WebappServiceAsync service = WebappServiceAsync.SERVICE;
service.getTripsForBounds(query, _handler);
}