Created
December 29, 2022 12:49
-
-
Save LambdaDigamma/0a5f32fbfc9aa2676301e48c0fb1657e to your computer and use it in GitHub Desktop.
Map example
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
| <mgl-map | |
| [style]="'mapbox://styles/lambdadigamma/clc8wtclu000d14p603d2697a'" | |
| [zoom]="[0.5]" | |
| > | |
| <mgl-marker [lngLat]="[-77.036873, 38.907192]"> | |
| <div class="w-4 h-4 bg-black rounded-full border-white border-2"></div> | |
| </mgl-marker> | |
| <mgl-marker [lngLat]="[-122.419418, 37.774929]"> | |
| <div class="w-4 h-4 bg-black rounded-full border-white border-2"></div> | |
| </mgl-marker> | |
| <mgl-marker [lngLat]="[16.373819, 48.208176]"> | |
| <div class="w-4 h-4 bg-black rounded-full border-white border-2"></div> | |
| </mgl-marker> | |
| <mgl-control mglNavigation></mgl-control> | |
| </mgl-map> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment