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


JavaScript ArcGIS CSVLayer.renderer用法及代碼示例


基本信息

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

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

ESM: import CSVLayer from "@arcgis/core/layers/CSVLayer";

類: esri/layers/CSVLayer

繼承: CSVLayer > Layer > Accessor

自從:用於 JavaScript 4.1 的 ArcGIS API

用法說明

CSVLayer.renderer函數(或屬性)的定義如下:

renderer Renderer autocast


分配給圖層的渲染器。渲染器定義了如何可視化層中的每個特征。根據渲染器類型,可以使用相同的符號或基於提供的屬性字段或函數的值使用不同的符號來可視化要素。

例子:

// all features in the layer will be visualized with
// a 6pt black marker symbol and a thin, white outline
layer.renderer = {
  type: "simple",  // autocasts as new SimpleRenderer()
  symbol: {
    type: "simple-marker",  // autocasts as new SimpleMarkerSymbol()
    size: 6,
    color: "black",
    outline: {  // autocasts as new SimpleLineSymbol()
      width: 0.5,
      color: "white"
    }
  }
};

相關用法


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