Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
ivac2:firdef_symbols_xml [2015/06/07 22:01]
splendor.bouman
— (current)
Line 1: Line 1:
-====== mapsymbols.xml ====== 
  
-The mapsymbols.xml file is used to define symbols used in [[ivac2:​firdef_map_symbol|symbol elements]]. 
- 
- 
- 
-^Element|symbol|| 
-^Attribute^Format^Remarks^ 
-|name|string|symbol name (must be unique)| 
- 
- 
-Each symbol is drawn using the same methods as used in the maps: 
-  * lines 
-  * path 
-  * circle 
-  * arc 
-  * point 
- 
-The symbol is drawn using a cartesian system where the location of the [[ivac2:​firdef_map_symbol|symbol element]] is the centerpoint (0,0). 
-The name attribute of a symbol is used in the symbol attribute of the [[ivac2:​firdef_map_symbol|symbol element]]. 
- 
- 
- 
- 
-===== example ====== 
- 
- 
-<code XML> 
-<​symbols>​ 
-    <symbol name="​vor">​ 
-        <circle radius="​3"​ segments="​32"​ width="​1"​ stroke_color="​symbol_vor">​ 
-            <point x="​0"​ y="​0"/>​ 
-        </​circle>​ 
-        <path stroke_width="​1"​ stroke_color="​symbol_vor"​ close="​true">​ 
-            <point x="​-3"​ y="​3"/>​ 
-            <point x="​3"​ y="​3"/>​ 
-            <point x="​0"​ y="​-3"/>​ 
-        </​path>​ 
-    </​symbol>​ 
-</​symbols>​ 
-</​code>​ 
- 
- 
-Use the symbol defined above in a map: 
- 
-<code XML> 
-<symbol id="​AFI"​ symbol="​vor"​ lat="​N0505428001"​ lon="​E0040820000"/>​ 
-</​code>​ 
- 
----- 
- 
-[[ivac2:​firdef|Back]]