-
Notifications
You must be signed in to change notification settings - Fork 19
/
config.php
25 lines (19 loc) · 811 Bytes
/
config.php
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
<?php
return array(
// Define the length a map stays in the cache (in days). If false, cache never expires.
'staticMapCacheLength' => false,
// Define the absolute path for the directory for the static map cache
'staticMapCachePath' => false,
// Define the public url for the directory for the static map cache
'staticMapCacheUrl' => false,
'availableMapButtons' => array(
array('label' => 'List', 'value' => 'list'),
array('label' => 'Refresh', 'value' => 'refresh'),
array('label' => 'Markers', 'value' => 'markers'),
array('label' => 'Routes', 'value' => 'routes'),
array('label' => 'Polygons', 'value' => 'polygons'),
array('label' => 'Polylines', 'value' => 'polylines'),
array('label' => 'Circles', 'value' => 'circles'),
array('label' => 'Images', 'value' => 'images'),
)
);