Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • M mapnik3
  • Project information
    • Project information
    • Activity
    • Members
  • Analytics
    • Analytics
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
Collapse sidebar
  • 周峰
  • mapnik3
  • Wiki
  • PolygonPatternSymbolizer

PolygonPatternSymbolizer · Changes

Page history
clone mapnik wiki from github. authored May 14, 2021 by 周峰's avatar 周峰
Show whitespace changes
Inline Side-by-side
PolygonPatternSymbolizer.md 0 → 100644
View page @ 8516de00
<!-- Name: PolygonPatternSymbolizer -->
<!-- Version: 8 -->
<!-- Last-Modified: 2011/10/14 08:15:29 -->
<!-- Author: floledermann -->
[[Symbolizer|SymbologySupport]] that specifies rendering of an area enclosed by a polygon filling it with a repeated tiff, png, or svg image. An alternative to a [[PolygonSymbolizer]].
[[/images/polygon_pattern.png]]
## Configuration Options
| *parameter* | *value* | *default* | *accepts expressions* |
--------------|---------|-----------|-----------------------|
| file | path to image file | none | mapnik >= 2.0 |
| width **(removed)**| px | 4 | |
| height **(removed)**| px | 4 | |
| type **(removed)**| png tiff | none | |
| comp-op | [[Compositing]] | none | no |
## Examples
### Default
` FIXME: Add image `
#### XML
```xml
<PolygonPatternSymbolizer file="/path/to/icon.png"/>
```
#### Python
```python
p = PolygonPatternSymbolizer('/path/to/icon.png','png',10,10) # file, type, width, height
```
mapnik2:
```python
p = PolygonPatternSymbolizer(PathExpression('/path/to/icon.png'))
```
#### C++
```cpp
ruly_type rule;
rule.append(polygon_pattern_symbolizer("path/to/icon.png", "png", 20, 20)); // file, type, width, height
```
\ No newline at end of file
Clone repository
  • A perfect testcase
  • API changes between v2.0 and v2.1
  • API changes between v3.0 and v3.1
  • AWS Lambda
  • About Mapnik
  • AlsoFilter
  • Api changes between v2.1 and v2.2
  • Api changes between v2.2 and v2.3
  • Api changes between v2.3 and v3.0
  • ArchInstallation
  • Aspect Fix Mode
  • Benchmark Notes
  • BoundsClipping
  • BrokenExceptions
  • BuildingSymbolizer
View All Pages