Google 地图 Javascript API - 禁用街景 Keyboard/Mouse 旋转和键盘缩放

Google Maps Javascript API - StreetView Disable Keyboard/Mouse Rotate and Keyboard Zoom

如何执行标题中指定的操作。

我在此基础上尝试过,但无法: https://developers.google.com/maps/documentation/javascript/reference

我不确定您将如何通过鼠标进行旋转,但是对于键盘快捷键,当我观察到 <body/> 的按键事件并停止传播事件时,它对我有用已按下特定键之一:

 //run this after the page has been loaded
  google.maps.event.addDomListener(document.body,'keydown',function(e){
    if([37,38,39,40,107,109,187,189].indexOf(e.keyCode)>-1){   
      e.stopPropagation();return false;
    }
  });