cesium/Apps/HelloWorld.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
982 B
HTML
Raw Permalink Normal View History

<!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>
2022-11-15 22:57:16 +08:00
<script src="../Build/CesiumUnminified/Cesium.js"></script>
<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 {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
<script>
2022-02-24 04:49:52 +08:00
const viewer = new Cesium.Viewer("cesiumContainer");
</script>
</body>
2016-10-20 04:53:31 +08:00
</html>