-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.php.sample
37 lines (34 loc) · 1004 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
33
34
35
36
37
<?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 = 'CHANGE ME!';
# API key of OpenCellId
$OpenCellIDkey = 'CHANGE ME!';
# API key of Mozilla Location Service
$MSLkey = 'CHANGE ME!';
#used to round the lat/lon values so you aren't sharing your *exact* location
$accuracy = 9;
$workingDirectory = './';
$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 = "15";
$height = "500";
$width = "600";
?>