interface PointJson {
    m?: number;
    spatialReference?: SpatialReferenceJson;
    x: string | number;
    y: string | number;
    z?: string | number;
}

Hierarchy (view full)

Properties

m?: number

M coordinate which contains measures used for linear referencing.

spatialReference?: SpatialReferenceJson

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

x: string | number

X coordinate which is measured along the east/west axis.

y: string | number

Y coordinate which is measured along the north/south axis.

z?: string | number

Z coordinate which measures height or elevation.