-
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/ElevationProfile"], (ElevationProfile) => { /* code goes here */ });
ESM:
import ElevationProfile from "@arcgis/core/widgets/ElevationProfile";
类:
esri/widgets/ElevationProfile
继承: ElevationProfile > Widget > Accessor
自从:用于 JavaScript 4.18 的 ArcGIS API
用法说明
ElevationProfile.container
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS ElevationProfile.classes用法及代码示例
- JavaScript ArcGIS ElevationProfile.profiles用法及代码示例
- JavaScript ArcGIS ElevationProfile.visibleElements用法及代码示例
- JavaScript ArcGIS ElevationProfile.when用法及代码示例
- JavaScript ArcGIS ElevationProfile.on用法及代码示例
- JavaScript ArcGIS ElevationProfile.visible用法及代码示例
- JavaScript ArcGIS ElevationProfile用法及代码示例
- JavaScript ArcGIS ElevationLayer.fullExtent用法及代码示例
- JavaScript ArcGIS ElevationLayer layerview-create-error事件用法及代码示例
- JavaScript ArcGIS ElevationLayer.on用法及代码示例
- JavaScript ArcGIS ElevationSampler.on用法及代码示例
- JavaScript ArcGIS ElevationLayer用法及代码示例
- JavaScript ArcGIS ElevationLayer layerview-create事件用法及代码示例
- JavaScript ArcGIS ElevationLayer.portalItem用法及代码示例
- JavaScript ArcGIS ElevationLayer.visible用法及代码示例
- JavaScript ArcGIS ElevationLayer.when用法及代码示例
- JavaScript ArcGIS ElevationLayer.queryElevation用法及代码示例
- JavaScript ArcGIS ElevationLayer.url用法及代码示例
- JavaScript ArcGIS ElevationSampler changed事件用法及代码示例
- JavaScript ArcGIS ElevationSampler用法及代码示例
- JavaScript ArcGIS ElementExpressionInfo.expression用法及代码示例
- JavaScript ArcGIS Element.visibilityExpression用法及代码示例
- JavaScript ArcGIS ElementExpressionInfo用法及代码示例
- JavaScript ArcGIS Expand.when用法及代码示例
- JavaScript ArcGIS ExtrudeSymbol3DLayer.castShadows用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 ElevationProfile.container。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。