Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleExample config for using class breaks with icons for esriShapeLayer containing points
<esriShapeLayer id="myPointLayer" name="Some Points">
	<file>myPointLayer.shp</file>
	<pointIconId>default_icon.gif</pointIconId>
	<classBreaksAttributeName>ICON_ATTRIBUTE</classBreaksAttributeName>
	<classBreaks>
		<break lowerValue="0" label="low" icon="green_circle.gif"/>
		<break lowerValue="1000" label="high" icon="blue_square.gif"/>
	</classBreaks>
</esriShapeLayer>


Code Block
languagexml
titleExample geomap config for using orthographic projection
<geoMap>
            <geoDatum>WGS 1984</geoDatum>
            <projection>orthographic</projection>
            <defaultExtent id="NW">
                <left>-90</left>
                <right>5</right>
                <top>90</top>
                <bottom>0</bottom>
            </defaultExtent>
            <scaleBarVisible>true</scaleBarVisible>
            <northArrowVisible>true</northArrowVisible>
            <labelsVisible>true</labelsVisible>
            <backgroundColor>dark slate blue</backgroundColor>
            <esriShapeLayer id="World">
                <file>cntry98</file>
                <geoDatum>WGS 1984</geoDatum>
                <visible>true</visible>
                <lineColor>black</lineColor>
                <fillColor>dark olive green</fillColor>
            </esriShapeLayer>
            <gridLayer/>
            <esriShapeLayer id="World (overlay)">
                <file>cntry98</file>
                <geoDatum>WGS 1984</geoDatum>
                <visible>true</visible>
                <lineColor>black</lineColor>
                <opaquenessPercentage>0</opaquenessPercentage>
            </esriShapeLayer>
        </geoMap>

Image Added