2017-06-21 13:47:21 +02:00
|
|
|
<ng-template [ngIf]="mapPhotos.length>0">
|
2018-11-26 00:26:29 +01:00
|
|
|
<app-gallery-map-lightbox [photos]="photos" [gpxFiles]="metaFiles"></app-gallery-map-lightbox>
|
2017-06-21 13:47:21 +02:00
|
|
|
<div id="map" #map>
|
2018-12-07 22:06:13 +01:00
|
|
|
|
|
|
|
<yaga-map #yagaMap
|
|
|
|
[draggingEnabled]="false"
|
|
|
|
[keyboardEnabled]="false"
|
|
|
|
[tapEnabled]="false"
|
|
|
|
[boxZoomEnabled]="false"
|
|
|
|
[doubleClickZoomEnabled]="false">
|
|
|
|
<yaga-marker
|
2017-06-21 13:47:21 +02:00
|
|
|
*ngFor="let photo of mapPhotos"
|
2018-12-07 22:06:13 +01:00
|
|
|
[lat]="photo.lat"
|
|
|
|
[lng]="photo.lng">
|
2018-12-08 11:28:56 +01:00
|
|
|
<!-- <yaga-icon
|
|
|
|
[iconSize]="[25,41]"
|
|
|
|
[iconAnchor]="[13,41]"
|
|
|
|
iconUrl="assets/leaflet/marker-icon.png"
|
|
|
|
shadowUrl="assets/leaflet/marker-shadow.png"
|
|
|
|
></yaga-icon>-->
|
2018-12-07 22:06:13 +01:00
|
|
|
</yaga-marker>
|
|
|
|
<yaga-attribution-control
|
2018-12-08 11:28:56 +01:00
|
|
|
prefix=""
|
|
|
|
[attributions]="mapService.ShortAttributions">
|
|
|
|
</yaga-attribution-control>
|
2018-12-07 22:06:13 +01:00
|
|
|
<yaga-tile-layer [url]="mapService.MapLayer"></yaga-tile-layer>
|
|
|
|
</yaga-map>
|
2018-05-27 12:04:35 -04:00
|
|
|
<div class="overlay" (click)="click()"
|
|
|
|
[style.margin-top.px]="-height"
|
|
|
|
[style.height.px]="height">
|
|
|
|
</div>
|
2017-06-21 13:47:21 +02:00
|
|
|
</div>
|
|
|
|
</ng-template>
|