To get the coordinates of the TopLeft and BottomRight maps at any time, use the following:
public GeoPoint getCurrentTL(MapView map){ Projection pr = map.getProjection(); return pr.fromPixels(0, 0); } public GeoPoint getCurrentBR(MapView map){ Projection pr = map.getProjection(); return pr.fromPixels(map.getWidth(), map.getHeight()); }
source share