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


JavaScript ArcGIS ImageryLayer.getCatalogItemICSInfo用法及代碼示例


基本信息

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

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

ESM: import ImageryLayer from "@arcgis/core/layers/ImageryLayer";

類: esri/layers/ImageryLayer

繼承: ImageryLayer > Layer > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

ImageryLayer.getCatalogItemICSInfo函數(或屬性)的定義如下:

getCatalogItemICSInfo (rasterId, abortOptions) {Promise<Object>}


自從:ArcGIS 適用於 JavaScript 4.13 的 API

獲取影像服務中目錄項的image coordinate system 信息。返回的對象可用於設置2D MapView 的spatialReferenceextent,以便圖像可以在其原始坐標係中顯示。影像服務必須具有目錄函數。

參數:

類型說明
rasterId Number

柵格目錄 ID。

abortOptions AbortSignal
可選的

可用於中止異步任務的信號對象。當發出中止信號時,返回的 Promise 將被名為 AbortErrorError 拒絕。另請參閱AbortController,了解有關如何構建可用於傳遞中止信號的控製器的更多信息。

返回:

類型 說明
Promise<Object> 解析後,返回一個包含柵格目錄項的image coordinate system 的對象。

例子:

// get image coordinate system of the specified catalog item
// for example Raster.OBJECTID = 1600
layer.getCatalogItemICSInfo(imageId).then(function(info) {
// create a spatialReference object and set its
// imageCoordinateSystem property
 let sr = { // autocasts to esri/geometry/SpatialReference
   imageCoordinateSystem: { id: imageId }
 };

 // Calculate an extent for the mapview based on the image's extent
 // in its original coordinate system
 const width = document.getElementById("viewDiv").getBoundingClientRect().width;
 const height = document.getElementById("viewDiv").getBoundingClientRect().height;
 const newExt = info.icsExtent.clone();
 const scaleFactor = 5;
 newExt.xmin = (newExt.xmin + newExt.xmax - width * scaleFactor) / 2;
 newExt.xmax = newExt.xmin + width * scaleFactor;
 newExt.ymin = (newExt.ymin + newExt.ymax - height * scaleFactor) / 2;
 newExt.ymax = newExt.ymin + height * scaleFactor;
 newExt.spatialReference = sr;

 // set the MapView's spatialReference to the image's coordinate system
 // and the extent to the extent calculated above
 view = new MapView({
   container: "viewDiv",
   map: map,
   spatialReference: sr,
   extent: newExt
 });
});

相關用法


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