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


JavaScript ArcGIS colorUtils.getBackgroundColor用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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.getBackgroundColor函數(或屬性)的定義如下:

getBackgroundColor (view) {Promise<Color>}


返回視圖 extent 中視圖背景的平均顏色。視圖的背景包括 map 底圖的非參考 base layers、web Map的 background color(如果適用)和視圖 container 的背景顏色。

參數:

類型說明
view MapView

MapView 實例,從中計算背景的平均顏色。

返回:

類型 說明
Promise<Color> 解析為輸入視圖背景的平均顏色。

例子:

viewColorUtils.getBackgroundColor(view)
  .then(function(averageColor){
    // averageColor is the input view's average background color
  });

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 colorUtils.getBackgroundColor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。