Select to view content in your preferred language

ArcPad 7.1 symbology scripting question

2908
2
03-05-2014 11:06 AM
MarcusKaller
Emerging Contributor
My question is this:

I am writing a script for an ArcPad 7.1 apl file where the point symbols on a map represent two attributes, where one attribute pertain to shape, and the other being the color.  Is there a way where, when determining the Look Up Field for the ValueMapRenderer, can it look at more than one attribute?  Is there another method to this process?
Tags (3)
0 Kudos
2 Replies
MarcusKaller
Emerging Contributor
BTW, I am using VB scripting, for clarification purpose.
0 Kudos
MarcusKaller
Emerging Contributor
Here is a sample of what I'm working on:

<SYMBOLOGY>
   <SIMPLELABELRENDERER field="POLENUMBER" rotationfield="" visible="true" expression="" language="">
    <TEXTSYMBOL fontcolor="Black" font="MS Shell Dlg" fontstyle="regular" fontsize="8"/>
   </SIMPLELABELRENDERER>
   <VALUEMAPRENDERER lookupfield="REPAIRED">
    <EXACT value="NA" label="No Action">
     <SIMPLEMARKERSYMBOL color="Yellow" width="4"/>
    </EXACT>
    <EXACT value="N" label="Not Repaired">
     <SIMPLEMARKERSYMBOL width="4"/>
    </EXACT>
    <EXACT value="Y" label="Repaired">
     <SIMPLEMARKERSYMBOL color="Green" width="5"/>
    </EXACT>
    <OTHER label="&lt;Other&gt;">
     <SIMPLEMARKERSYMBOL color="190,190,190" width="4" type="square"/>
    </OTHER>
   </VALUEMAPRENDERER>
  </SYMBOLOGY>
0 Kudos