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


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


基本信息

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

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.extent函數(或屬性)的定義如下:

extent Extent autocast


範圍將視圖中 map 的可見部分表示為 Extent 的實例。設置範圍會立即更改沒有動畫的視圖。要為視圖設置動畫,請參見 goTo() 。旋轉視圖時,範圍不會更新以包括Map的新可見部分。

返回的Extent 對象是一個內部引用,可以在內部進行修改。要保留返回的對象,請使用 Extent.clone() 創建一個副本。

注意

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

默認值:null

例子:

// the projection engine must be loaded in the app if the spatial reference
// of the view does not match the spatial reference of the extent
const extent = new Extent({
  xmin: -13056650,
  ymin: 6077558,
  xmax: -13055709,
  ymax: 6077938,
  spatialReference: new SpatialReference({wkid:3857})
});
view.extent = extent;  // Updates the view without animation

相關用法


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