-
Nikolaus Krismer authoredNikolaus Krismer authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index_new.html 4.49 KiB
<!DOCTYPE html PUBLIC>
<html>
<head>
<title>ISOGA New: Using Isochrones for Geospatial Analysis</title>
<link type="text/css" rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<link type="text/css" rel="stylesheet" href="http://domoritz.de/leaflet-locatecontrol/src/L.Control.Locate.css" />
<link type="text/css" rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<link type="text/css" rel="stylesheet" href="css_new/jquery-ui-timepicker-addon.css" />
<link type="text/css" rel="stylesheet" href="css_new/geosearch.css" />
<link type="text/css" rel="stylesheet" href="css_new/isoga.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" />
<link type="text/css" rel="stylesheet" href="http://domoritz.de/leaflet-locatecontrol/src/L.Control.Locate.ie.css" />
<![endif]-->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js"></script>
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js"></script>
<script type="text/javascript" src="http://domoritz.de/leaflet-locatecontrol/src/L.Control.Locate.js"></script>
<script type="text/javascript" src="js_new/locatebyip.js"></script>
<script type="text/javascript" src="js_new/jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="js_new/console.js"></script>
<script type="text/javascript" src="js_new/geosearch.js"></script>
<script type="text/javascript" src="js_new/geosearch_provider_osm.js"></script>
<script type="text/javascript" src="js_new/controls.js"></script>
<script type="text/javascript" src="js_new/bing.js"></script>
<script type="text/javascript" src="js_new/google.js"></script>
<script type="text/javascript" src="js_new/map.js"></script>
<script type="text/javascript">
$(function() {
$('#help-dialog').dialog({
autoOpen: false,
modal: true,
resizable: false
});
$('#settings-dialog').dialog({
autoOpen: false,
modal: true,
resizable: false
});
$('#speed').spinner({
step: 0.1,
numberFormat: "n"
});
$('#settings-dialog select').css({'width':'100%'});
$('#settings-dialog input').css({'width':'100%'});
$('#datetime').datetimepicker({
dateFormat: 'dd.mm.yy',
timeFormat: 'HH:mm'
});
$('#datetime .ui-datepicker-today').click();
})
</script>
</head>
<body onload="javascript:createMap();">
<div class="page-wrapper">
<div id="map" class="map"></div>
<div id='help-dialog' title="Hilfe">
<p>Momentan ist keine Hilfe verfügbar!</p>
</div>
<div id="settings-dialog" title="Einstellungen">
<form>
<fieldset>
<label for="email">Algorithmus</label><br>
<select name="algorithm" id="algorithm" class="ui-widget-content ui-corner-all">
<option>MineX</option>
<option>MrneX</option>
<option>MDijkstra</option>
</select><br>
<label for="name">Dataset</label><br>
<select name="dataset" id="dataset" class="ui-widget-content ui-corner-all">
<option value="BZ">Bozen</option>
<option value="ST">Südtirol</option>
<option value="IT">Italien</option>
</select><br>
<label for="name">Datum/Zeit</label><br>
<input name="datetime" id="datetime" class="ui-widget-content ui-corner-all"/><br>
<label for="name">Geschwindigkeit</label><br>
<input name="speed" id="speed"/><br>
<label for="name">T-Mode</label><br>
<select name="tmode" id="tmode" class="ui-widget-content ui-corner-all">
<option>Unimodal</option>
<option>Multimodal</option>
</select><br>
<label for="name">Richtung</label><br>
<select name="direction" id="direction" class="ui-widget-content ui-corner-all">
<option>Incoming</option>
<option>Outgoing</option>
</select><br>
<label for="name">Enclosure</label><br>
<select name="enclosure" id="enclosure" class="ui-widget-content ui-corner-all">
<option>Buffer</option>
<option>Surface</option>
</select><br>
<label for="name">Expiration Mode</label><br>
<input type="checkbox" name="expirationMode" id="expirationMode" class="ui-widget-content ui-corner-all" />
</fieldset>
</form>
</div>
</div>
</body>
</html>