In Android I would like to get/return the cursor location (latitude and longitude) when I click anywhere on the screen.
For a location x,y on your MapView ,
MapView map = (MapView) findViewById(R.id.youmapview); Projection proj = map.getProjection(); GeoPoint latlon = proj.fromPixels(x, y);