index.html 1.0 KB

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- Use correct character set. -->
  5. <meta charset="utf-8">
  6. <!-- Tell IE to use the latest, best version. -->
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
  9. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
  10. <title>Cesium Viewer</title>
  11. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  12. <link rel="stylesheet" href="CesiumViewer.css" media="screen">
  13. </head>
  14. <body style="background: #000;">
  15. <div id="cesiumContainer" class="fullWindow"></div>
  16. <div id="loadingIndicator" class="loadingIndicator"></div>
  17. <script src="../../static/heatmap.min.js"></script>
  18. <script src="../../static/mapbox-streets-v6-style.js"></script>
  19. <script src="../../static/ol.js"></script>
  20. <script src="../../static/mvt.js"></script>
  21. <script src="CesiumViewer.js" type="module"></script>
  22. </body>
  23. </html>