altShiftDragRotate:false a las interacciones en mi mapa, pero solo funciona en el modo de escritorio. cuando abro mi página en mi móvil puedo rotar el mapa con 2 dedos. ¿Hay alguna forma de deshabilitar la rotación del mapa también en modo móvil?
map = new ol.Map({ layers: [ new ol.layer.Group({ 'title': 'Mapas de base', layers: [grisOSM, mapaOSM] }), /* new ol.layer.Group({ title: 'Capas de información', layers: [ ] }) */ ], target: 'map', controls: ol.control.defaults({ zoom: true, attributionOptions: /** @type {olx.control.AttributionOptions} */ ({ collapsible: false }) }).extend([ scaleLineControl ]), view: vista, interactions: new ol.interaction.defaults({ altShiftDragRotate: false }), });Puede deshabilitar la rotación configurando enableRotation: false en el objeto de vista.
vista = new ol.View({ ... enableRotation: false })