Differences

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

Link to this comparison view

ivac2:firdef_map_pattern [2015/04/11 01:28]
filip.jonckers
ivac2:firdef_map_pattern [2017/04/08 14:27]
Line 1: Line 1:
-[[ivac2:​firdef_toc|Back]] 
- 
-====== Pattern attribute ====== 
- 
-To draw a line pattern (dotted or dashed), use the pattern attribute to define the line pattern. 
- 
-The pattern attribute value consists of one or more comma separated double values, this array of numbers specifies the sequence of dash/​space/​dash/​space etc. When finished the sequence repeats itself to the end of the line. 
- 
- 
-|pattern="​5" ​  | A basic setting that will result in a dashed line where both the dashes and spaces are 5 pixels in size. | 
-|pattern="​1,​2"​ | A setting that will result in a dotted line where the dashes are 1 pixel in size and the spaces are 2 pixels. | 
-|pattern="​2,​3"​ | Another dashed line but with small dashes. | 
-|pattern="​5,​5,​2,​2"​ | A setting where the first dash is five pixels, then a space of five pixels, then a dash of two pixels, then a space of two pixels, then the sequence starts again. | 
- 
- 
- 
- 
- 
-<code XML> 
-  <line pattern="​8,​4">​ 
-      <point lon="​E0042957"​ lat="​N0511059"/>​ 
-      <point lon="​E0044324"​ lat="​N0510755"/>​ 
-  </​line>​ 
-</​code>​ 
- 
-