Created
September 2, 2016 01:08
-
-
Save chriddyp/f8799c3ff141b6b0564b805e9b236388 to your computer and use it in GitHub Desktop.
Simple GeoJSON files
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
{ | |
"type": "FeatureCollection", | |
"features": [{ | |
"properties": {}, | |
"type": "Feature", | |
"geometry": { | |
"type": "MultiLineString", | |
"coordinates": [ | |
[ | |
[-73, 45], | |
[-76, 46], | |
[-75, 47] | |
], | |
[ | |
[-70, 42], | |
[-73, 43], | |
[-72, 43] | |
] | |
] | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment