34935-vm/index.php
Flatlogic Bot 88f77eda28 Alerts
2025-10-14 02:54:24 +00:00

33 lines
1.2 KiB
PHP

<?php require_once 'config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Worldsphere.ai - 3D Weather Map</title>
<link href="assets/cesium/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<div id="cesiumContainer"></div>
<div id="controls">
<div class="control-group">
<h3>Layers</h3>
<label>
<input type="checkbox" id="weatherLayerCheckbox" checked> Weather
</label>
<label>
<input type="checkbox" id="wildfireLayerCheckbox" checked> Wildfires
</label>
<label>
<input type="checkbox" id="spcLayerCheckbox" checked> SPC Outlook
</label>
<label>
<input type="checkbox" id="weatherAlertsLayerCheckbox" checked> Weather Alerts
</label>
</div>
</div>
<script src="assets/cesium/Build/Cesium/Cesium.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>