How can i modify a V3 map\'s mapOptions (after the initial map has been loaded)?
Specifically, I would like to be able to flip the
draggable: false
Found that I don't even need jQuery for this – it's already part of the Google Maps API. Simply do:
map.set('draggable', true);
Too easy! Hope it helps someone.