]> mj.ucw.cz Git - leo.git/blob - map.cf
Rotation controlled by a config option
[leo.git] / map.cf
1 Map {
2         # Source file with XML map of OSM data
3         XMLInput dump.osm
4
5         # Projection of our map
6         Projection "+proj=utm +zone=33 +ellps=WGS84"
7
8         # Which part of the map should drawn (in projected coordinates)
9         MinX 464737
10         MaxX 471140
11         MinY 5552849
12         MaxY 5557376
13
14         # Draw on A3 paper
15         PageWidth 420
16         PageHeight 297
17
18         # Draw on A4 paper
19         # PageWidth 297
20         # PageHeight 210
21
22         # Clip output to the requested rectangle
23         Clip 1
24
25         # Rotate the map by 90 degrees
26         Rotate 0
27
28         # Draw blue border around the requested rectangle
29         DrawBorder 0
30
31         # MapCSS stylesheet to apply
32         StyleSheet poskole.css
33
34         # Write SVG output here
35         SVGOutput output.svg
36 }
37
38 Debug {
39         # Dump map data exactly as parsed
40         DumpSource 0
41
42         # Dump map data after projection to Map.Projection
43         DumpAfterProj 0
44
45         # Dump map data after conversion to on-paper coordinates
46         DumpAfterScaling 0
47
48         # Dump intermediate representations of multipolygons
49         DumpMultipolygons 0
50
51         # Dump stylesheet as parsed
52         DumpCSS 0
53
54         # Dump styling decisions
55         DumpStyling 0
56
57         # Dump planning and drawing of symbols
58         DumpSymbols 0
59 }