tweak the sketch of how painters algo works
parent
ba92c9b1b6
commit
2f62465fff
1 changed files with 5 additions and 4 deletions
|
@ -7,10 +7,11 @@ Mapnik uses the painter's algorithm to render maps. It means that layers are dra
|
||||||
|
|
||||||
```
|
```
|
||||||
For each layer
|
For each layer
|
||||||
|
For each style attached to the layer
|
||||||
Query the features from the layer
|
Query the features from the layer
|
||||||
Wait for the features...
|
Wait for the features...
|
||||||
For each feature in this layer
|
For each feature in this layer for given style
|
||||||
Draw the feature
|
For each matching rule draw the feature
|
||||||
```
|
```
|
||||||
In this case, the renderer spends a lot of time waiting for PostGIS to perform the query that will feed with features.
|
In this case, the renderer spends a lot of time waiting for PostGIS to perform the query that will feed with features.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue