OpenLayers 地图交互事件 缩放、旋转
//设置不能缩放
interactions: ol.interaction.defaults({
doubleClickZoom: false,
mouseWheelZoom: false,
shiftDragZoom: false,
pinchZoom:false
}),
设置不能旋转
altShiftDragRotate:false,
pinchRotate:false
转载自:https://blog.csdn.net/qq_36986305/article/details/81132384