Last active
August 3, 2021 17:23
-
-
Save smaillns/826db65d4195641d9481b4ecfada0f0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- component.html --> | |
<google-map [options]="mapOptions" width="100%"> | |
<map-marker *ngFor="let spot of spots" | |
[position]="{ lat: spot.lat, lng: spot.lng }" | |
[options]="markerOptions"></map-marker> | |
</google-map> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment