Last active
August 29, 2015 14:21
-
-
Save 65/b6a7d2d7d1188ae5308a to your computer and use it in GitHub Desktop.
Medic52 GeoJSON Examples
This file contains hidden or 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
"buildings":{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[148.391956873,-36.41520944409831,0], | |
[148.3919040810001,-36.41515732409829,0], | |
[148.3918164930001,-36.4152178410983,0], | |
[148.3918692860001,-36.41526996009833,0], | |
[148.391956873,-36.41520944409831,0] | |
] | |
] | |
}, | |
"properties": { | |
"name": "Eyre Kiosk", | |
"description": "Any HTML or plain text description" | |
} | |
} | |
] | |
} | |
This file contains hidden or 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
"lifts":{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[148.391849263,-36.38838507709856,0], | |
[148.3931811470001,-36.3871646770986,0] | |
] | |
}, | |
"properties": { | |
"name": "Pony Ride Carpet", | |
"description": "Any HTML or plain text description" | |
} | |
} | |
] | |
} |
This file contains hidden or 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
"runs":{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[148.3974074411055,-36.40955224694939,0], | |
[148.3974548335766,-36.409491562451,0], | |
[148.3974995019024,-36.40943007815974,0], | |
[148.3975414460879,-36.40936779407878,0], | |
[148.3975806661385,-36.40930471021095,0], | |
[148.3976171620597,-36.40924082655871,0] | |
] | |
}, | |
"properties": { | |
"rating": "blue", | |
"description": "Any HTML or plain text description" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment