rayshon-cesium-expander 1.3.11 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +18 -18
- package/package.json +1 -1
- package/lib/268.index.js +0 -1
- package/lib/415.index.js +0 -1
- package/lib/647.index.js +0 -1
- package/lib/666.index.js +0 -1
package/package.json
CHANGED
package/lib/268.index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports["cesium-expander"]=r():e["cesium-expander"]=r()}(self,()=>(()=>{"use strict";var u,i,p,e,t={},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;r=o[e]={exports:{}};return t[e](r,r.exports,a),r.exports}a.m=t,a.x=()=>{var e=a.O(void 0,[666,415],()=>a(2415));return a.O(e)},u=[],a.O=(e,r,t,o)=>{if(!r){for(var n=1/0,i=0;i<u.length;i++){for(var p,[r,t,o]=u[i],c=!0,s=0;s<r.length;s++)(!1&o||o<=n)&&Object.keys(a.O).every(e=>a.O[e](r[s]))?r.splice(s--,1):(c=!1,o<n&&(n=o));c&&(u.splice(i--,1),void 0!==(p=t())&&(e=p))}return e}o=o||0;for(var i=u.length;0<i&&u[i-1][2]>o;i--)u[i]=u[i-1];u[i]=[r,t,o]},a.f={},a.e=t=>Promise.all(Object.keys(a.f).reduce((e,r)=>(a.f[r](t,e),e),[])),a.u=e=>e+".index.js",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),a.g.importScripts&&(r=a.g.location+"");var r,n=a.g.document;if(r||!n||(r=n.currentScript?n.currentScript.src:r)||(n=n.getElementsByTagName("script")).length&&(r=n[n.length-1].src),r)return r=r.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=r,i={268:1},a.f.i=(e,r)=>{i[e]||importScripts(a.p+a.u(e))},n=self.webpackChunkcesium_expander=self.webpackChunkcesium_expander||[],p=n.push.bind(n),n.push=e=>{var r,[t,o,n]=e;for(r in o)a.o(o,r)&&(a.m[r]=o[r]);for(n&&n(a);t.length;)i[t.pop()]=1;p(e)},e=a.x,(a.x=()=>Promise.all([a.e(666),a.e(415)]).then(e))();throw new Error("Automatic publicPath is not supported in this browser")})());
|
package/lib/415.index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunkcesium_expander=self.webpackChunkcesium_expander||[]).push([[415],{2415:(e,t,i)=>{i(5666);function p(e){e=defaultValue(e,defaultValue.EMPTY_OBJECT),Check.defined("options.context",e.context);var t=e.context,i=e.width,r=e.height,o=e.source,a=(defined(o)&&(defined(i)||(i=defaultValue(o.videoWidth,o.width)),defined(r)||(r=defaultValue(o.videoHeight,o.height))),defaultValue(e.pixelFormat,PixelFormat.RGBA)),n=defaultValue(e.pixelDatatype,PixelDatatype.UNSIGNED_BYTE),s=PixelFormat.toInternalFormat(a,n,t),l=PixelFormat.isCompressedFormat(s);if(!defined(i)||!defined(r))throw new DeveloperError("options requires a source field to create an initialized texture or width and height fields to create a blank texture.");if(Check.typeOf.number.greaterThan("width",i,0),i>ContextLimits.maximumTextureSize)throw new DeveloperError("Width must be less than or equal to the maximum texture size (".concat(ContextLimits.maximumTextureSize,"). Check maximumTextureSize."));if(Check.typeOf.number.greaterThan("height",r,0),r>ContextLimits.maximumTextureSize)throw new DeveloperError("Height must be less than or equal to the maximum texture size (".concat(ContextLimits.maximumTextureSize,"). Check maximumTextureSize."));if(!PixelFormat.validate(a))throw new DeveloperError("Invalid options.pixelFormat.");if(!l&&!PixelDatatype.validate(n))throw new DeveloperError("Invalid options.pixelDatatype.");if(a===PixelFormat.DEPTH_COMPONENT&&n!==PixelDatatype.UNSIGNED_SHORT&&n!==PixelDatatype.UNSIGNED_INT)throw new DeveloperError("When options.pixelFormat is DEPTH_COMPONENT, options.pixelDatatype must be UNSIGNED_SHORT or UNSIGNED_INT.");if(a===PixelFormat.DEPTH_STENCIL&&n!==PixelDatatype.UNSIGNED_INT_24_8)throw new DeveloperError("When options.pixelFormat is DEPTH_STENCIL, options.pixelDatatype must be UNSIGNED_INT_24_8.");if(n===PixelDatatype.FLOAT&&!t.floatingPointTexture)throw new DeveloperError("When options.pixelDatatype is FLOAT, this WebGL implementation must support the OES_texture_float extension. Check context.floatingPointTexture.");if(n===PixelDatatype.HALF_FLOAT&&!t.halfFloatingPointTexture)throw new DeveloperError("When options.pixelDatatype is HALF_FLOAT, this WebGL implementation must support the OES_texture_half_float extension. Check context.halfFloatingPointTexture.");if(PixelFormat.isDepthFormat(a)){if(defined(o))throw new DeveloperError("When options.pixelFormat is DEPTH_COMPONENT or DEPTH_STENCIL, source cannot be provided.");if(!t.depthTexture)throw new DeveloperError("When options.pixelFormat is DEPTH_COMPONENT or DEPTH_STENCIL, this WebGL implementation must support WEBGL_depth_texture. Check context.depthTexture.")}if(l){if(!defined(o)||!defined(o.arrayBufferView))throw new DeveloperError("When options.pixelFormat is compressed, options.source.arrayBufferView must be defined.");if(PixelFormat.isDXTFormat(s)&&!t.s3tc)throw new DeveloperError("When options.pixelFormat is S3TC compressed, this WebGL implementation must support the WEBGL_compressed_texture_s3tc extension. Check context.s3tc.");if(PixelFormat.isPVRTCFormat(s)&&!t.pvrtc)throw new DeveloperError("When options.pixelFormat is PVRTC compressed, this WebGL implementation must support the WEBGL_compressed_texture_pvrtc extension. Check context.pvrtc.");if(PixelFormat.isASTCFormat(s)&&!t.astc)throw new DeveloperError("When options.pixelFormat is ASTC compressed, this WebGL implementation must support the WEBGL_compressed_texture_astc extension. Check context.astc.");if(PixelFormat.isETC2Format(s)&&!t.etc)throw new DeveloperError("When options.pixelFormat is ETC2 compressed, this WebGL implementation must support the WEBGL_compressed_texture_etc extension. Check context.etc.");if(PixelFormat.isETC1Format(s)&&!t.etc1)throw new DeveloperError("When options.pixelFormat is ETC1 compressed, this WebGL implementation must support the WEBGL_compressed_texture_etc1 extension. Check context.etc1.");if(PixelFormat.isBC7Format(s)&&!t.bc7)throw new DeveloperError("When options.pixelFormat is BC7 compressed, this WebGL implementation must support the EXT_texture_compression_bptc extension. Check context.bc7.");if(PixelFormat.compressedTextureSizeInBytes(s,i,r)!==o.arrayBufferView.byteLength)throw new DeveloperError("The byte length of the array buffer is invalid for the compressed texture with the given width and height.")}var p=e.preMultiplyAlpha||a===PixelFormat.RGB||a===PixelFormat.LUMINANCE,h=defaultValue(e.flipY,!0),f=defaultValue(e.skipColorSpaceConversion,!1),u=!0,m=t._gl,x=m.TEXTURE_2D,_=m.createTexture(),c=(m.activeTexture(m.TEXTURE0),m.bindTexture(x,_),4);if(defined(o)&&defined(o.arrayBufferView)&&!l&&(c=PixelFormat.alignmentInBytes(a,n,i)),m.pixelStorei(m.UNPACK_ALIGNMENT,c),f?m.pixelStorei(m.UNPACK_COLORSPACE_CONVERSION_WEBGL,m.NONE):m.pixelStorei(m.UNPACK_COLORSPACE_CONVERSION_WEBGL,m.BROWSER_DEFAULT_WEBGL),defined(o))if(defined(o.arrayBufferView)){m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),m.pixelStorei(m.UNPACK_FLIP_Y_WEBGL,!1);var E,d,T,c=o.arrayBufferView;if(l){if(m.compressedTexImage2D(x,0,s,i,r,0,c),defined(o.mipLevels))for(d=i,T=r,E=0;E<o.mipLevels.length;++E)(d=0|Math.floor(d/2))<1&&(d=1),(T=0|Math.floor(T/2))<1&&(T=1),m.compressedTexImage2D(x,E+1,s,d,T,0,o.mipLevels[E])}else if(h&&(c=PixelFormat.flipY(c,a,n,i,r)),m.texImage2D(x,0,s,i,r,0,a,PixelDatatype.toWebGLConstant(n,t),c),defined(o.mipLevels))for(d=i,T=r,E=0;E<o.mipLevels.length;++E)(d=0|Math.floor(d/2))<1&&(d=1),(T=0|Math.floor(T/2))<1&&(T=1),m.texImage2D(x,E+1,s,d,T,0,a,PixelDatatype.toWebGLConstant(n,t),o.mipLevels[E])}else defined(o.framebuffer)?(m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),m.pixelStorei(m.UNPACK_FLIP_Y_WEBGL,!1),o.framebuffer!==t.defaultFramebuffer&&o.framebuffer._bind(),m.copyTexImage2D(x,0,s,o.xOffset,o.yOffset,i,r,0),o.framebuffer!==t.defaultFramebuffer&&o.framebuffer._unBind()):(m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,p),m.pixelStorei(m.UNPACK_FLIP_Y_WEBGL,h),m.texImage2D(x,0,s,a,PixelDatatype.toWebGLConstant(n,t),o));else m.texImage2D(x,0,s,i,r,0,a,PixelDatatype.toWebGLConstant(n,t),null),u=!1;m.bindTexture(x,null),f=l?PixelFormat.compressedTextureSizeInBytes(a,i,r):PixelFormat.textureSizeInBytes(a,n,i,r),this._id=createGuid(),this._context=t,this._textureFilterAnisotropic=t._textureFilterAnisotropic,this._textureTarget=x,this._texture=_,this._internalFormat=s,this._pixelFormat=a,this._pixelDatatype=n,this._width=i,this._height=r,this._dimensions=new Cartesian2(i,r),this._hasMipmap=!1,this._sizeInBytes=f,this._preMultiplyAlpha=p,this._flipY=h,this._initialized=u,this._sampler=void 0,this.sampler=defined(e.sampler)?e.sampler:new Sampler}p.create=function(e){return new p(e)},p.fromFramebuffer=function(e){e=defaultValue(e,defaultValue.EMPTY_OBJECT),Check.defined("options.context",e.context);var t=e.context,i=t._gl,r=defaultValue(e.pixelFormat,PixelFormat.RGB),o=defaultValue(e.framebufferXOffset,0),a=defaultValue(e.framebufferYOffset,0),n=defaultValue(e.width,i.drawingBufferWidth),s=defaultValue(e.height,i.drawingBufferHeight),l=e.framebuffer;if(!PixelFormat.validate(r))throw new DeveloperError("Invalid pixelFormat.");if(PixelFormat.isDepthFormat(r)||PixelFormat.isCompressedFormat(r))throw new DeveloperError("pixelFormat cannot be DEPTH_COMPONENT, DEPTH_STENCIL or a compressed format.");if(Check.defined("options.context",e.context),Check.typeOf.number.greaterThanOrEquals("framebufferXOffset",o,0),Check.typeOf.number.greaterThanOrEquals("framebufferYOffset",a,0),o+n>i.drawingBufferWidth)throw new DeveloperError("framebufferXOffset + width must be less than or equal to drawingBufferWidth");if(a+s>i.drawingBufferHeight)throw new DeveloperError("framebufferYOffset + height must be less than or equal to drawingBufferHeight.");return new p({context:t,width:n,height:s,pixelFormat:r,source:{framebuffer:defined(l)?l:t.defaultFramebuffer,xOffset:o,yOffset:a,width:n,height:s}})},Object.defineProperties(p.prototype,{id:{get:function(){return this._id}},sampler:{get:function(){return this._sampler},set:function(e){var t=e.minificationFilter,i=e.magnificationFilter,r=this._context,o=this._pixelFormat,a=this._pixelDatatype,n=t===TextureMinificationFilter.NEAREST_MIPMAP_NEAREST||t===TextureMinificationFilter.NEAREST_MIPMAP_LINEAR||t===TextureMinificationFilter.LINEAR_MIPMAP_NEAREST||t===TextureMinificationFilter.LINEAR_MIPMAP_LINEAR,a=((a===PixelDatatype.FLOAT&&!r.textureFloatLinear||a===PixelDatatype.HALF_FLOAT&&!r.textureHalfFloatLinear)&&(t=n?TextureMinificationFilter.NEAREST_MIPMAP_NEAREST:TextureMinificationFilter.NEAREST,i=TextureMagnificationFilter.NEAREST),r.webgl2&&PixelFormat.isDepthFormat(o)&&(t=TextureMinificationFilter.NEAREST,i=TextureMagnificationFilter.NEAREST),r._gl),n=this._textureTarget;a.activeTexture(a.TEXTURE0),a.bindTexture(n,this._texture),a.texParameteri(n,a.TEXTURE_MIN_FILTER,t),a.texParameteri(n,a.TEXTURE_MAG_FILTER,i),a.texParameteri(n,a.TEXTURE_WRAP_S,e.wrapS),a.texParameteri(n,a.TEXTURE_WRAP_T,e.wrapT),defined(this._textureFilterAnisotropic)&&a.texParameteri(n,this._textureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,e.maximumAnisotropy),a.bindTexture(n,null),this._sampler=e}},pixelFormat:{get:function(){return this._pixelFormat}},pixelDatatype:{get:function(){return this._pixelDatatype}},dimensions:{get:function(){return this._dimensions}},preMultiplyAlpha:{get:function(){return this._preMultiplyAlpha}},flipY:{get:function(){return this._flipY}},width:{get:function(){return this._width}},height:{get:function(){return this._height}},sizeInBytes:{get:function(){return this._hasMipmap?Math.floor(4*this._sizeInBytes/3):this._sizeInBytes}},_target:{get:function(){return this._textureTarget}}}),p.prototype.copyFrom=function(e){Check.defined("options",e);var t=defaultValue(e.xOffset,0),i=defaultValue(e.yOffset,0);if(Check.defined("options.source",e.source),PixelFormat.isDepthFormat(this._pixelFormat))throw new DeveloperError("Cannot call copyFrom when the texture pixel format is DEPTH_COMPONENT or DEPTH_STENCIL.");if(PixelFormat.isCompressedFormat(this._pixelFormat))throw new DeveloperError("Cannot call copyFrom with a compressed texture pixel format.");Check.typeOf.number.greaterThanOrEquals("xOffset",t,0),Check.typeOf.number.greaterThanOrEquals("yOffset",i,0),Check.typeOf.number.lessThanOrEquals("xOffset + options.source.width",t+e.source.width,this._width),Check.typeOf.number.lessThanOrEquals("yOffset + options.source.height",i+e.source.height,this._height);var r=e.source,o=this._context,a=o._gl,n=this._textureTarget,s=(a.activeTexture(a.TEXTURE0),a.bindTexture(n,this._texture),r.width),l=r.height,p=r.arrayBufferView,h=this._width,f=this._height,u=this._internalFormat,m=this._pixelFormat,x=this._pixelDatatype,_=this._preMultiplyAlpha,c=this._flipY,e=defaultValue(e.skipColorSpaceConversion,!1),E=4,E=(defined(p)&&(E=PixelFormat.alignmentInBytes(m,x,s)),a.pixelStorei(a.UNPACK_ALIGNMENT,E),e?a.pixelStorei(a.UNPACK_COLORSPACE_CONVERSION_WEBGL,a.NONE):a.pixelStorei(a.UNPACK_COLORSPACE_CONVERSION_WEBGL,a.BROWSER_DEFAULT_WEBGL),!1);this._initialized||(0===t&&0===i&&s===h&&l===f?(defined(p)?(a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),a.pixelStorei(a.UNPACK_FLIP_Y_WEBGL,!1),c&&(p=PixelFormat.flipY(p,m,x,h,f)),a.texImage2D(n,0,u,h,f,0,m,PixelDatatype.toWebGLConstant(x,o),p)):(a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,_),a.pixelStorei(a.UNPACK_FLIP_Y_WEBGL,c),a.texImage2D(n,0,u,m,PixelDatatype.toWebGLConstant(x,o),r)),E=!0):(a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),a.pixelStorei(a.UNPACK_FLIP_Y_WEBGL,!1),e=PixelFormat.createTypedArray(m,x,h,f),a.texImage2D(n,0,u,h,f,0,m,PixelDatatype.toWebGLConstant(x,o),e)),this._initialized=!0),E||(defined(p)?(a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),a.pixelStorei(a.UNPACK_FLIP_Y_WEBGL,!1),c&&(p=PixelFormat.flipY(p,m,x,s,l)),a.texSubImage2D(n,0,t,i,s,l,m,PixelDatatype.toWebGLConstant(x,o),p)):(a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,_),a.pixelStorei(a.UNPACK_FLIP_Y_WEBGL,c),a.texSubImage2D(n,0,t,i,m,PixelDatatype.toWebGLConstant(x,o),r))),a.bindTexture(n,null)},p.prototype.copyFromFramebuffer=function(e,t,i,r,o,a){if(e=defaultValue(e,0),t=defaultValue(t,0),i=defaultValue(i,0),r=defaultValue(r,0),o=defaultValue(o,this._width),a=defaultValue(a,this._height),PixelFormat.isDepthFormat(this._pixelFormat))throw new DeveloperError("Cannot call copyFromFramebuffer when the texture pixel format is DEPTH_COMPONENT or DEPTH_STENCIL.");if(this._pixelDatatype===PixelDatatype.FLOAT)throw new DeveloperError("Cannot call copyFromFramebuffer when the texture pixel data type is FLOAT.");if(this._pixelDatatype===PixelDatatype.HALF_FLOAT)throw new DeveloperError("Cannot call copyFromFramebuffer when the texture pixel data type is HALF_FLOAT.");if(PixelFormat.isCompressedFormat(this._pixelFormat))throw new DeveloperError("Cannot call copyFrom with a compressed texture pixel format.");Check.typeOf.number.greaterThanOrEquals("xOffset",e,0),Check.typeOf.number.greaterThanOrEquals("yOffset",t,0),Check.typeOf.number.greaterThanOrEquals("framebufferXOffset",i,0),Check.typeOf.number.greaterThanOrEquals("framebufferYOffset",r,0),Check.typeOf.number.lessThanOrEquals("xOffset + width",e+o,this._width),Check.typeOf.number.lessThanOrEquals("yOffset + height",t+a,this._height);var n=this._context._gl,s=this._textureTarget;n.activeTexture(n.TEXTURE0),n.bindTexture(s,this._texture),n.copyTexSubImage2D(s,0,e,t,i,r,o,a),n.bindTexture(s,null),this._initialized=!0},p.prototype.generateMipmap=function(e){if(e=defaultValue(e,MipmapHint.DONT_CARE),PixelFormat.isDepthFormat(this._pixelFormat))throw new DeveloperError("Cannot call generateMipmap when the texture pixel format is DEPTH_COMPONENT or DEPTH_STENCIL.");if(PixelFormat.isCompressedFormat(this._pixelFormat))throw new DeveloperError("Cannot call generateMipmap with a compressed pixel format.");if(!this._context.webgl2){if(1<this._width&&!CesiumMath.isPowerOfTwo(this._width))throw new DeveloperError("width must be a power of two to call generateMipmap() in a WebGL1 context.");if(1<this._height&&!CesiumMath.isPowerOfTwo(this._height))throw new DeveloperError("height must be a power of two to call generateMipmap() in a WebGL1 context.")}if(!MipmapHint.validate(e))throw new DeveloperError("hint is invalid.");this._hasMipmap=!0;var t=this._context._gl,i=this._textureTarget;t.hint(t.GENERATE_MIPMAP_HINT,e),t.activeTexture(t.TEXTURE0),t.bindTexture(i,this._texture),t.generateMipmap(i),t.bindTexture(i,null)},p.prototype.isDestroyed=function(){return!1},p.prototype.destroy=function(){return this._context._gl.deleteTexture(this._texture),destroyObject(this)};function l(e,t,i,r,o,a,n){try{var s=e[a](n),l=s.value}catch(e){return void i(e)}s.done?t(l):Promise.resolve(l).then(r,o)}self.onmessage=function(){s=regeneratorRuntime.mark(function e(t){return regeneratorRuntime.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:try{self.postMessage({success:!0,data:2})}catch(e){self.postMessage({success:!1,error:e.message})}case 1:case"end":return e.stop()}},e)});var s,t=function(){var e=this,n=arguments;return new Promise(function(t,i){var r=s.apply(e,n);function o(e){l(r,t,i,o,a,"next",e)}function a(e){l(r,t,i,o,a,"throw",e)}o(void 0)})};return function(e){return t.apply(this,arguments)}}()}}]);
|
package/lib/647.index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports["cesium-expander"]=r():e["cesium-expander"]=r()}(self,()=>(()=>{"use strict";var u,i,p,e,t={},o={};function a(e){var r=o[e];if(void 0!==r)return r.exports;r=o[e]={exports:{}};return t[e](r,r.exports,a),r.exports}a.m=t,a.x=()=>{var e=a.O(void 0,[666,415],()=>a(2415));return a.O(e)},u=[],a.O=(e,r,t,o)=>{if(!r){for(var n=1/0,i=0;i<u.length;i++){for(var p,[r,t,o]=u[i],c=!0,s=0;s<r.length;s++)(!1&o||o<=n)&&Object.keys(a.O).every(e=>a.O[e](r[s]))?r.splice(s--,1):(c=!1,o<n&&(n=o));c&&(u.splice(i--,1),void 0!==(p=t())&&(e=p))}return e}o=o||0;for(var i=u.length;0<i&&u[i-1][2]>o;i--)u[i]=u[i-1];u[i]=[r,t,o]},a.f={},a.e=t=>Promise.all(Object.keys(a.f).reduce((e,r)=>(a.f[r](t,e),e),[])),a.u=e=>e+".index.js",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),a.g.importScripts&&(r=a.g.location+"");var r,n=a.g.document;if(r||!n||(r=n.currentScript?n.currentScript.src:r)||(n=n.getElementsByTagName("script")).length&&(r=n[n.length-1].src),r)return r=r.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=r,i={647:1},a.f.i=(e,r)=>{i[e]||importScripts(a.p+a.u(e))},n=self.webpackChunkcesium_expander=self.webpackChunkcesium_expander||[],p=n.push.bind(n),n.push=e=>{var r,[t,o,n]=e;for(r in o)a.o(o,r)&&(a.m[r]=o[r]);for(n&&n(a);t.length;)i[t.pop()]=1;p(e)},e=a.x,(a.x=()=>Promise.all([a.e(666),a.e(415)]).then(e))();throw new Error("Automatic publicPath is not supported in this browser")})());
|
package/lib/666.index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunkcesium_expander=self.webpackChunkcesium_expander||[]).push([[666],{5666:e=>{e=function(a){"use strict";var u,t=Object.prototype,h=t.hasOwnProperty,l=Object.defineProperty||function(t,e,r){t[e]=r.value},e="function"==typeof Symbol?Symbol:{},n=e.iterator||"@@iterator",r=e.asyncIterator||"@@asyncIterator",o=e.toStringTag||"@@toStringTag";function i(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{i({},"")}catch(t){i=function(t,e,r){return t[e]=r}}function c(t,e,r,n){var o,i,a,c,e=e&&e.prototype instanceof d?e:d,e=Object.create(e.prototype),n=new O(n||[]);return l(e,"_invoke",{value:(o=t,i=r,a=n,c=s,function(t,e){if(c===y)throw new Error("Generator is already running");if(c===g){if("throw"===t)throw e;return{value:u,done:!0}}for(a.method=t,a.arg=e;;){var r=a.delegate;if(r){r=function t(e,r){var n=r.method;var o=e.iterator[n];if(o===u)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=u,t(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;n=f(o,e.iterator,r.arg);if("throw"===n.type)return r.method="throw",r.arg=n.arg,r.delegate=null,v;o=n.arg;if(!o)return r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v;{if(!o.done)return o;r[e.resultName]=o.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=u)}r.delegate=null;return v}(r,a);if(r){if(r===v)continue;return r}}if("next"===a.method)a.sent=a._sent=a.arg;else if("throw"===a.method){if(c===s)throw c=g,a.arg;a.dispatchException(a.arg)}else"return"===a.method&&a.abrupt("return",a.arg);c=y;r=f(o,i,a);if("normal"===r.type){if(c=a.done?g:p,r.arg!==v)return{value:r.arg,done:a.done}}else"throw"===r.type&&(c=g,a.method="throw",a.arg=r.arg)}})}),e}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}a.wrap=c;var s="suspendedStart",p="suspendedYield",y="executing",g="completed",v={};function d(){}function m(){}function w(){}var e={},b=(i(e,n,function(){return this}),Object.getPrototypeOf),b=b&&b(b(k([]))),L=(b&&b!==t&&h.call(b,n)&&(e=b),w.prototype=d.prototype=Object.create(e));function x(t){["next","throw","return"].forEach(function(e){i(t,e,function(t){return this._invoke(e,t)})})}function E(a,c){var e;l(this,"_invoke",{value:function(r,n){function t(){return new c(function(t,e){!function e(t,r,n,o){var i,t=f(a[t],a,r);if("throw"!==t.type)return(r=(i=t.arg).value)&&"object"==typeof r&&h.call(r,"__await")?c.resolve(r.__await).then(function(t){e("next",t,n,o)},function(t){e("throw",t,n,o)}):c.resolve(r).then(function(t){i.value=t,n(i)},function(t){return e("throw",t,n,o)});o(t.arg)}(r,n,t,e)})}return e=e?e.then(t,t):t()}})}function _(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(_,this),this.reset(!0)}function k(e){if(null!=e){var r,t=e[n];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return r=-1,(t=function t(){for(;++r<e.length;)if(h.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=u,t.done=!0,t}).next=t}throw new TypeError(typeof e+" is not iterable")}return l(L,"constructor",{value:m.prototype=w,configurable:!0}),l(w,"constructor",{value:m,configurable:!0}),m.displayName=i(w,o,"GeneratorFunction"),a.isGeneratorFunction=function(t){t="function"==typeof t&&t.constructor;return!!t&&(t===m||"GeneratorFunction"===(t.displayName||t.name))},a.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,i(t,o,"GeneratorFunction")),t.prototype=Object.create(L),t},a.awrap=function(t){return{__await:t}},x(E.prototype),i(E.prototype,r,function(){return this}),a.AsyncIterator=E,a.async=function(t,e,r,n,o){void 0===o&&(o=Promise);var i=new E(c(t,e,r,n),o);return a.isGeneratorFunction(e)?i:i.next().then(function(t){return t.done?t.value:i.next()})},x(L),i(L,o,"Generator"),i(L,n,function(){return this}),i(L,"toString",function(){return"[object Generator]"}),a.keys=function(t){var e,r=Object(t),n=[];for(e in r)n.push(e);return n.reverse(),function t(){for(;n.length;){var e=n.pop();if(e in r)return t.value=e,t.done=!1,t}return t.done=!0,t}},a.values=k,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=u,this.done=!1,this.delegate=null,this.method="next",this.arg=u,this.tryEntries.forEach(j),!t)for(var e in this)"t"===e.charAt(0)&&h.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=u)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(r){if(this.done)throw r;var n=this;function t(t,e){return i.type="throw",i.arg=r,n.next=t,e&&(n.method="next",n.arg=u),!!e}for(var e=this.tryEntries.length-1;0<=e;--e){var o=this.tryEntries[e],i=o.completion;if("root"===o.tryLoc)return t("end");if(o.tryLoc<=this.prev){var a=h.call(o,"catchLoc"),c=h.call(o,"finallyLoc");if(a&&c){if(this.prev<o.catchLoc)return t(o.catchLoc,!0);if(this.prev<o.finallyLoc)return t(o.finallyLoc)}else if(a){if(this.prev<o.catchLoc)return t(o.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return t(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;0<=r;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&h.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}var i=(o=o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc?null:o)?o.completion:{};return i.type=t,i.arg=e,o?(this.method="next",this.next=o.finallyLoc,v):this.complete(i)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;0<=e;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;0<=e;--e){var r,n,o=this.tryEntries[e];if(o.tryLoc===t)return"throw"===(r=o.completion).type&&(n=r.arg,j(o)),n}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:k(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=u),v}},a}(e.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}}]);
|