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

paths: number[][][]

Three nested arrays which corresponds to a polyline.

spatialReference?: SpatialReferenceJson

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