-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8"/>
<title>Dash-Map-Board</title>
<!-- jQuery -->
<script src = "js/jquery.js"></script>
<!-- ArcGIS JS API -->
<script src = "https://js.arcgis.com/3.18/"></script>
<!-- AmChart JS -->
<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/serial.js"></script>
<script src="https://www.amcharts.com/lib/3/pie.js"></script>
<script src="https://www.amcharts.com/lib/3/gauge.js"></script>
<script src="https://www.amcharts.com/lib/3/xy.js"></script>
<script src="https://www.amcharts.com/lib/3/radar.js"></script>
<script src="https://www.amcharts.com/lib/3/themes/light.js"></script>
<!-- ESRI CSS -->
<link rel="stylesheet" href="https://js.arcgis.com/3.18/dijit/themes/claro/claro.css"/>
<link rel="stylesheet" href="https://js.arcgis.com/3.18/esri/css/esri.css"/>
<!-- Saját CSS és JS -->
<link rel = "stylesheet" href = "css/style.css"/>
<script src = "js/map.js"></script>
</head>
<body class="claro">
<div id="heading" class="roundedBox headTitle">
<img src = "" class="logo"/>
<header id="title" class="mainTitle"></header>
<p id="subTitle" class="subTitle"></p>
<!-- ##### A lentit még meg kell csinálni rendesen! -->
<img id="colophonIcon" src = "img/createdby.png" alt = "Created by" class="infoImg" title="Készítette / Created by" onclick="controlColophonBox()"/>
<img id="infoIcon" src = "img/info.png" alt = "Information" class="infoImg" title="Információ / Information" onclick="controlInfoBox()"/>
</div>
<div id="timeSlider" class="roundedBox">
</div>
<div id="actualPanel" class="roundedBox">
<div id="placeYear"></div>
<div id="theme">
<button class="dropDownButton"></button>
<div id="dropDownContent" class="dropdown-content">
</div>
</div>
</div>
<div id="leftPanel">
<div id="map" class="roundedBox panels">
<div id="legendIcon" class="legend" onclick="controlLegend()">
<img src = "img/legend.png" alt = "Jelmagyarázat" class="legendImg"/>
</div>
<div id="legend" class="legend" onclick="controlLegend()">
</div>
</div>
</div>
<div id="splash"></div>
<div id="infoBox"></div>
<div id="colophon"></div>
</body>
</html>