1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/map/map.gallery.component.html
2017-02-05 17:27:58 +01:00

19 lines
596 B
HTML

<gallery-map-lightbox [photos]="photos"></gallery-map-lightbox>
<div id="map" #map>
<sebm-google-map
(click)="click()"
[disableDefaultUI]="true"
[zoomControl]="false"
[streetViewControl]="false"
[usePanning]="false"
[draggable]="false"
[zoom]="0"
[latitude]="mapCenter.latitude"
[longitude]="mapCenter.longitude">
<sebm-google-map-marker
*ngFor="let photo of mapPhotos"
[latitude]="photo.latitude"
[longitude]="photo.longitude">
</sebm-google-map-marker>
</sebm-google-map>
</div>