0

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.
4

2 に答える 2

0
LatLng currentposition = new LatLng(location.getLatitude(), location.getLongitude());
sys.out.println(""+location.getLatitude()""+location.getLongitude());
于 2013-03-20T07:09:22.577 に答える