Skip to content

Instantly share code, notes, and snippets.

@pedroer
Forked from cgarrard/cities.geojson
Last active October 2, 2019 18:36
Show Gist options
  • Save pedroer/61c09bf54a4b7c16071cf0164287a660 to your computer and use it in GitHub Desktop.
Save pedroer/61c09bf54a4b7c16071cf0164287a660 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": "CAN", "PLACE": "country" },
"geometry": {
"type": "Point",
"coordinates": [ -113.703198, 54.7000559 ]
}
}
,
{
"type": "Feature",
"properties": { "NAME": "Brazil", "PLACE": "country" },
"geometry": {
"type": "Point",
"coordinates": [ -60.3442074, -14.2374773 ]
}
}
,
{
"type": "Feature",
"properties": { "NAME": "Geneva", "PLACE": "city" },
"geometry": {
"type": "Point",
"coordinates": [ 6.1465886, 46.2017589 ]
}
},
{
"type": "Feature",
"properties": { "NAME": "Lausanne", "PLACE": "city" },
"geometry": {
"type": "Point",
"coordinates": [ 6.6327025, 46.5218269 ]
}
},
{
"type": "Feature",
"properties": { "NAME": "Kitchener", "PLACE": "city" },
"geometry": {
"type": "Point",
"coordinates": [ -80.6163987, 43.4303489 ]
}
},
{
"type": "Feature",
"properties": { "NAME": "Ibia", "PLACE": "city" },
"geometry": {
"type": "Point",
"coordinates": [ -46.5477069, -19.488262 ]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment