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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。