ADDEDFEATURES

Used in

MARKUP  

Parent elements

MARKUPLAYER 

Syntax

<ADDEDFEATURES >
     No Attributes

     (m)<FEATURE... />

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

Description

Describes features in an XML file after features have been added to a layer using EditNotes.

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

Examples for ADDEDFEATURES

<?xml version="1.0"?>
<MARKUP>
  <WORKSPACES>
    <FEATURESERVERWORKSPACE name="ifs_ws-0" url="http://mycomputer.domain.com/servlet/com.esri.esrimap.Esrimap" service="world" />
  </WORKSPACES>
  <MARKUPLAYER layername="Countries" workspace="ifs_ws-0">
    <ADDEDFEATURES>
      <FEATURE featureid="1000000">
      <ENVELOPE minx="-35.92572247220596" miny="-48.809104594884616" maxx="-5.291989044369359" maxy="-21.047283675907693" />
      <FIELD name="AREA" precision="3" size="12" type="8" />
      <FIELD name="NAME" precision="0" size="40" type="12" />
      <FIELD name="ABBREVNAME" precision="0" size="12" type="12" />
      <FIELD name="FIPS_CODE" precision="0" size="2" type="12" />
      <FIELD name="WB_CNTRY" precision="0" size="3" type="12" />
      <FIELD name="#SHAPE#" precision="0" size="0" type="-98">
        <FIELDVALUE>
          <POLYGON>
            <RING>
            <POINT x="-19.17289950385782" y="-21.047283675907693" />
            <POINT x="-35.92572247220596" y="-38.2787587290658" />
            <POINT x="-10.078509892468816" y="-48.809104594884616" />
            <POINT x="-5.291989044369359" y="-24.397848269577324" />
            <POINT x="-19.17289950385782" y="-21.047283675907693" />
            </RING>
          </POLYGON>
        </FIELDVALUE>
      </FIELD>
      </FEATURE>
    </ADDEDFEATURES>
  </MARKUPLAYER>
</MARKUP>

Back to top