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