Skip to content

LinePatternSymbolizer

davidsvantesson edited this page Oct 16, 2012 · 8 revisions

Configuration Options for LinePatternSymbolizer

parameter value default
file path to image file none
base base path where to search for file none
width (removed) px 4
height (removed) px 4
type (removed) png tiff none

Note that the line direction matters!

Examples

A natural=cliff tag on an OpenStreetMap tile, rendered with LinePatternSymbolizer.

Showing a cliff on openstreetmap.org

Default

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

C++

    rule_type rule;
    rule.append(line_pattern_symbolizer("/path/to/icon.png", "png", 20, 20)); // file, type, width, height
Clone this wiki locally