forked from mapnik/mapnik
-
Notifications
You must be signed in to change notification settings - Fork 1
LinePatternSymbolizer
gravitystorm edited this page Dec 2, 2011
·
5 revisions
parameter | value | default |
---|---|---|
file | path to image file | none |
base | base path where to search for file | none |
width | px | 4 |
height | px | 4 |
type | png tiff | none |
Note that the line direction matters!
A natural=cliff tag on an OpenStreetMap tile, rendered with LinePatternSymbolizer.
#!xml
<LinePatternSymbolizer width="16" height="16" type="png" file="/path/to/icon.png"/>
#!python
l = LinePatternSymbolizer('/path/to/icon.png','png',10,10) # file, type, width, height
#!cpp
rule_type rule;
rule.append(line_pattern_symbolizer("/path/to/icon.png", "png", 20, 20)); // file, type, width, height