我正在 使用 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.