Represents a projection used by the coordinate transformer.

{
"title" : "WGS84",
"srsCode" : "EPSG:4326",
"wkid": 4326,
"units" : "degree"
}
interface Projection {
    spatialReference: SpatialReference;
    srsCode: string;
    title: string;
    units: string;
    wkid?: number;
}

Properties

spatialReference: SpatialReference

This projection mapped to a SpatialReference object.

srsCode: string

The srs code.

title: string

A human readable title for this projection.

units: string

The units used by this projection.

wkid?: number

The well known id associated with this projection (if available).