當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。