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


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


基本信息

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

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.ground函數(或屬性)的定義如下:

ground Ground autocast

來自 String|Object

指定Map的表麵屬性。在 MapView 中,當 profile 包含 ElevationProfileLineGround 時,此屬性由 ElevationProfile 小部件使用。在 3D SceneView 中,它使用 ElevationLayers 的集合在Map表麵上渲染現實世界中的地形或地形變化。

此值可以是 Ground 的實例,也可以是以下字符串之一:

地麵可能不會設置為 nullundefined ,它保證始終包含類型為 Ground 的實例。可以通過將地麵屬性設置為新的空Ground 實例或刪除所有地麵圖層來從地麵刪除高程。

例子:

// Use the world elevation service
const map = new Map({
  basemap: "topo-vector",
  ground: "world-elevation"
});
// Create a map with the world elevation layer overlaid by a custom elevation layer
const worldElevation = ElevationLayer({
  url: "//elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer"
});
const customElevation = ElevationLayer({
  url: "https://my.server.com/arcgis/rest/service/MyElevationService/ImageServer"
});
const map = new Map({
  basemap: "topo-vector",
  ground: new Ground({
   layers: [ worldElevation, customElevation ]
  })
});

相關用法


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