I have a specific element called #listMDMap that needs to be positioned within the row div.
<div class="col-md-6">
<div class="row">
<div id="listMDMap" [style.position]="'fixed'" [style.top.px]="computeMapTopForFixedPosition()" class="col-md-12" [style.height.px]="computeMapMDHeight()" >
<agm-map #gm [latitude]="mainLatitude" [longitude]="mainLongitude" [style.height.px]="computeMapMDHeight()" [fitBounds]="true">
..................
..................
</agm-map>
</div>
</div>
</div>
What is the best way to achieve this?