forked from ToeBee/OsmAnd-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.php.sample
32 lines (30 loc) · 870 Bytes
/
settings.php.sample
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
<?php
global $secretKey;
global $workingDirectory;
global $fileName;
global $filePath;
global $logName;
global $logPath;
global $gpxDirectory;
global $name;
global $zoom;
global $accuracy;
global $height;
global $width;
#Change this! Just to prevent random people from being able to change your displayed location
$secretKey = '4fkw8vxp';
#used to round the lat/lon values so you aren't sharing your *exact* location
$accuracy = 2;
$workingDirectory = '/tmp/';
$fileName = 'location';
$filePath = $fileDirectory . $fileName;
$logName = $fileName . ".log";
$logPath = $workingDirectory . $logName;
$gpxDirectory = $workingDirectory . 'gpx/';
# Display options
$name = 'Toby';
#how far to zoom in on the map
$zoom = "8";
$height = "500";
$width = "600";
?>