Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. {
  2. "type": "FeatureCollection",
  3. "features": [
  4. {
  5. "type": "Feature",
  6. "geometry": {
  7. "type": "Point",
  8. "coordinates": [102.0, 0.5]
  9. },
  10. "properties": {
  11. "prop0": "value0"
  12. }
  13. },
  14. {
  15. "type": "Feature",
  16. "geometry": {
  17. "type": "LineString",
  18. "coordinates": [
  19. [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
  20. ]
  21. },
  22. "properties": {
  23. "prop0": "value0",
  24. "prop1": 0.0
  25. }
  26. },
  27. {
  28. "type": "Feature",
  29. "geometry": {
  30. "type": "Polygon",
  31. "coordinates": [
  32. [
  33. [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
  34. [100.0, 1.0], [100.0, 0.0]
  35. ]
  36. ]
  37. },
  38. "properties": {
  39. "prop0": "value0",
  40. "prop1": { "this": "that" }
  41. }
  42. }
  43. ]
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement