Last active
January 20, 2021 01:27
-
-
Save gavinr/65fa68567a018554f917b446aae95df4 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"marker-color": "#ff0000", | |
"marker-size": "medium", | |
"marker-symbol": "", | |
"City": "St. Louis" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-90.17578124999999, | |
38.57393751557591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"City": "Detroit", | |
"marker-color": "#ff0000", | |
"marker-size": "medium" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-83.0401611328125, | |
42.338244963350846 | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment