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


JavaScript ArcGIS WebScene.basemap用法及代码示例


基本信息

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

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

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

类: esri/WebScene

继承: WebScene > Map > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

WebScene.basemap函数(或属性)的定义如下:

来自 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大神的英文原创作品 WebScene.basemap。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。