interface MultipointJson {
    hasM?: boolean;
    hasZ?: boolean;
    points: number[][];
    spatialReference?: SpatialReferenceJson;
}

Hierarchy (view full)

Properties

hasM?: boolean

Indicates whether the geometry contains M coordinate values.

hasZ?: boolean

Indicates whether the geometry contains Z coordinate values.

points: number[][]

An array that corresponds to 2D and 3D points.

spatialReference?: SpatialReferenceJson

The spatial reference can be defined using a well-known ID (WKID) or well-known text (WKT).