i am developing an application, in that i need to display googlemap(V2) and i need to get the address of the particular location when i touch on the map. I did this in previous version of google maps. In the new version i used the following code for dispalying the map, but i dont know how to get the address of the location when i touch on the map.
So, Please guide me how to implement this one.
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);