I am implementing a Google Maps view that shows some points pinned in the viewport that the user map camera is. When the user moves the camera by dragging the map, the application must fetch new points in the new viewport and display it.
I was wondering if it's possible to implement this using PagedList
, AsyncPagedListDiffer
and a BoundaryCallback
in an analogous way to what RecyclerView.PagedListAdapter
does when it reaches the end of a RecyclerView
.