<ejs-dashboardlayout id='editLayout' [columns]="6" #editLayout [allowResizing]="allowResizing" [allowDragging]="allowDragging" >
<e-panels>
<e-panel [sizeX]="2" [sizeY]="1" [row]="0" [col]="0">
<ng-template #header>
<div>Google Maps</div>
</ng-template>
<ng-template #content>
<div class="card" style="height:100%;width:100%;">
<div class="container"style="height:100%;width:100%;">
<agm-map [latitude]="latitude" [longitude]="longitude" [scrollwheel]="false" [zoom]="zoom" [usePanning]='true' (mapReady)="mapReady($event)"
>
<agm-marker [latitude]="latitude" [longitude]="longitude" iconUrl="http://maps.google.com/mapfiles/ms/icons/blue-dot.png"></agm-marker>
</agm-map>
</div>
</div>
</ng-template>
</e-panel>
</e-panels>
</ejs-dashboardlayout> |