How to disable map rotation in flutter_map while zooming?
I tried this way:
MapOptions(
    interactiveFlags: InteractiveFlag.pinchZoom | InteractiveFlag.drag,
    zoom: 15.0,
  ),
But this always disable rotation. I only want to temporarily disable rotation when zooming. Is this possible?
 
     
    