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


JavaScript ArcGIS Map.basemap用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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

ESM: import Map from "@arcgis/core/Map";

類: esri/Map

繼承: Map > Accessor

子類: WebMap , WebScene

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

Map.basemap函數(或屬性)的定義如下:

basemap Basemap autocast

來自 String|Object

指定Map的底圖。底圖是一組切片圖層,為 MapViewSceneView 以及Map中的其他操作圖層提供地理背景。

此值可以是Basemap 的實例或下表中列出的字符串之一。

用於 API key 的底圖

使用這些底圖需要訂閱ArcGIS Developer

來源
arcgis-imagery 圖像混合
arcgis-imagery-standard Imagery
arcgis-imagery-labels arcgis-imagery 中的參考層
arcgis-light-gray 淺灰色帆布
arcgis-dark-gray 深灰色帆布
arcgis-navigation Navigation
arcgis-navigation-night 導航(夜間)
arcgis-streets Streets
arcgis-streets-night 街道(夜)
arcgis-streets-relief 街道(帶浮雕)
arcgis-topographic Topographic
arcgis-oceans Oceans
osm-standard OpenStreetMap
osm-standard-relief OpenStreetMap(帶浮雕)
osm-streets OpenStreetMap(街道)
osm-streets-relief OpenStreetMap(救濟街道)
osm-light-gray OpenStreetMap(淺灰色帆布)
osm-dark-gray OpenStreetMap(深灰色帆布)
arcgis-terrain 帶標簽的地形
arcgis-community 社區Map
arcgis-charted-territory 特許領土Map
arcgis-colored-pencil 彩色鉛筆Map
arcgis-nova 新星Map
arcgis-modern-antique 現代古董Map
arcgis-midcentury Mid-Century Map
arcgis-newspaper 報紙Map
arcgis-hillshade-light arcgis-topographic 中的山體陰影層
arcgis-hillshade-dark

無需 API key 即可使用

使用這些底圖需要有效的 ArcGIS Online organizational subscriptionArcGIS Enterprise license

來源
satellite 世界意象
hybrid World Boundaries and PlacesWorld Imagery
oceans World Ocean ReferenceWorld Ocean Base
osm OpenStreetMapLayer
terrain World Reference OverlayWorld Terrain Base
dark-gray-vector 深灰色帆布 [v2]
gray-vector 淺灰色帆布 [v2]
streets-vector 世界街道Map [v2]
streets-night-vector 世界街道Map(夜景)[v2]
streets-navigation-vector 世界導航Map [v2]
topo-vector World HillshadeWorld Topographic Map [v2]
streets-relief-vector World HillshadeWorld Street Map (with Relief) [v2]
topo(已棄用) 此底圖/服務現在位於 Mature Support 中,不再更新。請改用topo-vector 世界地形圖
streets(已棄用) 此底圖/服務現在位於 Mature Support 中,不再更新。請改用streets-vector 世界街道Map
dark-gray(已棄用) 此底圖/服務現在位於 Mature Support 中,不再更新。請改用dark-gray-vector 世界深灰色參考世界深灰色底
gray(已棄用) 此底圖/服務現在位於 Mature Support 中,不再更新。請改用gray-vector 世界淺灰色參考世界淺灰色底
national-geographic(已棄用) 此底圖/服務現在位於 Mature Support 中,不再更新。請改用National Geographic Style WebMap NatGeo 世界Map

例子:

// Set the basemap in the constructor
const map = new Map({
  basemap: "hybrid"
});

// Set the basemap after the map instance is created
map.basemap = "topo-vector";

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Map.basemap。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。