Skip to content

Instantly share code, notes, and snippets.

@chapani
Last active April 27, 2017 15:45
Show Gist options
  • Save chapani/666133a7a2cc5cfda8a6d9f7b151a677 to your computer and use it in GitHub Desktop.
Save chapani/666133a7a2cc5cfda8a6d9f7b151a677 to your computer and use it in GitHub Desktop.
Proposed Tour GeoJSON
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"properties": {
"id": 1234,
"name": "Journey to Casablanca",
"description": "A wonderful, once in a lifetime type of journey, bla, bla",
"icons": "http://myatlascms.com/assets/icons/"
},
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [12.1234567,-62.0987654]
},
"properties": {
"title": "Stop1",
"order": 1
}
}, {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [80.1234567,-12.0987654]
},
"properties": {
"title": "Stop2",
"order": 2
}
}, {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [46.1234567,-44.0987654]
},
"properties": {
"title": "Stop3",
"order": 3
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment