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


JavaScript ArcGIS RotationVariable用法及代碼示例


基本信息

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

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

ESM: import RotationVariable from "@arcgis/core/renderers/visualVariables/RotationVariable";

類: esri/renderers/visualVariables/RotationVariable

繼承: RotationVariable > VisualVariable > Accessor

自從:用於 JavaScript 4.10 的 ArcGIS API

用法說明

旋轉視覺變量定義在MapView 中使用marker symbolstext symbols 渲染的特征如何旋轉。旋轉值是通過將值映射到字段中的數據來確定的,或者通過使用 Arcade 表達式的其他算術方法來確定。

該對象可用於說明風向、車輛航向等變量。

renderer-vv-rotation

已知限製

SceneView 旋轉中,marker symbolstext symbols3D icon symbol layers3D text symbol layers 目前不支持視覺變量。

例子:

const rotationVisualVariable = {
  type: "rotation",
  field: "heading",
  rotationType: "geographic"
};
renderer.visualVariables = [ rotationVisualVariable ];

相關用法


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