CALLOUTMARKERSYMBOL | Examples |
<CALLOUTMARKERSYMBOL | Attribute
Description Table |
antialiasing ="true | false" [false]
backcolor ="0,0,0 - 255,255,255" [255,255,255] boundarycolor ="0,0,0 - 255,255,255" [0,0,0] font ="Any system font" [Arial] fontcolor ="0,0,0 - 255,255,255" [0,0,0] fontsize ="1 - NNN" [12] fontstyle ="regular | bold | italic | underline | outline | bolditalic" [regular] glowing ="0,0,0 - 255,255,255" interval ="0 - NNN" [10] outline ="0,0,0 - 255,255,255" shadow ="0,0,0 - 255,255,255" transparency ="0.0 - 1.0" [1.0] > No Child Elements </CALLOUTMARKERSYMBOL > |
Attribute | Usage | Back to Top |
---|---|---|
antialiasing | 1 Used to make edges of labels and symbols smoother. When set to "true", antialiasing is active. Note that the time to generate a map may significantly increase when antialiasing is turned on. | |
backcolor | 2 Background color using RGB values. | |
boundarycolor | 3 Boundary color using RGB values. | |
font | 4 Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic. For Feature Services, the font must reside on the client machine or else the system default font is used. | |
fontcolor | 5 Font color using RGB values. | |
fontsize | 6 Font size. | |
fontstyle | 7 Font style. | |
glowing | 8 Glow color around text using RGB values. | |
interval | 9 Distance between point and callout box; smaller number brings box closer to point. | |
outline | 10 Outline color using RGB values. | |
shadow | 11 Shadow color using RGB values. | |
transparency | 12 Value to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent. |
Example 1: When in CONFIG or REQUEST. | Back to Top |
<?xml version="1.0"
encoding="UTF-8"?> <ARCXML version="1.1"> <CONFIG> <ENVIRONMENT> <LOCALE country="US" language="en" variant="" /> <UIFONT color="0,0,0" name="Arial" size="12" style="regular" /> <SCREEN dpi="96" /> </ENVIRONMENT> <MAP> <PROPERTIES> <ENVELOPE minx="-105.594842" miny="-49.955227" maxx="75.672764" maxy="83.596039" name="Initial_Extent" /> <MAPUNITS units="decimal_degrees" /> </PROPERTIES> <WORKSPACES> <SHAPEWORKSPACE name="shp_ws-0" directory="<path to WORLD ESRIDATA>"/> </WORKSPACES> <LAYER type="featureclass" name="CITIES" visible="true" id="2"> <DATASET name="CITIES" type="point" workspace="shp_ws-0" /> <GROUPRENDERER> <SIMPLELABELRENDERER field="NAME"> <CALLOUTMARKERSYMBOL font="Times New Roman" fontstyle="italic" fontsize="24" fontcolor="0,0,255" glowing="255,0,0" shadow="0,0,50" backcolor="0,255,0" interval="10" boundarycolor="255,255,0" transparency="0.8" antialiasing="false" /> </SIMPLELABELRENDERER> <SIMPLERENDERER> <SIMPLEMARKERSYMBOL color="127,27,27" type="circle" width="16" /> </SIMPLERENDERER> </GROUPRENDERER> </LAYER> </MAP> </CONFIG> </ARCXML> |