123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <meta name="xbsj-labels" content="Earth起步"></meta>
- <title>创建地球</title>
- <!-- 0 引入js文件 -->
- <script src="../../../XbsjEarth/XbsjEarth.js"></script>
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- margin: 0px;
- padding: 0px;
- }
- </style>
- </head>
- <body>
- <div id="earthContainer" style="width: 100%; height: 100%; background: grey">
- </div>
- <script>
- var earth;
- var bgImagery;
- function startup() {
- earth = new XE.Earth('earthContainer');
- earth.sceneTree.root = {
- "children": [
- {
- "czmObject": {
- "name": "默认离线影像",
- "xbsjType": "Imagery",
- "xbsjImageryProvider": {
- "createTileMapServiceImageryProvider": {
- "url": XE.HTML.cesiumDir + 'Assets/Textures/NaturalEarthII',
- "fileExtension": 'jpg',
- },
- "type": "createTileMapServiceImageryProvider"
- }
- }
- },
- ]
- };
- }
- window.earth = earth;
- // 1 XE.ready()会加载Cesium.js等其他资源,注意ready()返回一个Promise对象。
- XE.ready().then(startup);
- </script>
- </body>
- </html>
|