Files
recorder/docroot/last/index.html
2016-01-30 10:45:15 +01:00

43 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Recorder Map</title>
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="manifest" href="manifest.json">
<link rel="icon" sizes="192x192" href="../img/recorder.png" />
<link rel="apple-touch-icon" href="../img/recorder.png" />
<style type="text/css">
body { font-size: 80%; }
td { border-bottom: 1px solid; border-right: 1px dotted;}
#map-canvas { height: 100% }
#wrapper { position: relative; }
#maplabel { position: absolute; top: 10px; left: 120px; z-index: 99;
background: white;
font-size: 1.2em;
padding: 4px;
border: 2px solid gray;
}
.extrainfo {
font-size: 80%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
<script src="functions.js"></script>
<script src="websock.js"></script>
<script src="../table/js/moment.min.js"></script>
</head>
<body>
<div id="output"></div>
<div id="wrapper">
<div id="map-canvas" style='width: 100%; height: 600px;'/></div>
<div id="maplabel"></div>
</div>
</body>
</html>