-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.php
More file actions
72 lines (68 loc) · 1.46 KB
/
Copy pathconfig.php
File metadata and controls
72 lines (68 loc) · 1.46 KB
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
<?php
define( 'DATABASE', 'demo' );
define( 'COLLECTION', 'poiConcat' );
define( 'NOTESCACHECOLLECTION', 'notescache' );
define( 'TYPE', 'ty' );
define( 'LOC', 'l' );
define( 'TAGS', 'ts' );
define( 'META', 'm' );
define( 'DESC_VERSION', 2 );
$layers = [
'3angle' => [
'directory' => 'maps-3angle',
'layerName' => 'threeangle',
],
'5 Pubs' => [
'directory' => 'maps-5pubs',
'layerName' => 'fivepubs',
],
'Events' => [
'directory' => 'maps-events',
'layerName' => 'events',
],
'Flickr' => [
'directory' => 'maps-flickr',
'layerName' => 'flickr',
],
'Foursquare' => [
'directory' => 'maps-4sq',
'layerName' => 'foursquare',
],
'Great Circle Box' => [
'directory' => 'maps-great-circle',
'layerName' => 'gc',
],
'Great Circle Line' => [
'directory' => 'maps-great-circle-line',
'layerName' => 'gcl',
],
'Great Circle Radius' => [
'directory' => 'maps-great-circle-radius',
'layerName' => 'gcr',
],
'Nearest Postbox' => [
'directory' => 'maps-postbox',
'layerName' => 'postbox',
],
'OSM Notes' => [
'directory' => 'maps-osm-notes',
'layerName' => 'osmnotes',
],
'Postboxes' => [
'directory' => 'maps-postboxes',
'layerName' => 'postboxes',
],
'Real Cider/Real Ale' => [
'directory' => 'maps-pubs-aggregation',
'layerName' => 'pubsaggr',
],
'Timezone' => [
'directory' => 'maps-timezone',
'layerName' => 'timezone',
],
'Timezone (All)' => [
'directory' => 'maps-all-zones',
'layerName' => 'timezones',
],
];
?>