This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtilecache.cfg
98 lines (87 loc) · 3.45 KB
/
tilecache.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Configuration for MC TileCache
# TileCache can load Layers or Caches from anywhere in sys.path. If you
# prefer to load from somewhere which is *not* on sys.path, you can use
# the path configuration paramter to set a comma-seperated list of
# filesystem paths which you want prepended to sys.path.
#[tilecache_options]
#path=/home/you
# Some TileCache options are controlled by metadata. One example is the
# crossdomain_sites option, which allows you to add sites which are then
# included in a crossdomain.xml file served from the root of the TileCache
#[metadata]
#crossdomain_sites=openstreetmap.org,openaerialmap.org
# [cache] section examples: (mandatory!)
# see: docs/Caches.txt
#
# Disk:
# [cache]
# type=Disk (works out of the box)
# base=<full path to cache directory>
#
# Memcached:
# [cache]
# type=Memcached (you'll need memcache.py and memcached running!)
# servers=192.168.1.1:11211
#
# Amazon S3:
# [cache]
# type=AWSS3
# access_key=your_access_key
# secret_access_key=your_secret_access_key
# policy=[private|public-read|public-read-write|authenticated-read] default is private
# max_age=22222222
[cache]
type=Disk
base=/tmp/tilecache
# [layername] -- all other sections are named layers
#
# type={MapServerLayer,WMSLayer}
# *** if you want to use MapServerLayer, you *must* have Python mapscript
# installed and available ***
#
# mapfile=<full path to map file>
# url=<full URL of WMS>
# layers=<layer>[,<layer2>,<layer3>,...]
# *** optional iff layername if what
# your data source calls the layer **
# extension={png,jpeg,gif} *** defaults to "png" ***
# size=256,256 *** defaults to 256x256 ***
# bbox=-180.0,-90.0,180.0,90.0 *** defaults to world in lon/lat ***
# srs=EPSG:4326 *** defaults to EPSG:4326 ***
# levels=20 *** defaults to 20 zoom levels ***
# resolutions=0.1,0.05,0.025,... *** defaults to global profile ***
# metaTile=true *** metatiling off by default
# requires python-imaging ***
# metaSize=5,5 *** size of metatile in tiles
# defaults to 5 x 5 ***
# metaBuffer=10 *** size of metatile buffer in px ***
# mime_type=image/png *** by default, the mime type is image/extension ***
# *** but you may want to set extension=png8 for ***
# *** GeoServer WMS, and this lets you set the ***
# *** mime_type seperately. ***
# The following is a demonstration of a layer which would be generated
# according to the 'Google projection'. This uses the standard values for
# a spherical mercator projection for maxextent, maxresolution, units
# and srs.
# [google-tiles]
# type=WMS
# url=http://localhost/cgi-bin/mapserv?map=/mapdata/world.map
# layers=world
# spherical_mercator=true
# Standard MapServer layer configuration.
# [vmap0]
# type=MapServer
# layers=vmap0
# mapfile=/var/www/vmap0.map
# Rendering OpenStreetMap data with Mapnik; should use metaTiling to
# avoid labels across tile boundaries
# [osm]
# type=Mapnik
# mapfile=/home/user/osm-mapnik/osm.xml
# spherical_mercator=true
# tms_type=google
# metatile=yes
[basic]
type=WMS
url=http://labs.metacarta.com/wms/vmap0
extension=png