]> mj.ucw.cz Git - leo.git/blob - map.cf
Switched to UCW configure and build system
[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         # Draw blue border around the requested rectangle
26         DrawBorder 0
27
28         # MapCSS stylesheet to apply
29         StyleSheet poskole.css
30
31         # Write SVG output here
32         SVGOutput output.svg
33 }
34
35 Debug {
36         # Dump map data exactly as parsed
37         DumpSource 0
38
39         # Dump map data after projection to Map.Projection
40         DumpAfterProj 0
41
42         # Dump map data after conversion to on-paper coordinates
43         DumpAfterScaling 0
44
45         # Dump intermediate representations of multipolygons
46         DumpMultipolygons 0
47
48         # Dump stylesheet as parsed
49         DumpCSS 0
50
51         # Dump styling decisions
52         DumpStyling 0
53
54         # Dump planning and drawing of symbols
55         DumpSymbols 0
56 }