Skip to content

Instantly share code, notes, and snippets.

@sgillies
Created October 30, 2015 14:38
Show Gist options
  • Save sgillies/819fea9424da651a2d8a to your computer and use it in GitHub Desktop.
Save sgillies/819fea9424da651a2d8a to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"@context": {
"@vocab": "http://example.com/vocab#",
"Place": "http://schema.org/Place",
"name": "http://schema.org/name"
},
"type": "FeatureCollection",
"@id": "http://example.com/collections/1",
"features": [
{
"type": "Feature",
"@type": ["Feature", "Place"],
"id": "1",
"@id": "http://example.com/collections/1/features/1",
"properties": {"name": "Fort Collins, Colorado" },
"geometry": {"type": "Point", "coordinates": [-105.078056, 40.559167]}
},
{
"type": "Feature",
"@type": ["Feature", "Place"],
"id": "2",
"@id": "http://example.com/collections/1/features/2",
"properties": {"name": "Boulder, Colorado" },
"geometry": {"type": "Point", "coordinates": [-105.251945, 40.027435]}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment