Skip to content

Instantly share code, notes, and snippets.

@ZaninAndrea
Last active May 15, 2019 09:45
Show Gist options
  • Save ZaninAndrea/b126096c2cc468318a64f70014c617a0 to your computer and use it in GitHub Desktop.
Save ZaninAndrea/b126096c2cc468318a64f70014c617a0 to your computer and use it in GitHub Desktop.
example GeoJSON
[
{
"type": "Feature",
"properties": {
"party": "Republican"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-104.05, 48.99],
[-97.22, 48.98],
[-96.58, 45.94],
[-104.03, 45.94],
[-104.05, 48.99]
]
]
}
},
{
"type": "Feature",
"properties": {
"party": "Democrat"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-109.05, 41.0],
[-102.06, 40.99],
[-102.03, 36.99],
[-109.04, 36.99],
[-109.05, 41.0]
]
]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment