MARKUPLAYER

Used in

MARKUP  

Parent elements

MARKUP 

Syntax

<MARKUPLAYERAttribute Description Table
     (r)layername="string"
     (r)workspace="string"
>

     <ADDEDFEATURES... />
     <DELETEDFEATURES... />
     <MODIFIEDFEATURES... />

</MARKUPLAYER >
(r): Attribute or child element is required.

Description

Identifies the layer used during an EditNotes session.

Note: Elements that support EditNotes have been deprecated and may be removed in a future release of ArcIMS.

Attribute Descriptions for MARKUPLAYER

AttributeUsage
layernameLayer name. Must match the layer name in the ArcIMS service.
workspaceReferences the workspace name of the ArcIMS service.
Back to top 

Examples for MARKUPLAYER

<?xml version="1.0"?>
<MARKUP>
  <WORKSPACES>
    <FEATURESERVERWORKSPACE name="ifs_ws-20" url="http://mymachine.domain.com/servlet/com.esri.esrimap.Esrimap" service="world" />
  </WORKSPACES>
  <MARKUPLAYER layername="CNTRY94" workspace="ifs_ws-20">
    <MODIFIEDFEATURES>
      <FEATURE featureid="1000001">
      <ENVELOPE minx="79.7" miny="-59.0" maxx="113.9" maxy="-42.4" />
      <FIELD name="AREA" precision="3" size="12" type="8">
        <FIELDVALUE valuestring="10202" />
      </FIELD>
      <FIELD name="NAME" precision="0" size="40" type="12">
        <FIELDVALUE valuestring="Atlantis" />
      </FIELD>
      <FIELD name="#SHAPE#" precision="0" size="0" type="-98">
        <FIELDVALUE>
          <POLYGON>
            <RING>
            <POINT x="85.61944739721136" y="-42.43367913036056" />
            <POINT x="113.93068023991125" y="-46.33867676383642" />
            <POINT x="80.25007565118213" y="-55.12492143915705" />
            <POINT x="85.61944739721136" y="-42.43367913036056" />
            </RING>
          </POLYGON>
        </FIELDVALUE>
      </FIELD>
      </FEATURE>
    </MODIFIEDFEATURES>
  </MARKUPLAYER>
</MARKUP>

Back to top