index.html 2.52 KB
Newer Older
Rushikesh Padsala's avatar
Rushikesh Padsala committed
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
58
59
<!DOCTYPE html>
<html lang="en">
    <head>
        <!-- Use correct character set. -->
        <meta charset="utf-8">
        <!-- Tell IE to use the latest, best version. -->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <!-- Make the app on mobile take up the full browser screen and disable user scaling. -->
        <meta name="viewport"
            content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
        <title>Rosensteinviertel 3D Viewer</title>
        <!-- The Cesium library. -->
        <script src="https://cesium.com/downloads/cesiumjs/releases/1.81/Build/Cesium/Cesium.js"></script>
        <link href="https://cesium.com/downloads/cesiumjs/releases/1.81/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
        <!-- stylesheets -->
        <link rel="stylesheet" href="./CSS/index.css" media="screen">
		<link rel="stylesheet" type="text/css" href="./CSS/rosensteinviertel3D.css">
	</head>
    <body>
        <!-- defining container to keep cesium viewer -->
        <div id="cesiumContainer"></div>
        <!-- defining menu panel -->
        <div class="backdrop" id="menu">
            <h2>Rosensteinviertel 3D Viewer</h2>
            <span><strong>Show</strong></span>
            <div class="nowrap">
                <input id="3dbuildings" name="source" type="radio" checked/>
                <label for="3dbuildings">3D Buildings</label>
            </div>
            <div class="nowrap">
                <input id="irradiance" name="source" type="radio"/>
                <label for="irradiance">Solar Irradiance</label>
            </div>
			<br>
			<!-- for legend panel -->
			<div id=irradianceLegend>
				<hr color='white'>
				<div class='my-legend' id="legendcontainer">
					<div class='legend-title'>Solar Irradiance (kWh/(m².a))</div>
					<div class='legend-scale'>
						<ul class='legend-labels'>
							<li><span style='background:#6495ED;'></span>Less than 200</li>
							<li><span style='background:#9370DB;'></span>200 to 450</li>
							<li><span style='background:#8B0000;'></span>450 to 700</li>
							<li><span style='background:#D2691E;'></span>700 to 950</li>
							<li><span style='background:#FFEBCD;'></span>950 to 1250</li>
							<li><span style='background:#EC1414;'></span>More than 1250</li>
						</ul>
					</div>
				</div>
			</div>
		</div>
		<a href="https://www.hft-stuttgart.de/" target='_blank'>
        <div class="credit"></div>
        </a>
		<!-- javascript -->
        <script src="./Source/App.js"></script>
    </body>
</html>