IMAGELIMIT

Used in

RESPONSE  

Servers

Image  ArcMap  

Parent elements

ENVIRONMENT 

Syntax

<IMAGELIMITAttribute Description Table
     (r)pixelcount="integer"
>

     No Child Elements
</IMAGELIMIT >
(r): Attribute or child element is required.

Description

Defines maximum allowable size of output map in total number of pixels.

Notes


Attribute Descriptions for IMAGELIMIT

AttributeUsage
pixelcountRepresents the maximum number of pixels allowed in a map image. The calculation is made by multiplying the width times the height. For example, an image 400 x 600 in size contains 240000 pixels.
Back to top 

Examples for IMAGELIMIT

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <RESPONSE>
    <SERVICEINFO>
      <ENVIRONMENT>
        <LOCALE language="en" country="US" />
        <UIFONT name="Arial" color="0,0,0" size="12" style="regular" />
        <SEPARATORS cs=" " ts=";"/>
        <CAPABILITIES forbidden="" disabledtypes=""/>
        <SCREEN dpi="96"/>
        <IMAGELIMIT pixelcount="1048576" />
      </ENVIRONMENT>
      <PROPERTIES>
        <FEATURECOORDSYS id="4326"/>
        <FILTERCOORDSYS id="4326"/>
        <ENVELOPE minx="-71.0718204242754" miny="42.368904975182" maxx="-71.0475995680561" maxy="42.3869647980717" name="Initial_Extent" />
        <MAPUNITS units="decimal_degrees" />
      </PROPERTIES>
      <LAYERINFO type="featureclass" visible="true" name="Streets" id="1" maxscale="0.0000470313026173583">
        <FCLASS type="line"></FCLASS>
        <EXTENSION type="Geocode" >
          <GCSTYLE name="USAddressZ" />
        </EXTENSION>
      </LAYERINFO>
    </SERVICEINFO>
  </RESPONSE>
</ARCXML>

Back to top