ColorBackground

AMD: require(["geoscene/webscene/background/ColorBackground"], (WebsceneColorBackground) => { /* 代码 */ });
ESM: import WebsceneColorBackground from "@geoscene/core/webscene/background/ColorBackground";
类: geoscene/webscene/background/ColorBackground
继承于: ColorBackground Background Accessor
起始版本: GeoScene API for JavaScript 4.22

这种背景类型允许将颜色设置为 SceneView 的背景。启用后,视图环境星星和大气层将显示在背景之上。若要仅具有清晰的背景色,请确保将 view.environment.starsEnabledview.environment.atmosphereEnabled 属性都设置为 false

ColorBackground 的默认值是完全不透明的黑色。下面的示例显示了如何更改此设置:

background-color

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

当您要使 SceneView 背景部分或完全透明并与网页的其余部分混合时,请将 alphaCompositingEnabled 设置为 true

const view = new SceneView({
  container: "view",
  map: map,
  alphaCompositingEnabled: true,
  environment: {
    background: {
      type: "color",
      color: [255, 252, 244, 0.4]
    },
    starsEnabled: false,
    atmosphereEnabled: false
  }
});
另参阅:

构造函数

new ColorBackground(properties)
参数:
properties Object
optional

所有可传入构造函数的属性列表,请参见属性

属性列表

可以设置、检索或监听的任何属性。参见使用属性主题。
展示继承属性 隐藏继承属性
名称 类型 描述
Color更多信息

背景的颜色

更多信息ColorBackground
String更多信息

类名。

更多信息Accessor

属性详细说明

自动转换自 Object|Number[]|String

背景的颜色。这可以通过 rgb(a)值数组、命名字符串、十六进制字符串或 hsl(a)字符串、具有rgba 属性的对象或 Color 对象进行自动转换。

默认值:black
declaredClass Stringreadonly inherited

类名。类的名称声明格式为 geoscene.folder.className

方法列表

名称 返回值类型 描述
ColorBackground更多信息

创建对象的深度克隆。

更多信息ColorBackground
*更多信息

创建此类的新实例并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。

更多信息ColorBackground
Object更多信息

将此类的实例转换为其 GeoScene portal JSON 表示形式。

更多信息ColorBackground

方法详细说明

clone(){ColorBackground}

创建对象的深度克隆。

返回值:
类型 描述
ColorBackground 返回调用此方法对象的深度克隆。
fromJSON(json){*}static

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。传递给输入 json 参数的对象通常来自对 REST API 中的查询操作的响应,或者来自另一个 GeoScene 产品的 toJSON() 方法。有关何时以及如何使用此函数的详细信息和示例,请参阅指南中的使用 fromJSON() 主题。

参数:
json Object

GeoScene 格式的实例的 JSON 表示形式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档

返回值:
类型 描述
* 返回一个该类的新实例。
toJSON(){Object}

将此类的实例转换为其 GeoScene portal JSON 表示形式。有关详细信息,请参阅使用 fromJSON() 指南主题。

返回值:
类型 描述
Object 实例的 GeoScene portal JSON 表示形式。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.