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


JavaScript ArcGIS LabelClass.labelPlacement用法及代碼示例


基本信息

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

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

ESM: import LabelClass from "@arcgis/core/layers/support/LabelClass";

類: esri/layers/support/LabelClass

繼承: LabelClass > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

LabelClass.labelPlacement函數(或屬性)的定義如下:

labelPlacement String


標簽的位置。可能的值取決於要素類型。此屬性需要一個值。

特征類型 可能的值
Points above-center , above-left , above-right , below-center , below-left , below-right , center-center , center-left , center-right
Polylines above-after , above-along , above-before , above-start , above-end , below-after , below-along , below-before , below-start , below-end , center-after , center-along , center-before , center-start , center-end
Polygons always-horizontal

已知限製

  • 目前,如果標簽在 3D 場景視圖中有 line calloutvertical offset,則僅支持 above-center
  • 標簽放置僅適用於 3D 場景視圖中的 Point 圖層。
  • FeatureLayer Polylines 僅支持在 2D MapViews 中放置 center-along 標簽。

可能的值"above-center"|"above-left"|"above-right"|"below-center"|"below-left"|"below-right"|"center-center"|"center-left"|"center-right"|"above-after"|"above-along"|"above-before"|"above-start"|"above-end"|"below-after"|"below-along"|"below-before"|"below-start"|"below-end"|"center-after"|"center-along"|"center-before"|"center-start"|"center-end"|"always-horizontal"

默認值:null

例子:

labelClass.labelPlacement = "above-right";

相關用法


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