當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。