Spatial reference systems define mathematical transformations and coordinate systems for displaying spatial information in 2D and 3D.

ISpatialReference can also be imported from the following packages:

import { ISpatialReference } from "@esri/arcgis-rest-geocoding";
import { ISpatialReference } from "@esri/arcgis-rest-routing";
import { ISpatialReference } from "@esri/arcgis-rest-service-admin";
import { ISpatialReference } from "@esri/arcgis-rest-feature-layer";
interface ISpatialReference {
    latestVcsWkid?: number;
    latestWkid?: number;
    latestWkt?: string;
    vcsWkid?: number;
    wkid?: number;
    wkt?: string;
}

Properties

latestVcsWkid?: number
latestWkid?: number
latestWkt?: string
vcsWkid?: number
wkid?: number
wkt?: string