42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Building Map</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-content">
|
|
<h1>Interactive Floor Plan with Sensors</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="main-content">
|
|
<div id="map-container">
|
|
<img id="map" src="images/floor1.png" alt="Floor 1">
|
|
<!-- Sensor points will be added here dynamically -->
|
|
</div>
|
|
<div id="dashboard">
|
|
<h2>Sensor Data</h2>
|
|
<table id="sensor-data">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Location</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
<!-- Sensor data will be inserted here -->
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="buttons-container">
|
|
<button onclick="showFloor(1)">Floor 1</button>
|
|
<button onclick="showFloor(2)">Floor 2</button>
|
|
<button onclick="showFloor(3)">Floor 3</button>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |