27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>GeoVis - Project 1</title>
|
|
<script src="https://www.gstatic.com/charts/loader.js"></script> <!-- Google Charts-->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"> </script> <!-- Tree Maps-->
|
|
<script src="js/tree.js"></script> <!-- Tree Maps-->
|
|
<script src="script.js"></script>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
|
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<h1 class="m-5">Aufgabe 1</h1>
|
|
<div class="container m-5">
|
|
<div class="row">
|
|
<div id="piechartYear" class="col-lg-6"></div>
|
|
<div id="piechartMonth" class="col-lg-6"></div>
|
|
</div>
|
|
<div id="linechart"></div>
|
|
<div id="scatterchart"></div>
|
|
<div id="bubblechart"></div>
|
|
</div>
|
|
<h1 class="m-5">Aufgabe 2</h1>
|
|
<div id="foldermap" class="m-5"></div>
|
|
</body>
|
|
</html> |