42 lines
1.6 KiB
PHP
42 lines
1.6 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>
|
|
<label>
|
|
<input type="checkbox" id="windLayerCheckbox" checked> Wind
|
|
</label>
|
|
</div>
|
|
<div class="control-group">
|
|
<h3>Wind Altitude</h3>
|
|
<input type="range" id="windAltitudeSlider" min="0" max="15000" step="500" value="10000">
|
|
<span id="windAltitudeLabel">10000 m</span>
|
|
</div>
|
|
</div>
|
|
<script src="assets/cesium/Build/Cesium/Cesium.js"></script>
|
|
<script src="assets/js/wind.js?v=<?php echo time(); ?>"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|