3lips/api/map/index.html

34 lines
1.1 KiB
HTML
Raw Normal View History

2024-02-04 12:08:48 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
2024-02-07 12:44:56 +00:00
<meta charset="utf-8"/>
2024-02-04 12:08:48 +00:00
<!-- Tell IE to use the latest, best version. -->
2024-02-07 12:44:56 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
2024-02-04 12:08:48 +00:00
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
2024-02-07 12:44:56 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<title>3lips Map</title>
<script src="/cesium/Build/Cesium/Cesium.js"></script>
2024-02-04 12:08:48 +00:00
<style>
2024-02-07 12:44:56 +00:00
@import url(/cesium/Build/Cesium/Widgets/widgets.css);
2024-02-04 12:08:48 +00:00
html,
body,
#cesiumContainer {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
2024-02-07 12:44:56 +00:00
<script src="lib/jquery-3.6.0.min.js"></script>
2024-02-14 12:42:23 +00:00
<script src="event/adsb.js"></script>
<script src="event/radar.js"></script>
2024-03-03 08:29:02 +00:00
<script src="event/ellipsoid.js"></script>
2024-02-07 12:44:56 +00:00
<script src="main.js"></script>
2024-02-04 12:08:48 +00:00
</body>
</html>