我正在开发一个应用程序,因为我需要显示 googlemap(V2),并且当我触摸地图时我需要获取特定位置的地址。我在以前版本的谷歌地图中这样做了。在新版本中,我使用以下代码来显示地图,但是当我触摸地图时,我不知道如何获取该位置的地址。
所以,请指导我如何实现这个。
private GoogleMap map;
final LatLng HAMBURG = new LatLng(current_latitude, current_longitude);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG)
.title("Hamburg"));
// Move the camera instantly to hamburg with a zoom of 15.
map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));
// Zoom in, animating the camera.
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);