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