MultiPolygon: Difference between revisions
Jump to navigation
Jump to search
Created page with "A MultiPolygon is a geometry type that represents multiple Polygons at once." |
No edit summary |
||
| Line 1: | Line 1: | ||
A MultiPolygon is a geometry type that represents multiple [[Polygon]]s at once. | A MultiPolygon is a geometry type that represents multiple [[Polygon]]s at once. | ||
In [[GeoJSON]], a point looks like this: | |||
<code> | |||
{ | |||
"type": "Feature", | |||
"properties": { "name": "Square" }, | |||
"geometry": { | |||
"type": "Polygon", | |||
"coordinates": [[ | |||
[0, 0], [1, 0], [1, 1], [0, 1], [0, 0] | |||
]] | |||
} | |||
} | |||
</code> | |||
{{article end | |||
|seealso= | |||
* [[Point]] | |||
* [[Polygon]] | |||
* [[GeoJSON]] | |||
}} | |||