mirror of
https://github.com/30hours/3lips.git
synced 2025-03-19 00:21:34 +00:00
35 lines
1,006 B
HTML
35 lines
1,006 B
HTML
![]() |
<!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 application 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>Hello World!</title>
|
||
|
<script src="/public/cesium/Build/CesiumUnminified/Cesium.js"></script>
|
||
|
<style>
|
||
|
@import url(/public/cesium/Build/CesiumUnminified/Widgets/widgets.css);
|
||
|
html,
|
||
|
body,
|
||
|
#cesiumContainer {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="cesiumContainer"></div>
|
||
|
<script>
|
||
|
const viewer = new Cesium.Viewer("cesiumContainer");
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|