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


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


基本信息

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

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

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

类: esri/widgets/Widget

继承: Widget > Accessor

子类: AreaMeasurement2D , AreaMeasurement3D , Attachments , Attribution , BasemapGallery , BasemapLayerList , BasemapToggle , Bookmarks , BuildingExplorer , ButtonMenu , Compass , CoordinateConversion , DatePicker , Daylight , DirectLineMeasurement3D , Directions , DistanceMeasurement2D , Editor , ElevationProfile , Expand , Feature , FeatureForm , FeatureTable , FeatureTemplates , FloorFilter , Fullscreen , HeatmapSlider , Histogram , HistogramRangeSlider , Home , LayerList , Legend , LineOfSight , Locate , Measurement , NavigationToggle , Popup , Print , ScaleBar , ScaleRangeSlider , Search , SearchResultRenderer , ShadowCast , Sketch , Slice , Slider , SmartMappingSliderBase , SnappingControls , Swipe , TableList , TimePicker , TimeSlider , Track , UtilityNetworkTrace , Weather , Zoom

自从:用于 JavaScript 4.2 的 ArcGIS API

用法说明

Widget.container函数(或属性)的定义如下:

container String | HTMLElement


表示包含小部件的 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大神的英文原创作品 Widget.container。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。