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


JavaScript ArcGIS TextSymbol用法及代码示例


基本信息

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

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

用法说明

文本符号用于定义在 2D MapView 中的 FeatureLayerCSVLayerSublayerStreamLayer 上显示标签的图形。如果几何类型为 PointMultipoint ,文本符号也可用于定义 Graphic 的符号属性。使用此类,您可以更改标签图形的颜色、字体、光环和其他属性。

TextSymbol 可用于标记 PointPolylinePolygon 特征。下图描绘了一个多边形 FeatureLayer,它使用 TextSymbol 来标记其特征。

text-sample

例子:

let textSymbol = {
  type: "text",  // autocasts as new TextSymbol()
  color: "white",
  haloColor: "black",
  haloSize: "1px",
  text: "You are here",
  xoffset: 3,
  yoffset: 3,
  font: {  // autocasts as new Font()
    size: 12,
    family: "Josefin Slab",
    weight: "bold"
  }
};

相关用法


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