interface PolygonJson {
    hasM?: boolean;
    hasZ?: boolean;
    rings: 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.

rings: number[][][]

Represents an array of points. Each point is an array of numbers.

spatialReference?: SpatialReferenceJson

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