-
container
String
|
HTMLElement
inherited
表示包含小部件的 DOM 元素的 ID 或節點。該屬性隻能設置一次。以下示例都是使用小部件時的有效用例。
例子:
// Create the HTML div element programmatically at runtime and set to the widget's container const basemapGallery = new BasemapGallery({ view: view, container: document.createElement("div") }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" });
// Specify an already-defined HTML div element in the widget's container const basemapGallery = new BasemapGallery({ view: view, container: basemapGalleryDiv }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" }); // HTML markup <body> <div id="viewDiv"></div> <div id="basemapGalleryDiv"></div> </body>
// Specify the widget while adding to the view's UI const basemapGallery = new BasemapGallery({ view: view }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" });
基本信息
以下是所在類或對象的基本信息。
AMD:
require(["esri/widgets/Expand"], (Expand) => { /* code goes here */ });
ESM:
import Expand from "@arcgis/core/widgets/Expand";
類:
esri/widgets/Expand
繼承: Expand > Widget > Accessor
自從:用於 JavaScript 4.3 的 ArcGIS API
用法說明
Expand.container
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS Expand.content用法及代碼示例
- JavaScript ArcGIS Expand.classes用法及代碼示例
- JavaScript ArcGIS Expand.closeOnEsc用法及代碼示例
- JavaScript ArcGIS Expand.when用法及代碼示例
- JavaScript ArcGIS Expand.group用法及代碼示例
- JavaScript ArcGIS Expand.on用法及代碼示例
- JavaScript ArcGIS Expand.visible用法及代碼示例
- JavaScript ArcGIS Expand用法及代碼示例
- JavaScript ArcGIS ExpressionContent用法及代碼示例
- JavaScript ArcGIS ExpressionInfo.title用法及代碼示例
- JavaScript ArcGIS ExpressionInfo.expression用法及代碼示例
- JavaScript ArcGIS ExpressionInfo.name用法及代碼示例
- JavaScript ArcGIS ExpressionInfo用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.castShadows用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.clone用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.edges用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.size用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.material用法及代碼示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer用法及代碼示例
- JavaScript ArcGIS ElementExpressionInfo.expression用法及代碼示例
- JavaScript ArcGIS ElevationProfile.profiles用法及代碼示例
- JavaScript ArcGIS ElevationLayer.fullExtent用法及代碼示例
- JavaScript ArcGIS ElevationLayer layerview-create-error事件用法及代碼示例
- JavaScript ArcGIS Editor.classes用法及代碼示例
- JavaScript ArcGIS ElevationLayer.on用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Expand.container。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。