123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <meta charset="utf-8"/>
- <title>3D Tiles Renderer Options Example</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- }
- html {
- overflow: hidden;
- font-family: Arial, Helvetica, sans-serif;
- user-select: none;
- }
- canvas {
- image-rendering: pixelated;
- outline: none;
- }
- #info {
- position: absolute;
- top: 0;
- left: 0;
- color: white;
- width: 100%;
- text-align: center;
- padding: 5px;
- pointer-events: none;
- line-height: 1.5em;
- }
- #info a {
- color: white;
- }
- </style>
- </head>
- <body>
- <div id="info">
- <div>
- 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.
- <br/>
- Sign up for a free ion account and get your own access token at <a href="http://cesium.com">cesium.com</a>.
- <br/>
- </div>
- </div>
- <script src="./ionExample.js"></script>
- </body>
- </html>
|