此方法檢查 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。