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,
|
2015-02-20 00:09:03 +01:00
|
|
|
// You can choose to enable Metric or Imperial or both.
|
|
|
|
// If you enable both, by setting PreferMetric to either true or false,
|
|
|
|
// you control which unit is displayed first.
|
|
|
|
PreferMetric = true;
|
|
|
|
EnableMetric = true;
|
|
|
|
EnableImperial = 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
|
2015-01-22 15:33:42 +01:00
|
|
|
// provided by dump1090 itself. All positions are in decimal
|
|
|
|
// degrees.
|
|
|
|
|
|
|
|
// Default center of the map.
|
|
|
|
DefaultCenterLat = 45.0;
|
|
|
|
DefaultCenterLon = 9.0;
|
2013-05-24 04:15:37 +02:00
|
|
|
// The google maps zoom level, 0 - 16, lower is further out
|
2015-01-22 15:33:42 +01:00
|
|
|
DefaultZoomLvl = 7;
|
|
|
|
|
|
|
|
SiteShow = false; // true to show a center marker
|
|
|
|
SiteLat = 45.0; // position of the marker
|
|
|
|
SiteLon = 9.0;
|
|
|
|
SiteName = "My Radar Site"; // tooltip of the marker
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2015-01-22 15:33:42 +01:00
|
|
|
SiteCircles = true; // true to show circles (only shown if the center marker is shown)
|
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-22 15:33:42 +01:00
|
|
|
// Show the clocks at the top of the righthand pane? You can disable the clocks if you want here
|
2015-01-07 19:41:38 +01:00
|
|
|
ShowClocks = true;
|
2015-01-22 15:33:42 +01:00
|
|
|
|
|
|
|
// Controls page title, righthand pane when nothing is selected
|
|
|
|
PageName = "DUMP1090";
|