By modifying the common vertex, not all geometries were changed when the geometries were aggregated in the collection

This commit is contained in:
Michał Zielański
2020-06-29 10:48:17 +02:00
parent 4758b533d0
commit 3d9dfe2654
3 changed files with 100 additions and 5 deletions

View File

@@ -212,10 +212,21 @@ const geojsonObject = {
'type': 'Polygon',
'coordinates': [
[
[1e6, -6e6],
[2e6, -4e6],
[3e6, -6e6],
[1e6, -6e6],
[1e6, -5e6],
[2e6, -3.5e6],
[3e6, -5e6],
[1e6, -5e6],
],
],
},
{
'type': 'Polygon',
'coordinates': [
[
[1e6, -5e6],
[2e6, -6.5e6],
[3e6, -5e6],
[1e6, -5e6],
],
],
},