GET_LAYOUT

Used in

REQUEST  

Servers

ArcMap  

Parent elements

REQUEST 

Syntax

<GET_LAYOUTAttribute Description Table
     autoresize="true | false" [false]
>

     (m)<DATAFRAME... />
     <PROPERTIES... />

</GET_LAYOUT >
(m):  Child element can be used multiple times.

Description

Requests an ArcMap layout.

Notes


Attribute Descriptions for GET_LAYOUT

AttributeUsage
autoresizeThe maximum generated layout size is based on the image memory limit set when an ArcMap service is started. For example, an image memory limit of 1 MB allows a map no larger than 262,144 pixels (512 x 512) to be generated. If autoresize is set to "true", a requested layout greater than the maximum pixel count is reduced in size to within the maximum pixel count. If autoresize is set to "false", no image is generated and an error message is returned by the ArcIMS Spatial Server. Output formats affected by autoresize are GIF, PNG8, PNG24, BMP, and JPG.
Back to top 

Examples for GET_LAYOUT

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_LAYOUT>
      <PROPERTIES>
        <ENVELOPE minx="0" miny="0" maxx="8.5" maxy="11" />
        <FILTERCOORDSYS id="54030" />
        <FEATURECOORDSYS id="54030" />
        <IMAGESIZE width="800" height="600" />
        <OUTPUT type="jpg" />
      </PROPERTIES>
      <DATAFRAME id="Layers" >
        <FILTERCOORDSYS id="4326" />
        <FEATURECOORDSYS id="4326" />
        <ENVELOPE minx="-121" miny="36" maxx="-112" maxy="44" />
      </DATAFRAME>
    </GET_LAYOUT>
  </REQUEST>
</ARCXML>

Back to top