I am using angular google maps and to display maps and marker and info window. Info window is placed always on top. How to change its position to right?
<agm-map [latitude]="lat" [longitude]="lng" [zoom]="zoom">
<agm-marker *ngFor="let m of mapArrayList; let i = index" (markerClick)="clickedMarker(infowindow)" [latitude]="m.geometry.location.lat"
[longitude]="m.geometry.location.lng">
<agm-info-window #infowindow>
<div>{{name}}</div>
</agm-info-window>