It is possible to change if a map is interactive or not after creating a map?
In the mapbox-gl-js documentation it is only possible to flag the map as interactive or non interactive when creating the map (option.interactive). But for some reasons I need to change it on the fly and toggle map interactiveness. Something like:
map.setInteractive(true);
or:
map.setInteractive(false);
Thanks for your support.