mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
15 lines
461 B
HTML
15 lines
461 B
HTML
<sebm-google-map
|
|
[disableDefaultUI]="true"
|
|
[zoomControl]="false"
|
|
[streetViewControl]="false"
|
|
[zoom]="0"
|
|
[latitude]="mapCenter.latitude"
|
|
[longitude]="mapCenter.longitude">
|
|
<sebm-google-map-marker
|
|
|
|
*ngFor="let photo of mapPhotos"
|
|
[latitude]="photo.latitude"
|
|
[longitude]="photo.longitude"
|
|
[iconUrl]="photo.iconUrl">
|
|
</sebm-google-map-marker>
|
|
</sebm-google-map> |