The parameter draggableCursorcan be set in the google.maps.Map object when created. Is there any way to set this parameter at runtime? Or is there any other clean way to change the cursor at runtime? I looked through the documentation but nothing seems like a method setDraggableCursor...
draggableCursor
setDraggableCursor
This option can be set at runtime. You must set the map parameters using the function map.setOptions(). Set only the required property in the options object:
map.setOptions()
map.setOptions({draggableCursor: myNewDraggableCursor});