Represents a collection of Polygon geometries.
const mpoly: MultiPolygon = { type: 'MultiPolygon', hasZ: false, hasM: false, polygons: [ { type: 'Polygon', hasZ: false, hasM: false, rings: [[0, 0, 1, 0, 1, 1, 0, 0]] }, ],}; Copy
const mpoly: MultiPolygon = { type: 'MultiPolygon', hasZ: false, hasM: false, polygons: [ { type: 'Polygon', hasZ: false, hasM: false, rings: [[0, 0, 1, 0, 1, 1, 0, 0]] }, ],};
Whether the geometry includes M (measure) values.
Whether the geometry includes Z (elevation/altitude) values.
The array of Polygon geometries contained in this collection.
Discriminant literal identifying this geometry as a MultiPolygon.
Represents a collection of Polygon geometries.
Example