0
我試圖找到屏幕上可見的區域。我可以找到屏幕的邊界,但是我無法計算km平方的區域的面積?有沒有可能的計算方法?谷歌地圖v2得到可見區域的類型km廣場
googleMap.setOnCameraChangeListener(new OnCameraChangeListener() {
@Override
public void onCameraChange(CameraPosition position) {
LatLngBounds bounds = googleMap.getProjection().getVisibleRegion().latLngBounds;
getAreaInTheScreen(bounds);
}
private double getAreaInTheScreen(LatLngBounds bounds) {
double northLat=bounds.northeast.latitude;
double northLong=bounds.northeast.longitude;
double southLat=bounds.southwest.latitude;
double southLong=bounds.southwest.longitude;
/// it must return an area
return area;
}
});
非常感謝@alexandrius。我不確定它是如此簡單的將LatLng轉換爲計量。 – ali