index.html 1.2 KB

123456789101112131415161718192021222324
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>3D Tiles Loader: ES Module installation example</title>
  6. </head>
  7. <body>
  8. <script async src="https://unpkg.com/es-module-shims@0.11.1/dist/es-module-shims.js"></script>
  9. <script type="importmap-shim">
  10. {
  11. "imports": {
  12. "three": "https://cdn.skypack.dev/three@0.129.0",
  13. "three/examples/jsm/loaders/GLTFLoader.js": "https://cdn.skypack.dev/three@v0.129.0/examples/jsm/loaders/GLTFLoader",
  14. "three/examples/jsm/loaders/DRACOLoader.js": "https://cdn.skypack.dev/three@v0.129.0/examples/jsm/loaders/DRACOLoader",
  15. "three/examples/jsm/loaders/KTX2Loader.js": "https://cdn.skypack.dev/three@v0.129.0/examples/jsm/loaders/KTX2Loader",
  16. "three/examples/jsm/loaders/OrbitControls": "https://cdn.skypack.dev/three@v0.129.0/examples/jsm/controls/OrbitControls",
  17. "three/examples/jsm/libs/stats.module.js": "https://cdn.skypack.dev/three@v0.129.0/examples/jsm/libs/stats.module",
  18. "three-loader-3dtiles" : "../../../dist/three-loader-3dtiles.esm.js"
  19. }
  20. }
  21. </script>
  22. <script type='module-shim' src='index.js'></script>
  23. </body>
  24. </html>