Skip to content

Instantly share code, notes, and snippets.

@smaillns
Created August 3, 2021 17:05
Show Gist options
  • Save smaillns/c62a8dc73af7cb618901df95e424b956 to your computer and use it in GitHub Desktop.
Save smaillns/c62a8dc73af7cb618901df95e424b956 to your computer and use it in GitHub Desktop.
<!-- component.html -->
<google-map [options]="mapOptions" width="100%">
<map-marker
*ngFor="let spot of spots"
[position]="{ lat: spot.lat, lng: spot.lng }"
[options]="markerOptions"
[clickable]="true"
(mapClick)="selectMarker(spot)"
></map-marker>
</google-map>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment