Skip to content

Instantly share code, notes, and snippets.

@natthasath
Last active January 26, 2024 07:04
Show Gist options
  • Save natthasath/8a631c6e2d6dee2bb34e694a6b46d0f6 to your computer and use it in GitHub Desktop.
Save natthasath/8a631c6e2d6dee2bb34e694a6b46d0f6 to your computer and use it in GitHub Desktop.
map-geojson.md
{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "id": 1,
      "properties": {
        "ID": 0
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
              [-90,35],
              [-90,30],
              [-85,30],
              [-85,35],
              [-90,35]
          ]
        ]
      }
    }
  ]
}
Loading
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1,
"properties": {
"ID": 0
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-90,35],
[-90,30],
[-85,30],
[-85,35],
[-90,35]
]
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment