此方法检查 MapView 的底图和背景,并返回
light
或dark
作为背景主题,具体取决于底图的平均颜色和视图的背景是浅色还是深色。背景主题是通过获取视图背景和底图的平均颜色并根据 this algorithm for determining color visibility 确定其亮度来确定的。
参数:
类型 说明 view MapView从中获取背景颜色主题的 MapView 实例。
返回:
类型 说明 Promise<string> 解析为一个字符串,其值可以是 light
或dark
。例子:
viewColorUtils.getBackgroundColorTheme(view) .then(function(colorTheme){ if(colorTheme === "dark"){ // style other app elements with a dark theme } });
基本信息
以下是所在类或对象的基本信息。
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
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS colorUtils.getBackgroundColor用法及代码示例
- JavaScript ArcGIS colorRamps.names用法及代码示例
- JavaScript ArcGIS color.getSchemesByTag用法及代码示例
- JavaScript ArcGIS color.createPCTrueColorRenderer用法及代码示例
- JavaScript ArcGIS color.createVisualVariable用法及代码示例
- JavaScript ArcGIS color.getSchemes用法及代码示例
- JavaScript ArcGIS color.createContinuousRenderer用法及代码示例
- JavaScript ArcGIS colorRamps.byTag用法及代码示例
- JavaScript ArcGIS colorRamps.all用法及代码示例
- JavaScript ArcGIS color.createPCContinuousRenderer用法及代码示例
- JavaScript ArcGIS color.cloneScheme用法及代码示例
- JavaScript ArcGIS color.createAgeRenderer用法及代码示例
- JavaScript ArcGIS color.getSchemeByName用法及代码示例
- JavaScript ArcGIS color.flipColors用法及代码示例
- JavaScript ArcGIS color.createClassBreaksRenderer用法及代码示例
- JavaScript ArcGIS colorRamps.byName用法及代码示例
- JavaScript ArcGIS coordinateFormatter用法及代码示例
- JavaScript ArcGIS config.BeforeInterceptorCallback用法及代码示例
- JavaScript ArcGIS config.assetsPath用法及代码示例
- JavaScript ArcGIS config.workers用法及代码示例
- JavaScript ArcGIS config.fontsUrl用法及代码示例
- JavaScript ArcGIS config.geometryServiceUrl用法及代码示例
- JavaScript ArcGIS config.request用法及代码示例
- JavaScript ArcGIS config.routeServiceUrl用法及代码示例
- JavaScript ArcGIS config.geoRSSServiceUrl用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 colorUtils.getBackgroundColorTheme。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。