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


JavaScript ArcGIS BasemapGallery.source用法及代码示例


基本信息

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

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

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

类: esri/widgets/BasemapGallery

继承: BasemapGallery > Widget > Accessor

自从:用于 JavaScript 4.3 的 ArcGIS API

用法说明

BasemapGallery.source函数(或属性)的定义如下:


小部件将显示的底图源。此属性可以使用数组或 BasemapCollectionPortal 实例自动转换。默认源是 PortalBasemapsSource,它指向在 esriConfig.portalUrl 中设置的默认门户实例。

设置 global API key 时,BasemapGallery 小部件中显示的默认底图将默认为与 API key 一起使用的底图(由 Portal.devBasemapGalleryGroupQuery 属性定义)。

例子:

const basemapGallery = new BasemapGallery({
   view: view,
   source: [Basemap.fromId("topo-vector"), Basemap.fromId("hybrid")] // autocasts to LocalBasemapsSource
});
const basemapGallery = new BasemapGallery({
   view: view,
   source: { // autocasts to PortalBasemapsSource
     portal: "https://www.yourportal.arcgis.com"
   }
});
const basemapGallery = new BasemapGallery({
   view: view,
   source: new Portal({url: "https://www.yourportal.arcgis.com"}) // autocasts to PortalBasemapsSource
});

相关用法


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