12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <style>
- @import url(./Source/Widgets/widgets.css);
- @import url(./Source/Widgets/cesium-navigation.css);
- .compass{
- top:1%
- }
- html,
- body,
- #container{
- position: absolute;
- width: 100%;
- height: 100%;
- margin: 0 auto;
- padding: 0;
- overflow: hidden;
- }
-
- #fun {
- position: absolute;
- z-index: 100;
- left: 5%;
- }
- #fun1 {
- position: absolute;
- z-index: 100;
- left: 10%;
- }
- #fun2 {
- position: absolute;
- z-index: 100;
- left: 15%;
- }
- #fun3 {
- position: absolute;
- z-index: 100;
- left: 20%;
- }
- #font{
- border-radius: 15px;
- text-align:left;
- bottom: 2%;
- }
- </style>
- <script src="./Source/DGE.min.js"></script>
- </head>
- <body>
- <div id="container">
- <!-- <button id="fun">开始</button>
- <button id="fun1">暂停</button>
- <button id="fun2">继续</button>
- <button id="fun3">结束</button> -->
- <div id="font">
- </div>
- </div>
-
- </body>
- <script src="data.js"></script>
- <script src="map.js"></script>
|