有一个“人”图标,允许用户查看“街景”。我不希望这个功能在我的地图上,有没有办法删除或禁用它?
街景
The answer is actually in the 2nd paragraph you linked to, but your code should look something like this:
var mapOptions = { center: mapCenter, zoom: 10, streetViewControl: false, mapTypeId: google.maps.MapTypeId.ROADMAP };
我想添加到选择的答案,并说,如果你想删除缩放控制(正负按钮) ,然后改变
streetViewControl: false,
和
disableDefaultUI: true,
它对移动触摸屏更有用,因为你可以用两个手指放大。