Updated LineSymbolizer (markdown)

eriksondata 2012-04-02 14:58:14 -07:00
parent 9fb6f35a4e
commit 43fc8ebb06

@ -28,11 +28,15 @@ A LineSymbolizer is used to render a "stroke" along a linear geometry.
```python
l = LineSymbolizer(Color('green'),0.1)
```
To work directly with the stroke object:
```python
l = LineSymbolizer()
s = Stroke(Color('green'),0.1)
s.add_dash(.1,.1)
s.opacity = .5
l.stroke = s
```
Fetch all the possible methods like: