Tôi đã tìm thấy hai cách để làm điều này:
1) Dễ nhất, Đầu tiên là sử dụng thuộc tính mục tiêu trong Đối tượng Vị trí Máy ảnh của Bản đồ
LatLng center = mMap.getCameraPosition().target;
2) Thứ hai là sử dụng đối tượng VisibleRegion:
VisibleRegion visibleRegion = mMap.getProjection()
.getVisibleRegion();
Point x = mMap.getProjection().toScreenLocation(
visibleRegion.farRight);
Point y = mMap.getProjection().toScreenLocation(
visibleRegion.nearLeft);
Point centerPoint = new Point(x.x / 2, y.y / 2);
LatLng centerFromPoint = mMap.getProjection().fromScreenLocation(
centerPoint);
Tôi đã so sánh cả hai câu trả lời:
Log.d("MapFragment: ", "Center From camera: Long: " + center.longitude
+ " Lat" + center.latitude);
Log.d("Punto x", "x:" + x.x + "y:" + x.y);
Log.d("Punto y", "y:" + y.x + "y:" + y.y);
Log.d("MapFragment: ", "Center From Point: Long: "
+ centerFromPoint.longitude + " Lat"
+ centerFromPoint.latitude);