LAYERIMAGE

Used in

RESPONSE  

Servers

Image  

Parent elements

IMAGE 

Syntax

<LAYERIMAGEAttribute Description Table
     (r)url="string"
     file="string"
     id="string"
     type="gif | jpg | png | png8"
>

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

Description

Defines the image output file name and URL for acetate layers created using SEPARATELAYER.

Restrictions


Attribute Descriptions for LAYERIMAGE

AttributeUsage
fileFull pathname and filename for location of acetate layer image. UNC pathnames are valid (\\myComputer\arcims\output).
idThis id is the same id set in SEPARATELAYER during the request.
typeReturned when OUTPUT method="stream" in a map configuration file for Image Services. Valid only when the Java Connector, the Web ADF for the Microsoft .NET Framework, or the Web ADF for the Java Platform is used.
urlURL used by client to retrieve acetate layer image.
Back to top 

Examples for LAYERIMAGE

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <RESPONSE>
    <IMAGE>
      <ENVELOPE minx="-94" miny="32" maxx="-73" maxy="46" />
      <OUTPUT url="http://washoe/output/crayola_i_washoe12725764396.png" />
      <LAYERIMAGE url="http://washoe/output/crayola_i_washoe12725764397.png" id="myscalebar" />
    </IMAGE>
  </RESPONSE>
</ARCXML>

Back to top