Differences

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

Link to this comparison view

Next revision
Previous revision
ivac2:firdef_symbols_xml [2014/04/14 22:43]
filip.jonckers created
ivac2:firdef_symbols_xml [2015/06/08 15:45]
splendor.bouman removed
Line 1: Line 1:
-[[ivac2:​firdef_toc|Back]]+====== mapsymbols.xml ======
  
-====== symbols.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)|
  
-The symbols.xml file is used to draw symbols used in [[ivac2:​firdef_map_nav|nav elements]]. 
  
 Each symbol is drawn using the same methods as used in the maps: Each symbol is drawn using the same methods as used in the maps:
-line +  ​lines 
-linestrip +  path 
-lineloop +  circle 
-polygon +  arc 
-circle +  point 
-* polycircle + 
-* arc +The symbol is drawn using a cartesian system where the location of the [[ivac2:​firdef_map_symbol|symbol element]] is the centerpoint (0,0). 
-* polyarc +The name attribute of a symbol is used in the symbol attribute of the [[ivac2:​firdef_map_symbol|symbol element]]. 
-* point+ 
 + 
 + 
 + 
 +===== 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>​
  
-The symbol is drawn using a cartesian system where the location of the [[ivac2:​firdef_map_nav|nav element]] is the centerpoint (0,0). 
  
 +Use the symbol defined above in a map:
  
-Note: Only use <pointelements with the x,y attributes!+<code XML> 
 +<symbol id="​AFI"​ symbol="​vor"​ lat="​N0505428001"​ lon="​E0040820000"/>​ 
 +</code>
  
 +----
  
-The name attribute of a symbol is used in the symbol attribute of the [[ivac2:firdef_map_nav|nav element]].+[[ivac2:firdef|Back]]