I have found several V2 examples of how to pan the map while a marker is being dragged. For example: http://www.putyourlightson.net/projects/coordinates
//
use dragend instead of drag. the code will be,
google.maps.event.addListener(marker, "dragend", function(event) { var point = marker.getPosition(); map.panTo(point); });