2017-06-21 19:47:21 +08:00
|
|
|
<ng-template [ngIf]="mapPhotos.length>0">
|
2018-05-04 07:17:08 +08:00
|
|
|
<app-gallery-map-lightbox [photos]="photos"></app-gallery-map-lightbox>
|
2017-06-21 19:47:21 +08:00
|
|
|
<div id="map" #map>
|
2017-05-27 16:15:57 +08:00
|
|
|
<agm-map
|
2017-06-21 19:47:21 +08:00
|
|
|
[disableDefaultUI]="true"
|
|
|
|
[zoomControl]="false"
|
|
|
|
[streetViewControl]="false"
|
|
|
|
[usePanning]="false"
|
|
|
|
[draggable]="false"
|
|
|
|
[zoom]="0"
|
2018-05-28 00:04:35 +08:00
|
|
|
[fitBounds]="latlngBounds">
|
2017-06-21 19:47:21 +08:00
|
|
|
<agm-marker
|
|
|
|
*ngFor="let photo of mapPhotos"
|
|
|
|
[latitude]="photo.latitude"
|
|
|
|
[longitude]="photo.longitude">
|
|
|
|
</agm-marker>
|
2017-05-27 16:15:57 +08:00
|
|
|
</agm-map>
|
2018-05-28 00:04:35 +08:00
|
|
|
<div class="overlay" (click)="click()"
|
|
|
|
[style.margin-top.px]="-height"
|
|
|
|
[style.height.px]="height">
|
|
|
|
</div>
|
2017-06-21 19:47:21 +08:00
|
|
|
</div>
|
|
|
|
</ng-template>
|