geopackage-ts
    Preparing search index...

    Interface MultiPoint

    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] },
    ],
    };
    interface MultiPoint {
        hasM: boolean;
        hasZ: boolean;
        points: Point[];
        type: "MultiPoint";
    }
    Index

    Properties

    Properties

    hasM: boolean

    Whether the geometry includes M (measure) values.

    hasZ: boolean

    Whether the geometry includes Z (elevation/altitude) values.

    points: Point[]

    The array of Point geometries contained in this collection.

    type: "MultiPoint"

    Discriminant literal identifying this geometry as a MultiPoint.