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


JavaScript ArcGIS colorUtils.getBackgroundColorTheme用法及代码示例


基本信息

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

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

ESM: import * as viewColorUtils from "@arcgis/core/views/support/colorUtils";

对象: esri/views/support/colorUtils

自从:用于 JavaScript 4.13 的 ArcGIS API

用法说明

colorUtils.getBackgroundColorTheme函数(或属性)的定义如下:

getBackgroundColorTheme (view) {Promise<string>}


此方法检查 MapView 的底图和背景,并返回 lightdark 作为背景主题,具体取决于底图的平均颜色和视图的背景是浅色还是深色。

背景主题是通过获取视图背景和底图的平均颜色并根据 this algorithm for determining color visibility 确定其亮度来确定的。

参数:

类型说明
view MapView

从中获取背景颜色主题的 MapView 实例。

返回:

类型 说明
Promise<string> 解析为一个字符串,其值可以是 lightdark

例子:

viewColorUtils.getBackgroundColorTheme(view)
  .then(function(colorTheme){
    if(colorTheme === "dark"){
      // style other app elements with a dark theme
    }
  });

相关用法


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