27 lines
698 B
HTML
27 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>JSON Test</title>
|
|
<script type="text/javascript" src="update.js"></script>
|
|
</head>
|
|
<body onload="startup()">
|
|
<table id="aisTable">
|
|
<thead>
|
|
<tr>
|
|
<th>MMSI</th>
|
|
<th>Name</th>
|
|
<th>Timestamp</th>
|
|
<th>Latitude</th>
|
|
<th>Longitude</th>
|
|
<th>IMO</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="aisTableBody">
|
|
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |