2013-05-26 22:34:38 +02:00
|
|
|
// --------------------------------------------------------
|
2013-05-24 04:15:37 +02:00
|
|
|
//
|
2013-05-25 10:56:32 +02:00
|
|
|
// This file is to configure the configurable settings.
|
|
|
|
// Load this file before script.js file at gmap.html.
|
2013-05-24 04:15:37 +02:00
|
|
|
//
|
2013-05-26 22:34:38 +02:00
|
|
|
// --------------------------------------------------------
|
2013-05-24 04:15:37 +02:00
|
|
|
|
2013-05-28 11:15:18 +02:00
|
|
|
// -- Output Settings -------------------------------------
|
|
|
|
// Show metric values
|
2015-01-07 19:41:38 +01:00
|
|
|
// This controls the units used in the plane table,
|
|
|
|
// and whether metric or imperial units are shown first
|
|
|
|
// in the detailed plane info.
|
2013-05-30 11:22:52 +02:00
|
|
|
Metric = false; // true or false
|
2013-05-28 11:15:18 +02:00
|
|
|
|
2013-05-26 22:34:38 +02:00
|
|
|
// -- Map settings ----------------------------------------
|
2015-01-07 19:41:38 +01:00
|
|
|
// These settings are overridden by any position information
|
|
|
|
// provided by dump1090 itself
|
2013-05-24 04:15:37 +02:00
|
|
|
// The Latitude and Longitude in decimal format
|
2013-05-26 22:34:38 +02:00
|
|
|
CONST_CENTERLAT = 45.0;
|
|
|
|
CONST_CENTERLON = 9.0;
|
2013-05-24 04:15:37 +02:00
|
|
|
// The google maps zoom level, 0 - 16, lower is further out
|
2015-01-07 02:18:36 +01:00
|
|
|
CONST_ZOOMLVL = 7;
|
2013-05-24 04:15:37 +02:00
|
|
|
|
2013-05-26 22:34:38 +02:00
|
|
|
// -- Marker settings -------------------------------------
|
2013-05-24 04:15:37 +02:00
|
|
|
// The default marker color
|
2013-05-26 22:34:38 +02:00
|
|
|
MarkerColor = "rgb(127, 127, 127)";
|
|
|
|
SelectedColor = "rgb(225, 225, 225)";
|
2014-10-02 23:50:09 +02:00
|
|
|
StaleColor = "rgb(190, 190, 190)";
|
2013-05-26 22:34:38 +02:00
|
|
|
|
|
|
|
// -- Site Settings ---------------------------------------
|
2015-01-07 19:41:38 +01:00
|
|
|
// These settings are overridden by any position information
|
|
|
|
// provided by dump1090 itself
|
2013-05-26 22:34:38 +02:00
|
|
|
SiteShow = false; // true or false
|
|
|
|
// The Latitude and Longitude in decimal format
|
|
|
|
SiteLat = 45.0;
|
|
|
|
SiteLon = 9.0;
|
|
|
|
|
2013-05-30 11:22:52 +02:00
|
|
|
SiteCircles = true; // true or false (Only shown if SiteShow is true)
|
2013-05-30 11:31:41 +02:00
|
|
|
// In nautical miles or km (depending settings value 'Metric')
|
|
|
|
SiteCirclesDistances = new Array(100,150,200);
|
2013-05-30 11:22:52 +02:00
|
|
|
|
2015-01-06 21:15:25 +01:00
|
|
|
|
|
|
|
// You can disable the clocks if you want here:
|
2015-01-07 19:41:38 +01:00
|
|
|
ShowClocks = true;
|