Skip to content

Instantly share code, notes, and snippets.

@smebinger
Forked from cgarrard/cities.geojson
Last active January 16, 2020 02:47
Show Gist options
  • Save smebinger/afb824355d6e33f4dec52ceb8023ce93 to your computer and use it in GitHub Desktop.
Save smebinger/afb824355d6e33f4dec52ceb8023ce93 to your computer and use it in GitHub Desktop.
Sample geojson
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": { "NAME": "GENEVA", "PLACE": "town" },
"geometry": {
"type": "Point",
"coordinates": [ 6.1465886, 46.2017589 ]
}
},
{
"type": "Feature",
"properties": { "NAME": "Manchester", "PLACE": "city" },
"geometry": {
"type": "Point",
"coordinates": [ 6.6327025, 46.5218269 ]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment