2013-03-22 05:32:03 +08:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
2013-07-02 03:43:23 +08:00
|
|
|
<head>
|
2014-03-18 22:28:31 +08:00
|
|
|
<!-- Use correct character set. -->
|
|
|
|
|
<meta charset="utf-8" />
|
2015-10-14 07:58:09 +08:00
|
|
|
<!-- Tell IE to use the latest, best version. -->
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2014-03-18 22:28:31 +08:00
|
|
|
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
|
2014-09-18 09:00:56 +08:00
|
|
|
<meta
|
|
|
|
|
name="viewport"
|
|
|
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
|
|
|
|
|
/>
|
2013-07-02 03:43:23 +08:00
|
|
|
<title>Hello World!</title>
|
2022-11-15 22:57:16 +08:00
|
|
|
<script src="../Build/CesiumUnminified/Cesium.js"></script>
|
2013-07-02 03:43:23 +08:00
|
|
|
<style>
|
2022-10-06 22:03:13 +08:00
|
|
|
@import url(../Build/CesiumUnminified/Widgets/widgets.css);
|
2014-10-28 00:05:05 +08:00
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#cesiumContainer {
|
2014-10-28 03:27:44 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
2013-03-22 05:32:03 +08:00
|
|
|
}
|
2013-07-02 03:43:23 +08:00
|
|
|
</style>
|
|
|
|
|
</head>
|
2013-03-22 05:32:03 +08:00
|
|
|
<body>
|
|
|
|
|
<div id="cesiumContainer"></div>
|
|
|
|
|
<script>
|
2022-02-24 04:49:52 +08:00
|
|
|
const viewer = new Cesium.Viewer("cesiumContainer");
|
2013-03-22 05:32:03 +08:00
|
|
|
</script>
|
|
|
|
|
</body>
|
2016-10-20 04:53:31 +08:00
|
|
|
</html>
|