-
Notifications
You must be signed in to change notification settings - Fork 0
Symbols
Symbols are supported by ArcGIS to describe a symbol in maps. Currently, there are three major types of symbols: Fill, line, and marker. sDecoder can decode all of the symbols without explicit arguments.
You can find the type of symbol from the returned jstring at fillType tag.
Fill symbols are just like a small rectangular map that has an outline and filling colors. Fill symbols consists of not only line symbols for line components, but also marker symbols for advanced marker representation. Please note that this symbol can only be standalone. Subtypes of fill symbols:
- Simple Fill: outline + filling color
- Line Fill: outline + filling color + filling lines
- Marker Fill: outline + filling color + filling markers More information about fill symbols: Creating Fill symbols—Help | ArcGIS for Desktop
Line symbols define lines, including its color, line styles, etc. This symbol can be standalone as well as fusing into the other symbols. Subtypes of line symbols:
- Simple Line
- Hash Line
- Cartographic Line
- Marker Line More information about line symbols: Creating line symbols—Help | ArcGIS for Desktop
Marker symbols define markers, including its color, marker styles, etc. This symbol can be standalone as well as fusing into the other symbols. Subtypes of marker symbols:
- Simple Marker
- Character Marker
- Arrow Marker
- More information about marker symbols: Creating marker symbols—Help | ArcGIS for Desktop