Created
June 27, 2017 20:46
-
-
Save maphew/e168430e999fc738eeb3448feda121cd to your computer and use it in GitHub Desktop.
A few geojson points with a 'Name' attribute to use for labelling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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