Skip to content

Instantly share code, notes, and snippets.

@karussell
Last active November 5, 2019 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karussell/efcf46c24631a4a07c0c537348c01166 to your computer and use it in GitHub Desktop.
Save karussell/efcf46c24631a4a07c0c537348c01166 to your computer and use it in GitHub Desktop.
test geojson
Display the source blob
Display the rendered blob
Raw
{ "type": "FeatureCollection",
"features": [
{ "type": "Feature",
"geometry": {"type": "Point", "coordinates": [102.0, 0.5]},
"properties": {"prop0": "value0"}
},
{ "type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
]
},
"properties": {
"prop0": "value0",
"prop1": 0.0
}
}
]
}