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


JavaScript ArcGIS MapView.center用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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

ESM: import MapView from "@arcgis/core/views/MapView";

類: esri/views/MapView

繼承: MapView > View > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

MapView.center函數(或屬性)的定義如下:

center Point autocast

來自 Number[]|Object

表示視圖的中心點;設置中心時,您可以傳遞 Point 實例或表示經度/緯度對 ([-100.4593, 36.9014]) 的數字數組。設置中心會立即更改當前視圖。要為視圖設置動畫,請參閱 goTo()

返回的Point 對象始終位於視圖的空間參考中,並且可以在內部進行修改。要持久化返回的對象,請使用 Point.clone() 創建一個克隆。

注意

  • 如果構造函數中設置的center的空間參考與視圖的spatialReference不匹配,則projection engine將被動態加載。
  • 在運行時,將 center 設置為與視圖空間參考不匹配的空間參考時,projection engine 必須為 loaded。您可以通過調用 projection.isLoaded() 來檢查是否在設置中心之前加載了投影引擎。如果尚未加載,您可以調用 projection.load()

例子:

// Sets the initial center point of the view to lon/lat coordinates
// lon/lat will be projected to match the spatial reference of the view
let view = new MapView({
  center: [-112, 38]
});
// Updates the view's center point to a pre-determined Point object
let pt = new Point({
  x: 12804.24,
  y: -1894032.09,
  spatialReference: {
    wkid: view.spatialReference  // wkid 2027
  }
});
view.center = pt;
const centerPoint = new Point({
  x: -8746995,
  y: 4352308,
  spatialReference: {
    wkid: 8857
  }
});
if (!projection.isLoaded()) {
  // load the projection engine if it is not loaded
  await projection.load();
}
view.center = centerPoint;

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 MapView.center。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。