GET_LAYOUT  Examples

Used in:  REQUEST  
Servers:  ArcMap  
Parent elements:  REQUEST  

<GET_LAYOUT Attribute Description Table

     autoresize ="true | false"  [false]
>

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

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


Description:


Restrictions:


Notes:


Attribute Descriptions for GET_LAYOUT:

Attribute Usage Back to Top
autoresize The 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 PNG8, PNG24, BMP, and JPG.
 

Examples for GET_LAYOUT:

Example 1: Back to Top
<?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>