SEPARATELAYER

Used in

REQUEST  

Servers

Image  

Parent elements

DRAW 

Syntax

<SEPARATELAYERAttribute Description Table
     (r)height="number"
     (r)id="string"
     (r)width="number"
>

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

Description

Acetate layers specified in a SEPARATELAYER are created as a separate image.

Restrictions


Notes


Attribute Descriptions for SEPARATELAYER

AttributeUsage
heightHeight of the output image.
idMust match the id of the acetate LAYER.
widthWidth of the output image.
Back to top 

Examples for SEPARATELAYER

<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_IMAGE>
      <PROPERTIES>
        <ENVELOPE minx="-94" miny="32" maxx="-73" maxy="46" />
        <IMAGESIZE width="600" height="400" />
        <DRAW map="true">
          <SEPARATELAYER id="scalebar1" width="240" height="25" />
        </DRAW>
      </PROPERTIES>
      <LAYER type="acetate" name="scalebar" visible="true" id="scalebar1">
        <OBJECT units="pixel" alignment="center" >
          <SCALEBAR fontcolor="0,0,0" coords="0 0" barcolor="255,255,255" fontsize="12" screenlength="180" barwidth="3" mapunits="degrees" antialiasing="true" />
        </OBJECT>
      </LAYER>
    </GET_IMAGE>
  </REQUEST>
</ARCXML>

Back to top