当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS SpatialReference用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/geometry/SpatialReference"], (SpatialReference) => { /* code goes here */ });

ESM: import SpatialReference from "@arcgis/core/geometry/SpatialReference";

类: esri/geometry/SpatialReference

继承: SpatialReference > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

定义视图、图层或方法参数的空间参考。这表示用于在Map中定位地理特征的投影坐标系或地理坐标系。每个投影和地理坐标系均由众所周知的 ID (WKID) 或定义字符串 (WKT) 定义。请注意,对于 ArcGIS 10 之前的版本,仅支持 WKID。有关受支持的空间参考 ID 及其相应定义字符串的完整列表,请参阅 Using spatial references

例子:

// set the spatial reference of a view to WebMercator using wkid
const view = new SceneView({
  container: "viewDiv",
  map: map,
  spatialReference: {
    wkid: 3857
  }
});
// set the spatial reference of a geometry
// to WGS84 using the WGS84 property
const point = new Point({
  x: 10.1,
  y: 47.4,
  spatialReference: SpatialReference.WGS84
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 SpatialReference。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。