当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS Expand.container用法及代码示例


基本信息

以下是所在类或对象的基本信息。

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函数(或属性)的定义如下:


表示包含小部件的 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"
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Expand.container。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。