forked from iqqmuT/toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.template
29 lines (21 loc) · 988 Bytes
/
config.php.template
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
<?php
$cfg = array();
// --------------------------------------------------------------
// Map JavaScript library
// --------------------------------------------------------------
$JS_MAP_GOOGLE = 'google';
$JS_MAP_OPEN_LAYERS = 'open_layers';
$JS_MAP_LEAFLET = 'leaflet';
$cfg['js_map_library'] = $JS_MAP_GOOGLE;
// tile sources as JSON
$cfg['tile_sources_json'] = file_get_contents('export/mapnik/tiles.json');
// export styles as JSON
$cfg['export_styles_json'] = file_get_contents('export/mapnik/styles.json');
// --------------------------------------------------------------
// Area archive SQLite file, make sure web user has write access
// into it.
// --------------------------------------------------------------
$cfg['archive_file'] = 'db/archive.sqlite';
$cfg['osm_export_note_en'] = 'OSM printing works only for maps of Ecuador, Estonia and Finland.';
$cfg['osm_export_note_fi'] = 'OSM-tulostus toimii vain seuraavilla kartoilla: Ecuador, Viro, Suomi.';
?>