Last active
April 27, 2017 15:45
-
-
Save chapani/666133a7a2cc5cfda8a6d9f7b151a677 to your computer and use it in GitHub Desktop.
Proposed Tour GeoJSON
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", | |
"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