Skip to content

Instantly share code, notes, and snippets.

@schlomm
Last active August 29, 2015 14:07
Show Gist options
  • Save schlomm/25018f4f1bd6cd3380ba to your computer and use it in GitHub Desktop.
Save schlomm/25018f4f1bd6cd3380ba to your computer and use it in GitHub Desktop.
geojson with point, polygon and line
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "mouth"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-65.390625,
28.304380682962783
],
[
-60.99609375,
21.12549763660628
],
[
-53.26171875,
17.811456088564483
],
[
-46.7578125,
17.476432197195532
],
[
-38.14453125,
18.312810846425442
],
[
-32.6953125,
21.94304553343818
],
[
-31.46484375,
24.846565348219734
],
[
-30.585937499999996,
27.527758206861886
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "nose"
},
"geometry": {
"type": "Point",
"coordinates": [
-47.109375,
31.353636941500987
]
}
},
{
"type": "Feature",
"properties": {
"name": "eye_left"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-63.10546874999999,
43.45291889355465
],
[
-63.10546874999999,
45.9511496866914
],
[
-58.18359375,
45.9511496866914
],
[
-58.18359375,
43.45291889355465
],
[
-63.10546874999999,
43.45291889355465
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "eye_right"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-38.49609375,
43.197167282501276
],
[
-38.49609375,
45.82879925192134
],
[
-34.62890625,
45.82879925192134
],
[
-34.62890625,
43.197167282501276
],
[
-38.49609375,
43.197167282501276
]
]
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment