Rolling back a couple changes and spawning a branch from here.
This commit is contained in:
parent
21229d58ea
commit
072fba8718
|
@ -1,7 +1,9 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
|
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||||
|
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
|
||||||
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=geometry"></script>
|
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=geometry"></script>
|
||||||
<script type="text/javascript" src="config.js"></script>
|
<script type="text/javascript" src="config.js"></script>
|
||||||
<script type="text/javascript" src="untrackedDeveloperSettings.js"></script> <!-- Developers -->
|
<script type="text/javascript" src="untrackedDeveloperSettings.js"></script> <!-- Developers -->
|
||||||
|
@ -14,6 +16,9 @@
|
||||||
<script type="text/javascript" src="coolclock/moreskins.js"></script>
|
<script type="text/javascript" src="coolclock/moreskins.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body onload="initialize()">
|
<body onload="initialize()">
|
||||||
|
<div id="dialog-modal" title="Basic modal dialog">
|
||||||
|
<p>The settings feature is coming soon. Keep checking github.</p>
|
||||||
|
</div>
|
||||||
<div id="map_container">
|
<div id="map_container">
|
||||||
<div id="map_canvas"></div>
|
<div id="map_canvas"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,15 +39,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="sudo_buttons">
|
<div id="sudo_buttons">
|
||||||
<table width="100%"><tr>
|
<table width="100%"><tr>
|
||||||
<td width="150" style="text-align: center;">[ <span onclick="resetMap();">Reset Map</span> ]</td><td></td><td width="150" style="text-align: center;" id="setings_button">[ <span onclick="settingToggle();">Settings</span> ]</td>
|
<td width="150" style="text-align: center;">[ <span onclick="resetMap();">Reset Map</span> ]</td><td></td><td width="150" style="text-align: center;" id="setings_button">[ <span onclick="optionsModal();">Settings</span> ]</td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<div id="options" class="notvisable">
|
|
||||||
<table id="optionsTabs"><tr>
|
|
||||||
<td onclick="optionsGeneral();">General</td><td onclick="optionsKML();">KML</td>
|
|
||||||
</tr></table>
|
|
||||||
<div id="optionsBox"></div>
|
|
||||||
</div>
|
|
||||||
<div id="plane_detail"></div>
|
<div id="plane_detail"></div>
|
||||||
<div id="options"></div>
|
<div id="options"></div>
|
||||||
<div id="planes_table"></div>
|
<div id="planes_table"></div>
|
||||||
|
|
17
public_html/options.js
Normal file
17
public_html/options.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
var listKMLType = ['Approch', 'Departure', 'Transit', 'Custom1', 'Custom2'];
|
||||||
|
var listKMLs = localStorage['listKMLs'] || [];
|
||||||
|
|
||||||
|
function optionsInitalize() {
|
||||||
|
// Write your initalization here
|
||||||
|
// Gets called just before the 1-sec function call loop is setup
|
||||||
|
$( "#dialog-modal" ).dialog({
|
||||||
|
height: 140,
|
||||||
|
modal: true,
|
||||||
|
autoOpen: false,
|
||||||
|
closeOnEscape: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function optionsModal() {
|
||||||
|
$( "#dialog-modal" ).dialog( "open");
|
||||||
|
}
|
|
@ -553,11 +553,6 @@ function resetMap() {
|
||||||
refreshSelected();
|
refreshSelected();
|
||||||
}
|
}
|
||||||
|
|
||||||
function settingToggle() {
|
|
||||||
console.log("Settings Click");
|
|
||||||
$("#options").toggleClass("notvisable");
|
|
||||||
}
|
|
||||||
|
|
||||||
function drawCircle(marker, distance) {
|
function drawCircle(marker, distance) {
|
||||||
if (typeof distance === 'undefined') {
|
if (typeof distance === 'undefined') {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue