In Google Maps V3, how can I get a draggable marker to pan the map?
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 // create map and add controls var map = new GMap2(document.getElementById("map")); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); // set centre point of map var centrePoint = new GLatLng('53.34870686020199', '-6.267356872558594'); map.setCenter(centrePoint, 14); // add a draggable marker var marker = new GMarker(centrePoint, {draggable: true}); map.addOverlay(marker); // add a drag listener to the map GEvent