I set the draggingCursor and draggableCursor style. The cursor style begins as draggableCursor and correctly changes to draggingCursor as the pan begins; however, it only returns to draggableCursor if I hover briefly over a marker or polyline (with cursor = 'pointer').
var mapOptions = {
draggableCursor:'hand',
draggingCursor: 'move'
}
It is as if the map still thinks that it is panning. How can I force the map to switch back to the draggableCursor style at the end of the pan?