Skip to content

Instantly share code, notes, and snippets.

@rgwozdz
Created May 31, 2018 13:54
Show Gist options
  • Save rgwozdz/5dae80860973e0f8dc2c097c351981be to your computer and use it in GitHub Desktop.
Save rgwozdz/5dae80860973e0f8dc2c097c351981be to your computer and use it in GitHub Desktop.
GeoJSON with mixed geometry Feature Collection
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-93.1640625,
34.52466147177172
],
[
-89.912109375,
34.59704151614417
],
[
-91.7578125,
37.09023980307208
],
[
-93.1640625,
34.52466147177172
]
]
]
}
},
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
-94.21875,
43.96119063892024
],
[
-102.65625,
37.020098201368114
]
]
}
},
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [
-90.87890625,
41.244772343082076
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment