Skip to content

Instantly share code, notes, and snippets.

@maphew
Created June 27, 2017 20:46
Show Gist options
  • Save maphew/e168430e999fc738eeb3448feda121cd to your computer and use it in GitHub Desktop.
Save maphew/e168430e999fc738eeb3448feda121cd to your computer and use it in GitHub Desktop.
A few geojson points with a 'Name' attribute to use for labelling
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "3" }, "geometry": { "type": "Point", "coordinates": [ -135.0249393739, 60.672798081069011 ] } },
{ "type": "Feature", "properties": { "Name": "4" }, "geometry": { "type": "Point", "coordinates": [ -135.0249393739, 60.672825032341493 ] } },
{ "type": "Feature", "properties": { "Name": "6" }, "geometry": { "type": "Point", "coordinates": [ -135.0249393739, 60.672851983614009 ] } },
{ "type": "Feature", "properties": { "Name": "1" }, "geometry": { "type": "Point", "coordinates": [ -135.02482914462001, 60.672771129797013 ] } },
{ "type": "Feature", "properties": { "Name": "16" }, "geometry": { "type": "Point", "coordinates": [ -135.02482914462001, 60.672798081068997 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment