Hi i am developping an android application in which i need the user to choose a location by mouving a parker so i can get the informations i need exactly like this but in an and
Utilize draggable markers, via the onMarkerDragEnd
method
@Override
public void onMarkerDragEnd(Marker marker) {
// TODO Auto-generated method stub
}
Within that method you could do something like
LatLng position = marker.getPosition();
double latitude = position.latitude;
double longitude = position.longitude;
There you have it. .........