Android Google Maps get Boundary Co-ordinates

Harsha M V picture Harsha M V · Feb 5, 2013 · Viewed 17.8k times · Source

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 the screen view part.
I went through the documentation but could not find any help.

Answer

Pavel Dudka picture Pavel Dudka · Feb 5, 2013

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;