b3dmExample.html 909 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 Batch 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. color: white;
  23. font-family: monospace;
  24. position: absolute;
  25. white-space: pre;
  26. line-height: 1.5em;
  27. padding: 10px;;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="info"></div>
  33. <script src="./b3dmExample.js" type="module"></script>
  34. </body>
  35. </html>