Created
November 14, 2017 14:57
-
-
Save GuillaumeAllegre/5a2b7b0c8506b671b56bef6241f38b7b to your computer and use it in GitHub Desktop.
geojson example
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": { | |
"stroke": "#ff0090", | |
"stroke-width": 4, | |
"stroke-opacity": 1 | |
}, | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[ 5.71117, 45.16425 ], | |
[ 5.71632, 45.18034 ] | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment