Skip to content

Instantly share code, notes, and snippets.

@rgwozdz
Last active May 14, 2018 13:22
Show Gist options
  • Select an option

  • Save rgwozdz/25e1228d9efe263e9c5ed07e9d0b5959 to your computer and use it in GitHub Desktop.

Select an option

Save rgwozdz/25e1228d9efe263e9c5ed07e9d0b5959 to your computer and use it in GitHub Desktop.
GeoJSON sample
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "point 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-117.0703125,
44.84029065139799
]
}
},
{
"type": "Feature",
"properties": {
"name": "point 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-98.0859375,
37.16031654673677
]
}
},
{
"type": "Feature",
"properties": {
"name": "point 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-79.453125,
38.685509760012
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment