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


JavaScript ArcGIS DotDensityRenderer.outline用法及代碼示例


基本信息

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

AMD: require(["esri/renderers/DotDensityRenderer"], (DotDensityRenderer) => { /* code goes here */ });

ESM: import DotDensityRenderer from "@arcgis/core/renderers/DotDensityRenderer";

類: esri/renderers/DotDensityRenderer

繼承: DotDensityRenderer > Renderer > Accessor

自從:用於 JavaScript 4.11 的 ArcGIS API

用法說明

DotDensityRenderer.outline函數(或屬性)的定義如下:


多邊形的輪廓。如果未設置,則使用默認 SimpleLineSymbol 進行渲染。為每個 DotDensityRenderer 顯式設置它是一種很好的做法。或者完全刪除輪廓,或者將其設置為非常薄、透明的樣式,這樣它就不會分散點密度。

例子:

// removes the default outline from the renderer
renderer.outline = null;
// sets a thin, transparent outline to the renderer
renderer.outline = {
  color: [ 128,128,128, 0.2 ],
  width: 0.5
};
// disable the default outline
renderer.outline = null;

相關用法


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