I'm using angular google maps module for my Angular application (5.x.x) every things working fine except for the point that satellite toggle button is not showing which is default feature of google maps API. I saw on google official documentation screen there's an option to disable satellite view but don't know how to implement it in angular google maps API.
<agm-map [latitude]="lat" [longitude]="lng">
<agm-marker [latitude]="lat"
[longitude]="lng"
[iconUrl]="'assets/images/robot/rad-tower.gif'"></agm-marker>
<agm-marker [latitude]="-34.397"
[longitude]="149.644"
[iconUrl]="'assets/images/robot/rad-tower.gif'"></agm-marker>
<agm-marker [latitude]="-33.397"
[longitude]="149.644"
[iconUrl]="'assets/images/robot/rad-tower.gif'"></agm-marker>
<agm-marker [latitude]="-33.397"
[longitude]="150.644"
[iconUrl]="'assets/images/robot/rad-tower.gif'"></agm-marker>
</agm-map>
Whereas lat and lng are simple variable with values
add these attributes [fullscreenControl]='true' [mapTypeControl]='true'
in <agm-map>
<agm-map [latitude]="lat" [longitude]="lng" [scrollwheel]="false" [zoom]="zoom"
[fullscreenControl]='true' [mapTypeControl]='true' >
<agm-marker [latitude]="lat" [longitude]="lng"></agm-marker>
</agm-map>