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


JavaScript ArcGIS AreaMeasurement3D.analysis用法及代碼示例


基本信息

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

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

ESM: import AreaMeasurement3D from "@arcgis/core/widgets/AreaMeasurement3D";

類: esri/widgets/AreaMeasurement3D

繼承: AreaMeasurement3D > Widget > Accessor

自從:用於 JavaScript 4.7 的 ArcGIS API

用法說明

AreaMeasurement3D.analysis函數(或屬性)的定義如下:

analysis AreaMeasurementAnalysis autocast readonly


自從:ArcGIS 適用於 JavaScript 4.23 的 API

小部件正在創建或修改的麵積測量分析對象。此屬性是 AreaMeasurement3DViewModel.analysis 的別名。

可以在小部件構建期間設置此屬性,以向小部件提供現有分析以進行修改。一旦將分析屬性分配給小部件,也可以修改分析屬性。

如果在小部件構建期間沒有提供分析,小部件會自動創建自己的分析並將其添加到視圖中。在這種情況下,當小部件被銷毀時,分析也將自動從視圖中刪除。

例子:

// Construct an area measurement analysis object outside of the widget
const analysis = new AreaMeasurementAnalysis({
  geometry: {
    type: "polygon", // autocasts as new Polygon()
    rings: [
      [-73.9817, 40.7681],
      [-73.9582, 40.8005],
      [-73.9495, 40.7968],
      [-73.9730, 40.7644],
      [-73.9817, 40.7681]
    ]
  }
});

// Ensure that the analysis is added to the view
view.analyses.add(analysis);

// Frame the analysis in the view
view.goTo(analysis.extent);

// Pass the analysis object as a constructor parameter to modify it using the widget
const viewModel = new AreaMeasurement3D({
  analysis: analysis,
  view: view
});

相關用法


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