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


JavaScript ArcGIS Font用法及代码示例


基本信息

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

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

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

类: esri/symbols/Font

继承: Font > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

用于显示 2D text symbols3D text symbols 的字体。此类允许开发人员设置字体的系列、装饰、大小、样式和粗细属性。记下每个属性的 "Known Limitations",以了解它们如何根据图层类型以及您是否使用 MapViewSceneView 进行区分。

例子:

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大神的英文原创作品 Font。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。