Android google maps V2 を使用して、mapView の右上隅の緯度と経度の値を探しています。同じ問題に同様の質問を投稿しましたが、役に立ちません。
このためのコードを書きましたが、値がゼロになりました。
私のコードをチェックしてください:
MapView mapView = ((SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map)).getMap();
LatLngBounds bounds = mapView.getProjection().getVisibleRegion().latLngBounds;
LatLng topright = bounds.northeast;
double toprgt_latitude = topright.latitude;
Log.d("top lat", "" + toprgt_latitude);//getting zero values.