map.geojson 886 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "type": "FeatureCollection",
  3. "features": [
  4. {
  5. "type": "Feature",
  6. "properties": { "name": "Flyfish HQ", "kind": "point" },
  7. "geometry": { "type": "Point", "coordinates": [121.4737, 31.2304] }
  8. },
  9. {
  10. "type": "Feature",
  11. "properties": { "name": "Preview route", "kind": "line" },
  12. "geometry": {
  13. "type": "LineString",
  14. "coordinates": [
  15. [121.462, 31.222],
  16. [121.468, 31.228],
  17. [121.476, 31.235],
  18. [121.484, 31.232]
  19. ]
  20. }
  21. },
  22. {
  23. "type": "Feature",
  24. "properties": { "name": "Document district", "kind": "polygon" },
  25. "geometry": {
  26. "type": "Polygon",
  27. "coordinates": [[
  28. [121.458, 31.218],
  29. [121.488, 31.218],
  30. [121.488, 31.242],
  31. [121.458, 31.242],
  32. [121.458, 31.218]
  33. ]]
  34. }
  35. }
  36. ]
  37. }