| 123456789101112131415161718192021222324252627282930313233 |
- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "properties": {
- "name": "Golden Gate Bridge",
- "category": "landmark"
- },
- "geometry": {
- "type": "Point",
- "coordinates": [-122.4783, 37.8199]
- }
- },
- {
- "type": "Feature",
- "properties": {
- "name": "San Francisco Bay sample route",
- "category": "route"
- },
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [-122.515, 37.81],
- [-122.4783, 37.8199],
- [-122.393, 37.795],
- [-122.355, 37.83]
- ]
- }
- }
- ]
- }
|