map.geojson 649 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "type": "FeatureCollection",
  3. "features": [
  4. {
  5. "type": "Feature",
  6. "properties": {
  7. "name": "Golden Gate Bridge",
  8. "category": "landmark"
  9. },
  10. "geometry": {
  11. "type": "Point",
  12. "coordinates": [-122.4783, 37.8199]
  13. }
  14. },
  15. {
  16. "type": "Feature",
  17. "properties": {
  18. "name": "San Francisco Bay sample route",
  19. "category": "route"
  20. },
  21. "geometry": {
  22. "type": "LineString",
  23. "coordinates": [
  24. [-122.515, 37.81],
  25. [-122.4783, 37.8199],
  26. [-122.393, 37.795],
  27. [-122.355, 37.83]
  28. ]
  29. }
  30. }
  31. ]
  32. }