I am using Google Maps v2 in my application. When the user pans or zooms on the screen I would like to get the area of the map based on which I want to fetch the POI only in
You need to use Projection and VisibleRegion classes in order to get visible LatLng region. So your code would look something like:
LatLngBounds curScreen = googleMap.getProjection() .getVisibleRegion().latLngBounds;