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


JavaScript ArcGIS SceneView.environment用法及代码示例


基本信息

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

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

ESM: import SceneView from "@arcgis/core/views/SceneView";

类: esri/views/SceneView

继承: SceneView > View > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

SceneView.environment函数(或属性)的定义如下:

environment Accessor


指定视图中环境可视化的各种属性。当环境的任何属性发生变化时,SceneView 将自动重绘。

修改灯光:

let view = new SceneView({
  map: map,
  container: "viewDiv"
});

// Set the light source position to reflect the current sun position at that time
view.environment.lighting = {
  type: "sun",
  date: new Date("January 1, 2022 12:00:00 UTC")
};

// Change the lighting to virtual, so that everying in the scene is nicely lit:
view.environment.lighting = {
  type: "virtual"
};

// Enable displaying shadows cast by the light source
view.environment.lighting.directShadowsEnabled = true;

设置背景:

// Set a background color
let view = new SceneView({
  container: "viewDiv",
  map: map,
  environment: {
    background: {
      type: "color",
      color: [255, 252, 244, 1]
    },
    starsEnabled: false,
    atmosphereEnabled: false
  }
});

改变场景中的天气:

let view = new SceneView({
  container: "viewDiv",

  map: new Map({
    basemap: "satellite",
    ground: "world-elevation"
  }),
  environment: {
    weather: {
      type: "cloudy"   // autocasts as new CloudyWeather()
    }
  }
});

属性:

类型说明
background Background
可选的

指定应如何显示场景的背景(位于天空、星星和大气后面)。默认情况下,这只是一种完全不透明的黑色。目前ColorBackground 是唯一支持的背景类型。

可选的
默认值:SunLighting

指示场景中的照明类型。

已知值 示例
SunLighting scene-sun-lighting
VirtualLighting scene-virtual-lighting
atmosphereEnabled Boolean
可选的
默认值:真的

指示是否启用大气可视化。

atmosphere Accessor
可选的

现场气氛条件。

规格:
quality String
可选的
默认值:低的

指示大气可视化的质量。气氛的质量可能会对性能产生重大影响。该设置对本地场景没有任何影响。

已知值 示例
low scene-atmosphere
high scene-atmosphere

可能的值"low"|"high"

可选的
默认值:SunnyWeather

指示场景中天气可视化的类型。该设置对本地场景没有任何影响。

已知值 示例
SunnyWeather scene-atmosphere
CloudyWeather scene-atmosphere
RainyWeather scene-atmosphere
FoggyWeather scene-atmosphere
starsEnabled Boolean
可选的
默认值:真的

指示是否启用星形可视化。

相关用法


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