當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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