MultiPolygon: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
Maxim@tygron.com (talk | contribs)
No edit summary
Tag: Manual revert
Maxim@tygron.com (talk | contribs)
No edit summary
Line 2: Line 2:


In [[GeoJSON]], a point looks like this:
In [[GeoJSON]], a point looks like this:
<br>
<code>
<code>
{
{

Revision as of 13:07, 15 July 2026

A MultiPolygon is a geometry type that represents multiple Polygons at once.

In GeoJSON, a point looks like this:
{ "type": "Feature", "properties": { "name": "Square" }, "geometry": { "type": "Polygon", "coordinates": [[ [0, 0], [1, 0], [1, 1], [0, 1], [0, 0] ]] } }