Skip to content

Instantly share code, notes, and snippets.

@enghqii
Last active April 3, 2019 07:57
Show Gist options
  • Select an option

  • Save enghqii/bacb0e17dd9cd1b49ec9bd180e753274 to your computer and use it in GitHub Desktop.

Select an option

Save enghqii/bacb0e17dd9cd1b49ec9bd180e753274 to your computer and use it in GitHub Desktop.
GeoJson with multiple holes
Display the source blob
Display the rendered blob
Raw
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-120,
60
],
[
120,
60
],
[
120,
-60
],
[
-120,
-60
],
[
-120,
60
]
],
[
[
-60,
30
],
[
25,
30
],
[
25,
-30
],
[
-60,
-30
],
[
-60,
30
]
],
[
[
31,
30
],
[
60,
30
],
[
60,
-30
],
[
31,
-30
],
[
31,
30
]
]
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment