There are several ways to do this:
One, use MapView.getProjection()that allows you to convert between screen coordinates and geographical points.
Two, use a combination MapView.getMapCenter(), MapView.getLatitudeSpan()and MapView.getLongitudeSpan()and do a little math. The first option sounds better in your case, but your mileage may vary.
In any case, the MapView document is in full here.
source
share