如何在 agm angular 中禁用街景小人和全屏选项?

How to disable pegman and fullscreen options in agm angular?

我正在为我的 angular 应用程序使用 AGM Google 地图,并试图从代码中删除街景小人和全屏选项。这是我的代码。

<agm-map [latitude]="lat" [longitude]="lng" [styles]="styles" [zoom]="zoom" [disableFullscreen]="true" [disablePegman]="true">
    <agm-marker [latitude]="lat" [longitude]="lng"></agm-marker>
</agm-map>

有什么想法吗?我在这里做错了什么?

HTML

<agm-map (mapReady)="onMapReady($event)"

TS

onMapReady(map?: google.maps.Map ){
   if(map)
     map.setOptions({
       streetViewControl: false,
       fullscreenControl: false
     });
 }