当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS TextSymbol.angle用法及代码示例


基本信息

以下是所在类或对象的基本信息。

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

ESM: import TextSymbol from "@arcgis/core/symbols/TextSymbol";

类: esri/symbols/TextSymbol

继承: TextSymbol > Symbol > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

TextSymbol.angle函数(或属性)的定义如下:

angle Number


文字的角度。 0 是水平的,角度顺时针移动。

已知限制

3D SceneViews 目前不支持此属性。

默认值:0

例子:

const textSymbol = {
  type: "text", // autocasts as new TextSymbol()
  angle: 90,
  color: "green",
  font: {
    // autocast as new Font()
    family: "Just Another Hand",
    size: 12
  },
  haloColor: "black",
  haloSize: 1,
  horizontalAlignment: "right",
  verticalAlignment: "bottom"
};

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 TextSymbol.angle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。