DRAW

Used in

REQUEST  

Servers

Image  ArcMap  

Parent elements

PROPERTIES 

Syntax

<DRAWAttribute Description Table
     (r)map="true | false"
>

     (m)<SEPARATELAYER... />

</DRAW >
(r): Attribute or child element is required.
(m):  Child element can be used multiple times.

Description

Disables map generation when only a legend is needed during a GET_IMAGE request.

Notes


Attribute Descriptions for DRAW

AttributeUsage
mapTurns map generation on or off.
Back to top 

Examples for DRAW

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_IMAGE>
      <PROPERTIES>
        <LEGEND title="Legend" font="Arial" autoextend="true" columns="2" width="170" height="300" backgroundcolor="255,255,255" />
        <DRAW map="false"/>
      </PROPERTIES>
    </GET_IMAGE>
  </REQUEST>
</ARCXML>

Back to top