cesim 加载本地模型

cesim 加载本地模型,第1张

注意

加载本地模型文件要配置webpack文件 

我加载的是glb文件 

  module: {

        rules: [

            {

                test:/\.(glb)$/, //

                loader: 'url-loader',

                options: {

                  limit: 10000,

       

                }

              },

          {

            test: /.js$/,

            include: [resolve('node_modules/cesium/Source')],

            use: {

              loader: require.resolve('@open-wc/webpack-import-meta-loader')

            }

          }

        //   {

        //     // match all .gltf files

        //     test: /\.(gltf)$/,

        //     loader: 'url-loader'

        //   },

        ],

        // Removes these errors: "Critical dependency: require function is used in a way in which dependencies cannot be statically extracted"

        // https://github.com/AnalyticalGraphicsInc/cesium-webpack-example/issues/6

        unknownContextCritical: false

        // unknownContextRegExp: /^.\/.*$/

      }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/940341.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存