-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathacetate.cfg
79 lines (79 loc) · 2.19 KB
/
acetate.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"cache": {"name": "Disk", "path": "cache", "umask": "0000"},
"layers":
{
"world":
{
"provider":
{
"name": "mapnik",
"mapfile": "world-style.xml",
"fonts": "fonts"
},
"preview": { "zoom": 6 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
},
"cities":
{
"provider":
{
"name": "mapnik",
"mapfile": "cities-style.xml",
"fonts": "fonts"
},
"preview": { "zoom": 14 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
},
"composite":
{
"provider":
{
"class": "TileStache.Goodies.Providers.Composite.Provider",
"kwargs":
{
"stack":
[
{ "src": "cities-bg" },
{ "src": "cities-choropleth" },
{ "src": "cities-fg" }
]
}
},
"preview": { "zoom": 12 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
},
"cities-bg":
{
"provider":
{
"name": "mapnik",
"mapfile": "cities-style-bg.xml",
"fonts": "fonts"
},
"preview": { "zoom": 14 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
},
"cities-choropleth":
{
"provider":
{
"name": "mapnik",
"mapfile": "cities-choropleth.xml",
"fonts": "fonts"
},
"preview": { "zoom": 14 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
},
"cities-fg":
{
"provider":
{
"name": "mapnik",
"mapfile": "cities-style-fg.xml",
"fonts": "fonts"
},
"preview": { "zoom": 14 },
"metatile": { "rows": 4, "columns": 4, "buffer": 128 }
}
}
}