cmptExample.html 743 B

123456789101112131415161718192021222324252627282930
  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 Composite Format 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. </style>
  22. </head>
  23. <body>
  24. <script src="./cmptExample.js" type="module"></script>
  25. </body>
  26. </html>