ionExample.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  5. <meta charset="utf-8"/>
  6. <title>3D Tiles Renderer Options Example</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. html {
  13. overflow: hidden;
  14. font-family: Arial, Helvetica, sans-serif;
  15. user-select: none;
  16. }
  17. canvas {
  18. image-rendering: pixelated;
  19. outline: none;
  20. }
  21. #info {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. color: white;
  26. width: 100%;
  27. text-align: center;
  28. padding: 5px;
  29. pointer-events: none;
  30. line-height: 1.5em;
  31. }
  32. #info a {
  33. color: white;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div id="info">
  39. <div>
  40. Default evaluation Cesium Ion token from the <a href="https://github.com/CesiumGS/cesium/blob/master/Source/Core/Ion.js#L6-L13">Cesium repository</a> and expires with every Cesium release.
  41. <br/>
  42. Sign up for a free ion account and get your own access token at <a href="http://cesium.com">cesium.com</a>.
  43. <br/>
  44. </div>
  45. </div>
  46. <script src="./ionExample.js"></script>
  47. </body>
  48. </html>