DENSIFY | Examples |
<DENSIFY | Attribute
Description Table |
tolerance ="double"
> No Child Elements </DENSIFY > | |
Bold: Attribute or child element is
required. |
Attribute | Usage | Back to Top |
---|---|---|
tolerance | 1 Defines distance (tolerance) between points and is applied on geometry before projecting takes place. |
Example 1: | Back to Top |
<?xml version="1.0"
encoding="UTF-8"?> <ARCXML version="1.1"> <CONFIG> <ENVIRONMENT> <LOCALE country="US" language="en" variant="" /> <UIFONT color="0,0,0" name="Arial" size="12" style="regular" /> </ENVIRONMENT> <MAP> <PROPERTIES> <ENVELOPE minx="-180.0" miny="-90.0" maxx="180.0" maxy="90.0" /> <MAPUNITS units="meters" /> <FEATURECOORDSYS id="54008" /> <FILTERCOORDSYS id="4326" /> </PROPERTIES> <WORKSPACES> <SHAPEWORKSPACE name="shp_ws-0" directory="<path to WORLD ESRIDATA>"/> </WORKSPACES> <LAYER type="featureclass" name="Cntry94" visible="true" id="0"> <DATASET name="Cntry94" type="polygon" workspace="shp_ws-0" /> <COORDSYS id="4326" /> <DENSIFY tolerance="100" /> <SIMPLERENDERER> <SIMPLEPOLYGONSYMBOL filltransparency="1.0" fillcolor="27,127,127" /> </SIMPLERENDERER> </LAYER> </MAP> </CONFIG> </ARCXML> |