@teeechina/teee-map 0.0.9 → 0.0.10

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.
@@ -753,7 +753,7 @@ precision highp float;
753
753
  in vec3 view_direction;uniform vec3 u_sun_pos;uniform vec3 u_globe_position;uniform float u_globe_radius;uniform float u_atmosphere_blend;/**Shader use from https:*Made some change to adapt to MapLibre Globe geometry*/const float PI=3.141592653589793;const int iSteps=5;const int jSteps=3;/*radius of the planet*/const float EARTH_RADIUS=6371e3;/*radius of the atmosphere*/const float ATMOS_RADIUS=6471e3;vec2 rsi(vec3 r0,vec3 rd,float sr) {float a=dot(rd,rd);float b=2.0*dot(rd,r0);float c=dot(r0,r0)-(sr*sr);float d=(b*b)-4.0*a*c;if (d < 0.0) return vec2(1e5,-1e5);return vec2((-b-sqrt(d))/(2.0*a),(-b+sqrt(d))/(2.0*a));}vec4 atmosphere(vec3 r,vec3 r0,vec3 pSun,float iSun,float rPlanet,float rAtmos,vec3 kRlh,float kMie,float shRlh,float shMie,float g) {pSun=normalize(pSun);r=normalize(r);vec2 p=rsi(r0,r,rAtmos);if (p.x > p.y) {return vec4(0.0,0.0,0.0,1.0);}if (p.x < 0.0) {p.x=0.0;}vec3 pos=r0+r*p.x;vec2 p2=rsi(r0,r,rPlanet);if (p2.x <=p2.y && p2.x > 0.0) {p.y=min(p.y,p2.x);}float iStepSize=(p.y-p.x)/float(iSteps);float iTime=p.x+iStepSize*0.5;vec3 totalRlh=vec3(0,0,0);vec3 totalMie=vec3(0,0,0);float iOdRlh=0.0;float iOdMie=0.0;float mu=dot(r,pSun);float mumu=mu*mu;float gg=g*g;float pRlh=3.0/(16.0*PI)*(1.0+mumu);float pMie=3.0/(8.0*PI)*((1.0-gg)*(mumu+1.0))/(pow(1.0+gg-2.0*mu*g,1.5)*(2.0+gg));for (int i=0; i < iSteps; i++) {vec3 iPos=r0+r*iTime;float iHeight=length(iPos)-rPlanet;float odStepRlh=exp(-iHeight/shRlh)*iStepSize;float odStepMie=exp(-iHeight/shMie)*iStepSize;iOdRlh+=odStepRlh;iOdMie+=odStepMie;float jStepSize=rsi(iPos,pSun,rAtmos).y/float(jSteps);float jTime=jStepSize*0.5;float jOdRlh=0.0;float jOdMie=0.0;for (int j=0; j < jSteps; j++) {vec3 jPos=iPos+pSun*jTime;float jHeight=length(jPos)-rPlanet;jOdRlh+=exp(-jHeight/shRlh)*jStepSize;jOdMie+=exp(-jHeight/shMie)*jStepSize;jTime+=jStepSize;}vec3 attn=exp(-(kMie*(iOdMie+jOdMie)+kRlh*(iOdRlh+jOdRlh)));totalRlh+=odStepRlh*attn;totalMie+=odStepMie*attn;iTime+=iStepSize;}float opacity=exp(-(length(kRlh)*length(totalRlh)+kMie*length(totalMie)));vec3 color=iSun*(pRlh*kRlh*totalRlh+pMie*kMie*totalMie);return vec4(color,opacity);}void main() {vec3 scale_camera_pos=-u_globe_position*EARTH_RADIUS/u_globe_radius;vec4 color=atmosphere(normalize(view_direction),scale_camera_pos,u_sun_pos,22.0,EARTH_RADIUS,ATMOS_RADIUS,vec3(5.5e-6,13.0e-6,22.4e-6),21e-6,8e3,1.2e3,0.758
754
754
  );color.rgb=1.0-exp(-1.0*color.rgb);color=pow(color,vec4(1.0/2.2));fragColor=vec4(color.rgb,1.0-color.a)*u_atmosphere_blend;}`,`in vec2 a_pos;uniform mat4 u_inv_proj_matrix;out vec3 view_direction;void main() {view_direction=(u_inv_proj_matrix*vec4(a_pos,0.0,1.0)).xyz;gl_Position=vec4(a_pos,0.0,1.0);}`),sky:G(`uniform vec4 u_sky_color;uniform vec4 u_horizon_color;uniform vec2 u_horizon;uniform vec2 u_horizon_normal;uniform float u_sky_horizon_blend;uniform float u_sky_blend;void main() {float x=gl_FragCoord.x;float y=gl_FragCoord.y;float blend=(y-u_horizon.y)*u_horizon_normal.y+(x-u_horizon.x)*u_horizon_normal.x;if (blend > 0.0) {if (blend < u_sky_horizon_blend) {fragColor=mix(u_sky_color,u_horizon_color,pow(1.0-blend/u_sky_horizon_blend,2.0));} else {fragColor=u_sky_color;}}fragColor=mix(fragColor,vec4(vec3(0.0),0.0),u_sky_blend);}`,`in vec2 a_pos;void main() {gl_Position=vec4(a_pos,1.0,1.0);}`)};function G(e,t){let n=/#pragma mapbox: ([\w]+) ([\w]+) ([\w]+) ([\w]+)/g,r=t.match(/in ([\w]+) ([\w]+)/g),i=e.match(/uniform ([\w]+) ([\w]+)([\s]*)([\w]*)/g),a=t.match(/uniform ([\w]+) ([\w]+)([\s]*)([\w]*)/g),o=a?a.concat(i):i,s={};return{fragmentSource:e=e.replace(n,((e,t,n,r,i)=>(s[i]=!0,t===`define`?`\n#ifndef HAS_UNIFORM_u_${i}\nin ${n} ${r} ${i};\n#else\nuniform ${n} ${r} u_${i};\n#endif\n`:`\n#ifdef HAS_UNIFORM_u_${i}\n ${n} ${r} ${i} = u_${i};\n#endif\n`))),vertexSource:t=t.replace(n,((e,t,n,r,i)=>{let a=r===`float`?`vec2`:`vec4`,o=i.match(/color/)?`color`:a;return s[i]?t===`define`?`\n#ifndef HAS_UNIFORM_u_${i}\nuniform lowp float u_${i}_t;\nin ${n} ${a} a_${i};\nout ${n} ${r} ${i};\n#else\nuniform ${n} ${r} u_${i};\n#endif\n`:o===`vec4`?`\n#ifndef HAS_UNIFORM_u_${i}\n ${i} = a_${i};\n#else\n ${n} ${r} ${i} = u_${i};\n#endif\n`:`\n#ifndef HAS_UNIFORM_u_${i}\n ${i} = unpack_mix_${o}(a_${i}, u_${i}_t);\n#else\n ${n} ${r} ${i} = u_${i};\n#endif\n`:t===`define`?`\n#ifndef HAS_UNIFORM_u_${i}\nuniform lowp float u_${i}_t;\nin ${n} ${a} a_${i};\n#else\nuniform ${n} ${r} u_${i};\n#endif\n`:o===`vec4`?`\n#ifndef HAS_UNIFORM_u_${i}\n ${n} ${r} ${i} = a_${i};\n#else\n ${n} ${r} ${i} = u_${i};\n#endif\n`:`\n#ifndef HAS_UNIFORM_u_${i}\n ${n} ${r} ${i} = unpack_mix_${o}(a_${i}, u_${i}_t);\n#else\n ${n} ${r} ${i} = u_${i};\n#endif\n`})),staticAttributes:r,staticUniforms:o}}class Lt{constructor(e,t,n){this.vertexBuffer=e,this.indexBuffer=t,this.segments=n}destroy(){this.vertexBuffer.destroy(),this.indexBuffer.destroy(),this.segments.destroy(),this.vertexBuffer=null,this.indexBuffer=null,this.segments=null}}var Rt=t.aS([{name:`a_pos`,type:`Int16`,components:2}]);let zt=`#define PROJECTION_MERCATOR`,Bt=`mercator`;class Vt{constructor(){this._cachedMesh=null}get name(){return`mercator`}get useSubdivision(){return!1}get shaderVariantName(){return Bt}get shaderDefine(){return zt}get shaderPreludeCode(){return It.projectionMercator}get vertexShaderPreludeCode(){return It.projectionMercator.vertexSource}get subdivisionGranularity(){return t.aT.noSubdivision}get useGlobeControls(){return!1}get transitionState(){return 0}get latitudeErrorCorrectionRadians(){return 0}destroy(){}updateGPUdependent(e){}getMeshFromTileID(e,n,r,i,a){if(this._cachedMesh)return this._cachedMesh;let o=new t.aU;o.emplaceBack(0,0),o.emplaceBack(t.a5,0),o.emplaceBack(0,t.a5),o.emplaceBack(t.a5,t.a5);let s=e.createVertexBuffer(o,Rt.members),c=t.aV.simpleSegment(0,0,4,2),l=new t.aW;l.emplaceBack(1,0,2),l.emplaceBack(1,2,3);let u=e.createIndexBuffer(l);return this._cachedMesh=new Lt(s,u,c),this._cachedMesh}recalculate(){}hasTransition(){return!1}setErrorQueryLatitudeDegrees(e){}}class Ht{constructor(e=0,t=0,n=0,r=0){if(isNaN(e)||e<0||isNaN(t)||t<0||isNaN(n)||n<0||isNaN(r)||r<0)throw Error(`Invalid value for edge-insets, top, bottom, left and right must all be numbers`);this.top=e,this.bottom=t,this.left=n,this.right=r}interpolate(e,n,r){return n.top!=null&&e.top!=null&&(this.top=t.G.number(e.top,n.top,r)),n.bottom!=null&&e.bottom!=null&&(this.bottom=t.G.number(e.bottom,n.bottom,r)),n.left!=null&&e.left!=null&&(this.left=t.G.number(e.left,n.left,r)),n.right!=null&&e.right!=null&&(this.right=t.G.number(e.right,n.right,r)),this}getCenter(e,n){let r=t.ak((this.left+e-this.right)/2,0,e),i=t.ak((this.top+n-this.bottom)/2,0,n);return new t.P(r,i)}equals(e){return this.top===e.top&&this.bottom===e.bottom&&this.left===e.left&&this.right===e.right}clone(){return new Ht(this.top,this.bottom,this.left,this.right)}toJSON(){return{top:this.top,bottom:this.bottom,left:this.left,right:this.right}}}function Ut(e,t){if(!e.renderWorldCopies||e.lngRange)return;let n=t.lng-e.center.lng;t.lng+=n>180?-360:n<-180?360:0}function Wt(e){return Math.max(0,Math.floor(e))}class Gt{constructor(e,n){this.applyConstrain=(e,t)=>this._constrainOverride===null?this._callbacks.defaultConstrain(e,t):this._constrainOverride(e,t),this._callbacks=e,this._tileSize=512,this._renderWorldCopies=n?.renderWorldCopies===void 0||!!n?.renderWorldCopies,this._minZoom=n?.minZoom||0,this._maxZoom=n?.maxZoom||22,this._minPitch=n?.minPitch==null?0:n?.minPitch,this._maxPitch=n?.maxPitch==null?60:n?.maxPitch,this._constrainOverride=n?.constrainOverride??null,this.setMaxBounds(),this._width=0,this._height=0,this._center=new t.V(0,0),this._elevation=0,this._zoom=0,this._tileZoom=Wt(this._zoom),this._scale=t.an(this._zoom),this._bearingInRadians=0,this._fovInRadians=.6435011087932844,this._pitchInRadians=0,this._rollInRadians=0,this._unmodified=!0,this._edgeInsets=new Ht,this._minElevationForCurrentTile=0,this._autoCalculateNearFarZ=!0}apply(e,n,r){this._constrainOverride=e.constrainOverride,this._latRange=e.latRange,this._lngRange=e.lngRange,this._width=e.width,this._height=e.height,this._center=e.center,this._elevation=e.elevation,this._minElevationForCurrentTile=e.minElevationForCurrentTile,this._zoom=e.zoom,this._tileZoom=Wt(this._zoom),this._scale=t.an(this._zoom),this._bearingInRadians=e.bearingInRadians,this._fovInRadians=e.fovInRadians,this._pitchInRadians=e.pitchInRadians,this._rollInRadians=e.rollInRadians,this._unmodified=e.unmodified,this._edgeInsets=new Ht(e.padding.top,e.padding.bottom,e.padding.left,e.padding.right),this._minZoom=e.minZoom,this._maxZoom=e.maxZoom,this._minPitch=e.minPitch,this._maxPitch=e.maxPitch,this._renderWorldCopies=e.renderWorldCopies,this._cameraToCenterDistance=e.cameraToCenterDistance,this._nearZ=e.nearZ,this._farZ=e.farZ,this._autoCalculateNearFarZ=!r&&e.autoCalculateNearFarZ,n&&this.constrainInternal(),this._calcMatrices()}get pixelsToClipSpaceMatrix(){return this._pixelsToClipSpaceMatrix}get clipSpaceToPixelsMatrix(){return this._clipSpaceToPixelsMatrix}get minElevationForCurrentTile(){return this._minElevationForCurrentTile}setMinElevationForCurrentTile(e){this._minElevationForCurrentTile=e}get tileSize(){return this._tileSize}get tileZoom(){return this._tileZoom}get scale(){return this._scale}get width(){return this._width}get height(){return this._height}get bearingInRadians(){return this._bearingInRadians}get lngRange(){return this._lngRange}get latRange(){return this._latRange}get pixelsToGLUnits(){return this._pixelsToGLUnits}get minZoom(){return this._minZoom}setMinZoom(e){this._minZoom!==e&&(this._minZoom=e,this.setZoom(this.applyConstrain(this._center,this.zoom).zoom))}get maxZoom(){return this._maxZoom}setMaxZoom(e){this._maxZoom!==e&&(this._maxZoom=e,this.setZoom(this.applyConstrain(this._center,this.zoom).zoom))}get minPitch(){return this._minPitch}setMinPitch(e){this._minPitch!==e&&(this._minPitch=e,this.setPitch(Math.max(this.pitch,e)))}get maxPitch(){return this._maxPitch}setMaxPitch(e){this._maxPitch!==e&&(this._maxPitch=e,this.setPitch(Math.min(this.pitch,e)))}get renderWorldCopies(){return this._renderWorldCopies}setRenderWorldCopies(e){e===void 0?e=!0:e===null&&(e=!1),this._renderWorldCopies=e}get constrainOverride(){return this._constrainOverride}setConstrainOverride(e){e===void 0&&(e=null),this._constrainOverride!==e&&(this._constrainOverride=e,this.constrainInternal(),this._calcMatrices())}get worldSize(){return this._tileSize*this._scale}get centerOffset(){return this.centerPoint._sub(this.size._div(2))}get size(){return new t.P(this._width,this._height)}get bearing(){return this._bearingInRadians/Math.PI*180}setBearing(e){let n=t.W(e,-180,180)*Math.PI/180;var i,a,o,s,c,l,u,d,f;this._bearingInRadians!==n&&(this._unmodified=!1,this._bearingInRadians=n,this._calcMatrices(),this._rotationMatrix=r(),i=this._rotationMatrix,o=-this._bearingInRadians,s=(a=this._rotationMatrix)[0],c=a[1],l=a[2],u=a[3],d=Math.sin(o),f=Math.cos(o),i[0]=s*f+l*d,i[1]=c*f+u*d,i[2]=s*-d+l*f,i[3]=c*-d+u*f)}get rotationMatrix(){return this._rotationMatrix}get pitchInRadians(){return this._pitchInRadians}get pitch(){return this._pitchInRadians/Math.PI*180}setPitch(e){let n=t.ak(e,this.minPitch,this.maxPitch)/180*Math.PI;this._pitchInRadians!==n&&(this._unmodified=!1,this._pitchInRadians=n,this._calcMatrices())}get rollInRadians(){return this._rollInRadians}get roll(){return this._rollInRadians/Math.PI*180}setRoll(e){let t=e/180*Math.PI;this._rollInRadians!==t&&(this._unmodified=!1,this._rollInRadians=t,this._calcMatrices())}get fovInRadians(){return this._fovInRadians}get fov(){return t.aX(this._fovInRadians)}setFov(e){e=t.ak(e,.1,150),this.fov!==e&&(this._unmodified=!1,this._fovInRadians=t.am(e),this._calcMatrices())}get zoom(){return this._zoom}setZoom(e){let n=this.applyConstrain(this._center,e).zoom;this._zoom!==n&&(this._unmodified=!1,this._zoom=n,this._tileZoom=Math.max(0,Math.floor(n)),this._scale=t.an(n),this.constrainInternal(),this._calcMatrices())}get center(){return this._center}setCenter(e){e.lat===this._center.lat&&e.lng===this._center.lng||(this._unmodified=!1,this._center=e,this.constrainInternal(),this._calcMatrices())}get elevation(){return this._elevation}setElevation(e){e!==this._elevation&&(this._elevation=e,this.constrainInternal(),this._calcMatrices())}get padding(){return this._edgeInsets.toJSON()}setPadding(e){this._edgeInsets.equals(e)||(this._unmodified=!1,this._edgeInsets.interpolate(this._edgeInsets,e,1),this._calcMatrices())}get centerPoint(){return this._edgeInsets.getCenter(this._width,this._height)}get pixelsPerMeter(){return this._pixelPerMeter}get unmodified(){return this._unmodified}get cameraToCenterDistance(){return this._cameraToCenterDistance}get nearZ(){return this._nearZ}get farZ(){return this._farZ}get autoCalculateNearFarZ(){return this._autoCalculateNearFarZ}overrideNearFarZ(e,t){this._autoCalculateNearFarZ=!1,this._nearZ=e,this._farZ=t,this._calcMatrices()}clearNearFarZOverride(){this._autoCalculateNearFarZ=!0,this._calcMatrices()}isPaddingEqual(e){return this._edgeInsets.equals(e)}interpolatePadding(e,t,n){this._unmodified=!1,this._edgeInsets.interpolate(e,t,n),this.constrainInternal(),this._calcMatrices()}resize(e,t,n=!0){this._width=e,this._height=t,n&&this.constrainInternal(),this._calcMatrices()}getMaxBounds(){return this._latRange&&this._latRange.length===2&&this._lngRange&&this._lngRange.length===2?new N([this._lngRange[0],this._latRange[0]],[this._lngRange[1],this._latRange[1]]):null}setMaxBounds(e){e?(this._lngRange=[e.getWest(),e.getEast()],this._latRange=[e.getSouth(),e.getNorth()],this.constrainInternal()):(this._lngRange=null,this._latRange=[-t.al,t.al])}getCameraQueryGeometry(e,n){if(n.length===1)return[n[0],e];{let{minX:r,minY:i,maxX:a,maxY:o}=t.a7.fromPoints(n).extend(e);return[new t.P(r,i),new t.P(a,i),new t.P(a,o),new t.P(r,o),new t.P(r,i)]}}constrainInternal(){if(!this.center||!this._width||!this._height||this._constraining)return;this._constraining=!0;let e=this._unmodified,{center:t,zoom:n}=this.applyConstrain(this.center,this.zoom);this.setCenter(t),this.setZoom(n),this._unmodified=e,this._constraining=!1}_calcMatrices(){if(this._width&&this._height){this._pixelsToGLUnits=[2/this._width,-2/this._height];let e=t.ao(new Float64Array(16));t.Q(e,e,[this._width/2,-this._height/2,1]),t.O(e,e,[1,-1,0]),this._clipSpaceToPixelsMatrix=e,e=t.ao(new Float64Array(16)),t.Q(e,e,[1,-1,1]),t.O(e,e,[-1,-1,0]),t.Q(e,e,[2/this._width,2/this._height,1]),this._pixelsToClipSpaceMatrix=e,this._cameraToCenterDistance=.5/Math.tan(this.fovInRadians/2)*this._height}this._callbacks.calcMatrices()}calculateCenterFromCameraLngLatAlt(e,n,r,i){let a=r===void 0?this.bearing:r,o=i=i===void 0?this.pitch:i,{distanceToCenter:s,clampedElevation:c}=this._distanceToCenterFromAltElevationPitch(n,this.elevation,o),{x:l,y:u}=P(o,a),d=t.a6.fromLngLat(e,n),f,p,m=t.aY(1,d.y),h=0;do{if(h+=1,h>10)break;p=s/m,f=new t.a6(d.x+l*p,d.y+u*p),m=1/f.meterInMercatorCoordinateUnits()}while(Math.abs(s-p*m)>1e-12);return{center:f.toLngLat(),elevation:c,zoom:t.aq(this.height/2/Math.tan(this.fovInRadians/2)/p/this.tileSize)}}recalculateZoomAndCenter(e){if(this.elevation-e==0)return;let n=1/this.worldSize,r=t.ap(1,this.center.lat)*this.worldSize,i=t.a6.fromLngLat(this.center,this.elevation),a=i.x/n,o=i.y/n,s=i.z/n,c=this.pitch,l=this.bearing,{x:u,y:d,z:f}=P(c,l),p=this.cameraToCenterDistance,m=a+p*-u,h=o+p*-d,g=s+p*f,{distanceToCenter:_,clampedElevation:v}=this._distanceToCenterFromAltElevationPitch(g/r,e,c),y=_*r,b=new t.a6((m+u*y)*n,(h+d*y)*n,0).toLngLat(),x=t.ap(1,b.lat),S=t.aq(this.height/2/Math.tan(this.fovInRadians/2)/_/x/this.tileSize);this._elevation=v,this._center=b,this.setZoom(S)}_distanceToCenterFromAltElevationPitch(e,n,r){let i=-Math.cos(t.am(r)),a=e-n,o,s=n;return i*a>=0||Math.abs(i)<.1?(o=1e4,s=e+o*i):o=-a/i,{distanceToCenter:o,clampedElevation:s}}getCameraPoint(){let e=Math.tan(this.pitchInRadians)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new t.P(e*Math.sin(this.rollInRadians),e*Math.cos(this.rollInRadians)))}getCameraAltitude(){return Math.cos(this.pitchInRadians)*this._cameraToCenterDistance/this._pixelPerMeter+this.elevation}getCameraLngLat(){let e=t.ap(1,this.center.lat)*this.worldSize;return Le(this.center,this.elevation,this.pitch,this.bearing,this.cameraToCenterDistance/e).toLngLat()}getMercatorTileCoordinates(e){if(!e)return[0,0,1,1];let n=e.canonical.z>=0?1<<e.canonical.z:2**e.canonical.z;return[e.canonical.x/n,e.canonical.y/n,1/n/t.a5,1/n/t.a5]}}class Kt{constructor(e,n){this.min=e,this.max=n,this.center=t.aZ([],t.a_([],this.min,this.max),.5)}quadrant(e){let n=[e%2==0,e<2],r=t.a$(this.min),i=t.a$(this.max);for(let e=0;e<n.length;e++)r[e]=n[e]?this.min[e]:this.center[e],i[e]=n[e]?this.center[e]:this.max[e];return i[2]=this.max[2],new Kt(r,i)}distanceX(e){return Math.max(Math.min(this.max[0],e[0]),this.min[0])-e[0]}distanceY(e){return Math.max(Math.min(this.max[1],e[1]),this.min[1])-e[1]}intersectsFrustum(e){let t=!0;for(let n=0;n<e.planes.length;n++){let r=this.intersectsPlane(e.planes[n]);if(r===0)return 0;r===1&&(t=!1)}return t?2:e.aabb.min[0]>this.max[0]||e.aabb.min[1]>this.max[1]||e.aabb.min[2]>this.max[2]||e.aabb.max[0]<this.min[0]||e.aabb.max[1]<this.min[1]||e.aabb.max[2]<this.min[2]?0:1}intersectsPlane(e){let t=e[3],n=e[3];for(let r=0;r<3;r++)e[r]>0?(t+=e[r]*this.min[r],n+=e[r]*this.max[r]):(n+=e[r]*this.min[r],t+=e[r]*this.max[r]);return t>=0?2:n<0?0:1}}class qt{distanceToTile2d(e,t,n,r){let i=r.distanceX([e,t]),a=r.distanceY([e,t]);return Math.hypot(i,a)}getWrap(e,t,n){return n}getTileBoundingVolume(e,n,r,i){let a=0,o=0;if(i?.terrain){let s=new t.a2(e.z,n,e.z,e.x,e.y),c=i.terrain.getMinMaxElevation(s);a=c.minElevation??Math.min(0,r),o=c.maxElevation??Math.max(0,r)}let s=1<<e.z;return new Kt([n+e.x/s,e.y/s,a],[n+(e.x+1)/s,(e.y+1)/s,o])}allowVariableZoom(e,n){let r=e.fov*(Math.abs(Math.cos(e.rollInRadians))*e.height+Math.abs(Math.sin(e.rollInRadians))*e.width)/e.height,i=t.ak(78.5-r/2,0,60);return!!n.terrain||e.pitch>i}allowWorldCopies(){return!0}prepareNextFrame(){}}class Jt{constructor(e,t,n){this.points=e,this.planes=t,this.aabb=n}static fromInvProjectionMatrix(e,n=1,r=0,i,a){let o=a?[[6,5,4],[0,1,2],[0,3,7],[2,1,5],[3,2,6],[0,4,5]]:[[0,1,2],[6,5,4],[0,3,7],[2,1,5],[3,2,6],[0,4,5]],s=2**r,c=[[-1,1,-1,1],[1,1,-1,1],[1,-1,-1,1],[-1,-1,-1,1],[-1,1,1,1],[1,1,1,1],[1,-1,1,1],[-1,-1,1,1]].map((r=>function(e,n,r,i){let a=t.aE([],e,n),o=1/a[3]/r*i;return t.b4(a,a,[o,o,1/a[3],o])}(r,e,n,s)));i&&function(e,n,r,i){let a=i?4:0,o=i?0:4,s=0,c=[],l=[];for(let n=0;n<4;n++){let r=t.b0([],e[n+o],e[n+a]),i=t.b5(r);t.aZ(r,r,1/i),c.push(i),l.push(r)}for(let n=0;n<4;n++){let i=t.b6(e[n+a],l[n],r);s=i!==null&&i>=0?Math.max(s,i):Math.max(s,c[n])}let u=function(e,n){let r=t.b0([],e[n[0]],e[n[1]]),i=t.b0([],e[n[2]],e[n[1]]),a=[0,0,0,0];return t.b1(a,t.b2([],r,i)),a[3]=-t.b3(a,e[n[0]]),a}(e,n),d=function(e,n){let r=t.b7(e),i=t.b8([],e,1/r),a=t.b0([],n,t.aZ([],i,t.b3(n,i))),o=t.b7(a);if(o>0){let e=Math.sqrt(1-i[3]*i[3]),r=t.aZ([],i,-i[3]),s=t.a_([],r,t.aZ([],a,e/o));return t.b9(n,s)}return null}(r,u);if(d!==null){let e=d/t.b3(l[0],u);s=Math.min(s,e)}for(let t=0;t<4;t++){let n=Math.min(s,c[t]);e[t+o]=[e[t+a][0]+l[t][0]*n,e[t+a][1]+l[t][1]*n,e[t+a][2]+l[t][2]*n,1]}}(c,o[0],i,a);let l=o.map((e=>{let n=t.b0([],c[e[0]],c[e[1]]),r=t.b0([],c[e[2]],c[e[1]]),i=t.b1([],t.b2([],n,r)),a=-t.b3(i,c[e[1]]);return i.concat(a)})),u=[1/0,1/0,1/0],d=[-1/0,-1/0,-1/0];for(let e of c)for(let t=0;t<3;t++)u[t]=Math.min(u[t],e[t]),d[t]=Math.max(d[t],e[t]);return new Jt(c,l,new Kt(u,d))}}class Yt{get pixelsToClipSpaceMatrix(){return this._helper.pixelsToClipSpaceMatrix}get clipSpaceToPixelsMatrix(){return this._helper.clipSpaceToPixelsMatrix}get pixelsToGLUnits(){return this._helper.pixelsToGLUnits}get centerOffset(){return this._helper.centerOffset}get size(){return this._helper.size}get rotationMatrix(){return this._helper.rotationMatrix}get centerPoint(){return this._helper.centerPoint}get pixelsPerMeter(){return this._helper.pixelsPerMeter}setMinZoom(e){this._helper.setMinZoom(e)}setMaxZoom(e){this._helper.setMaxZoom(e)}setMinPitch(e){this._helper.setMinPitch(e)}setMaxPitch(e){this._helper.setMaxPitch(e)}setRenderWorldCopies(e){this._helper.setRenderWorldCopies(e)}setBearing(e){this._helper.setBearing(e)}setPitch(e){this._helper.setPitch(e)}setRoll(e){this._helper.setRoll(e)}setFov(e){this._helper.setFov(e)}setZoom(e){this._helper.setZoom(e)}setCenter(e){this._helper.setCenter(e)}setElevation(e){this._helper.setElevation(e)}setMinElevationForCurrentTile(e){this._helper.setMinElevationForCurrentTile(e)}setPadding(e){this._helper.setPadding(e)}interpolatePadding(e,t,n){return this._helper.interpolatePadding(e,t,n)}isPaddingEqual(e){return this._helper.isPaddingEqual(e)}resize(e,t,n=!0){this._helper.resize(e,t,n)}getMaxBounds(){return this._helper.getMaxBounds()}setMaxBounds(e){this._helper.setMaxBounds(e)}setConstrainOverride(e){this._helper.setConstrainOverride(e)}overrideNearFarZ(e,t){this._helper.overrideNearFarZ(e,t)}clearNearFarZOverride(){this._helper.clearNearFarZOverride()}getCameraQueryGeometry(e){return this._helper.getCameraQueryGeometry(this.getCameraPoint(),e)}get tileSize(){return this._helper.tileSize}get tileZoom(){return this._helper.tileZoom}get scale(){return this._helper.scale}get worldSize(){return this._helper.worldSize}get width(){return this._helper.width}get height(){return this._helper.height}get lngRange(){return this._helper.lngRange}get latRange(){return this._helper.latRange}get minZoom(){return this._helper.minZoom}get maxZoom(){return this._helper.maxZoom}get zoom(){return this._helper.zoom}get center(){return this._helper.center}get minPitch(){return this._helper.minPitch}get maxPitch(){return this._helper.maxPitch}get pitch(){return this._helper.pitch}get pitchInRadians(){return this._helper.pitchInRadians}get roll(){return this._helper.roll}get rollInRadians(){return this._helper.rollInRadians}get bearing(){return this._helper.bearing}get bearingInRadians(){return this._helper.bearingInRadians}get fov(){return this._helper.fov}get fovInRadians(){return this._helper.fovInRadians}get elevation(){return this._helper.elevation}get minElevationForCurrentTile(){return this._helper.minElevationForCurrentTile}get padding(){return this._helper.padding}get unmodified(){return this._helper.unmodified}get renderWorldCopies(){return this._helper.renderWorldCopies}get cameraToCenterDistance(){return this._helper.cameraToCenterDistance}get constrainOverride(){return this._helper.constrainOverride}get nearZ(){return this._helper.nearZ}get farZ(){return this._helper.farZ}get autoCalculateNearFarZ(){return this._helper.autoCalculateNearFarZ}setTransitionState(e,t){}constructor(e){this._posMatrixCache=new Map,this._alignedPosMatrixCache=new Map,this._fogMatrixCacheF32=new Map,this.defaultConstrain=(e,n)=>{n=t.ak(+n,this.minZoom,this.maxZoom);let r={center:new t.V(e.lng,e.lat),zoom:n},i=this._helper._lngRange;if(!this._helper._renderWorldCopies&&i===null){let e=179.9999999999;i=[-e,e]}let a=this.tileSize*t.an(r.zoom),o=0,s=a,c=0,l=a,u=0,d=0,{x:f,y:p}=this.size;if(this._helper._latRange){let e=this._helper._latRange;o=t.X(e[1])*a,s=t.X(e[0])*a,s-o<p&&(u=p/(s-o))}i&&(c=t.W(t.Y(i[0])*a,0,a),l=t.W(t.Y(i[1])*a,0,a),l<c&&(l+=a),l-c<f&&(d=f/(l-c)));let{x:m,y:h}=Ne(a,e),g,_,v=Math.max(d||0,u||0);if(v)return r.center=Pe(a,new t.P(d?(l+c)/2:m,u?(s+o)/2:h)).wrap(),r.zoom+=t.aq(v),r;if(this._helper._latRange){let e=p/2;h-e<o&&(_=o+e),h+e>s&&(_=s-e)}if(i){let e=(c+l)/2,n=m;this._helper._renderWorldCopies&&(n=t.W(m,e-a/2,e+a/2));let r=f/2;n-r<c&&(g=c+r),n+r>l&&(g=l-r)}return(g!==void 0||_!==void 0)&&(r.center=Pe(a,new t.P(g??m,_??h)).wrap()),r},this.applyConstrain=(e,t)=>this._helper.applyConstrain(e,t),this._helper=new Gt({calcMatrices:()=>{this._calcMatrices()},defaultConstrain:(e,t)=>this.defaultConstrain(e,t)},e),this._coveringTilesDetailsProvider=new qt}clone(){let e=new Yt;return e.apply(this,!1),e}apply(e,t,n){this._helper.apply(e,t,n)}get cameraPosition(){return this._cameraPosition}get projectionMatrix(){return this._projectionMatrix}get modelViewProjectionMatrix(){return this._viewProjMatrix}get inverseProjectionMatrix(){return this._invProjMatrix}get mercatorMatrix(){return this._mercatorMatrix}getVisibleUnwrappedCoordinates(e){let n=[new t.ba(0,e)];if(this._helper._renderWorldCopies){let r=this.screenPointToMercatorCoordinate(new t.P(0,0)),i=this.screenPointToMercatorCoordinate(new t.P(this._helper._width,0)),a=this.screenPointToMercatorCoordinate(new t.P(this._helper._width,this._helper._height)),o=this.screenPointToMercatorCoordinate(new t.P(0,this._helper._height)),s=Math.floor(Math.min(r.x,i.x,a.x,o.x)),c=Math.floor(Math.max(r.x,i.x,a.x,o.x));for(let r=s-1;r<=c+1;r++)r!==0&&n.push(new t.ba(r,e))}return n}getCameraFrustum(){return Jt.fromInvProjectionMatrix(this._invViewProjMatrix,this.worldSize)}getClippingPlane(){return null}getCoveringTilesDetailsProvider(){return this._coveringTilesDetailsProvider}recalculateZoomAndCenter(e){let t=this.screenPointToLocation(this.centerPoint,e),n=e?e.getElevationForLngLatZoom(t,this._helper._tileZoom):0;this._helper.recalculateZoomAndCenter(n)}setLocationAtPoint(e,n){let r=t.ap(this.elevation,this.center.lat),i=this.screenPointToMercatorCoordinateAtZ(n,r),a=this.screenPointToMercatorCoordinateAtZ(this.centerPoint,r),o=t.a6.fromLngLat(e),s=new t.a6(o.x-(i.x-a.x),o.y-(i.y-a.y));this.setCenter(s?.toLngLat()),this._helper._renderWorldCopies&&this.setCenter(this.center.wrap())}locationToScreenPoint(e,n){return n?this.coordinatePoint(t.a6.fromLngLat(e),n.getElevationForLngLat(e,this),this._pixelMatrix3D):this.coordinatePoint(t.a6.fromLngLat(e))}screenPointToLocation(e,t){return this.screenPointToMercatorCoordinate(e,t)?.toLngLat()}screenPointToMercatorCoordinate(e,t){if(t){let n=t.pointCoordinate(e);if(n!=null)return n}return this.screenPointToMercatorCoordinateAtZ(e)}screenPointToMercatorCoordinateAtZ(e,n){let r=n||0,i=[e.x,e.y,0,1],a=[e.x,e.y,1,1];t.aE(i,i,this._pixelMatrixInverse),t.aE(a,a,this._pixelMatrixInverse);let o=i[3],s=a[3],c=i[1]/o,l=a[1]/s,u=i[2]/o,d=a[2]/s,f=u===d?0:(r-u)/(d-u);return new t.a6(t.G.number(i[0]/o,a[0]/s,f)/this.worldSize,t.G.number(c,l,f)/this.worldSize,r)}coordinatePoint(e,n=0,r=this._pixelMatrix){let i=[e.x*this.worldSize,e.y*this.worldSize,n,1];return t.aE(i,i,r),new t.P(i[0]/i[3],i[1]/i[3])}getBounds(){let e=Math.max(0,this._helper._height/2-Fe(this));return new N().extend(this.screenPointToLocation(new t.P(0,e))).extend(this.screenPointToLocation(new t.P(this._helper._width,e))).extend(this.screenPointToLocation(new t.P(this._helper._width,this._helper._height))).extend(this.screenPointToLocation(new t.P(0,this._helper._height)))}isPointOnMapSurface(e,t){return t?t.pointCoordinate(e)!=null:e.y>this.height/2-Fe(this)}calculatePosMatrix(e,n=!1,r){let i=e.key??t.bb(e.wrap,e.canonical.z,e.canonical.z,e.canonical.x,e.canonical.y),a=n?this._alignedPosMatrixCache:this._posMatrixCache;if(a.has(i)){let e=a.get(i);return r?e.f32:e.f64}let o=Ie(e,this.worldSize);t.S(o,n?this._alignedProjMatrix:this._viewProjMatrix,o);let s={f64:o,f32:new Float32Array(o)};return a.set(i,s),r?s.f32:s.f64}calculateFogMatrix(e){let n=e.key,r=this._fogMatrixCacheF32;if(r.has(n))return r.get(n);let i=Ie(e,this.worldSize);return t.S(i,this._fogMatrix,i),r.set(n,new Float32Array(i)),r.get(n)}calculateCenterFromCameraLngLatAlt(e,t,n,r){return this._helper.calculateCenterFromCameraLngLatAlt(e,t,n,r)}_calculateNearFarZIfNeeded(e,n,r){if(!this._helper.autoCalculateNearFarZ)return;let i=Math.min(this.elevation,this.minElevationForCurrentTile,this.getCameraAltitude()-100),a=e-i*this._helper._pixelPerMeter/Math.cos(n),o=i<0?a:e,s=Math.PI/2+this.pitchInRadians,c=t.am(this.fov)*(Math.abs(Math.cos(t.am(this.roll)))*this.height+Math.abs(Math.sin(t.am(this.roll)))*this.width)/this.height*(.5+r.y/this.height),l=Math.sin(c)*o/Math.sin(t.ak(Math.PI-s-c,.01,Math.PI-.01)),u=Fe(this),d=Math.atan(u/this._helper.cameraToCenterDistance),f=t.am(.75),p=d>f?2*d*(.5+r.y/(2*u)):f,m=Math.sin(p)*o/Math.sin(t.ak(Math.PI-s-p,.01,Math.PI-.01)),h=Math.min(l,m);this._helper._farZ=1.01*(Math.cos(Math.PI/2-n)*h+o),this._helper._nearZ=this._helper._height/50}_calcMatrices(){if(!this._helper._height)return;let e=this.centerOffset,n=Ne(this.worldSize,this.center),r=n.x,i=n.y;this._helper._pixelPerMeter=t.ap(1,this.center.lat)*this.worldSize;let a=t.am(Math.min(this.pitch,Me)),o=Math.max(this._helper.cameraToCenterDistance/2,this._helper.cameraToCenterDistance+this._helper._elevation*this._helper._pixelPerMeter/Math.cos(a)),s;this._calculateNearFarZIfNeeded(o,a,e),s=new Float64Array(16),t.bc(s,this.fovInRadians,this._helper._width/this._helper._height,this._helper._nearZ,this._helper._farZ),this._invProjMatrix=new Float64Array(16),t.ay(this._invProjMatrix,s),s[8]=2*-e.x/this._helper._width,s[9]=2*e.y/this._helper._height,this._projectionMatrix=t.bd(s),t.Q(s,s,[1,-1,1]),t.O(s,s,[0,0,-this._helper.cameraToCenterDistance]),t.be(s,s,-this.rollInRadians),t.bf(s,s,this.pitchInRadians),t.be(s,s,-this.bearingInRadians),t.O(s,s,[-r,-i,0]),this._mercatorMatrix=t.Q([],s,[this.worldSize,this.worldSize,this.worldSize]),t.Q(s,s,[1,1,this._helper._pixelPerMeter]),this._pixelMatrix=t.S(new Float64Array(16),this.clipSpaceToPixelsMatrix,s),t.O(s,s,[0,0,-this.elevation]),this._viewProjMatrix=s,this._invViewProjMatrix=t.ay([],s);let c=[0,0,-1,1];t.aE(c,c,this._invViewProjMatrix),this._cameraPosition=[c[0]/c[3],c[1]/c[3],c[2]/c[3]],this._fogMatrix=new Float64Array(16),t.bc(this._fogMatrix,this.fovInRadians,this.width/this.height,o,this._helper._farZ),this._fogMatrix[8]=2*-e.x/this.width,this._fogMatrix[9]=2*e.y/this.height,t.Q(this._fogMatrix,this._fogMatrix,[1,-1,1]),t.O(this._fogMatrix,this._fogMatrix,[0,0,-this.cameraToCenterDistance]),t.be(this._fogMatrix,this._fogMatrix,-this.rollInRadians),t.bf(this._fogMatrix,this._fogMatrix,this.pitchInRadians),t.be(this._fogMatrix,this._fogMatrix,-this.bearingInRadians),t.O(this._fogMatrix,this._fogMatrix,[-r,-i,0]),t.Q(this._fogMatrix,this._fogMatrix,[1,1,this._helper._pixelPerMeter]),t.O(this._fogMatrix,this._fogMatrix,[0,0,-this.elevation]),this._pixelMatrix3D=t.S(new Float64Array(16),this.clipSpaceToPixelsMatrix,s);let l=this._helper._width%2/2,u=this._helper._height%2/2,d=Math.cos(this.bearingInRadians),f=Math.sin(-this.bearingInRadians),p=r-Math.round(r)+d*l+f*u,m=i-Math.round(i)+d*u+f*l,h=new Float64Array(s);if(t.O(h,h,[p>.5?p-1:p,m>.5?m-1:m,0]),this._alignedProjMatrix=h,s=t.ay(new Float64Array(16),this._pixelMatrix),!s)throw Error(`failed to invert matrix`);this._pixelMatrixInverse=s,this._clearMatrixCaches()}_clearMatrixCaches(){this._posMatrixCache.clear(),this._alignedPosMatrixCache.clear(),this._fogMatrixCacheF32.clear()}maxPitchScaleFactor(){if(!this._pixelMatrixInverse)return 1;let e=this.screenPointToMercatorCoordinate(new t.P(0,0)),n=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.aE(n,n,this._pixelMatrix)[3]/this._helper.cameraToCenterDistance}getCameraPoint(){return this._helper.getCameraPoint()}getCameraAltitude(){return this._helper.getCameraAltitude()}getCameraLngLat(){let e=t.ap(1,this.center.lat)*this.worldSize;return Le(this.center,this.elevation,this.pitch,this.bearing,this._helper.cameraToCenterDistance/e).toLngLat()}lngLatToCameraDepth(e,n){let r=t.a6.fromLngLat(e),i=[r.x*this.worldSize,r.y*this.worldSize,n,1];return t.aE(i,i,this._viewProjMatrix),i[2]/i[3]}getProjectionData(e){let{overscaledTileID:n,aligned:r,applyTerrainMatrix:i}=e,a=this._helper.getMercatorTileCoordinates(n),o=n?this.calculatePosMatrix(n,r,!0):null,s;return s=n&&n.terrainRttPosMatrix32f&&i?n.terrainRttPosMatrix32f:o||t.bg(),{mainMatrix:s,tileMercatorCoords:a,clippingPlane:[0,0,0,0],projectionTransition:0,fallbackMatrix:s}}isLocationOccluded(e){return!1}getPixelScale(){return 1}getCircleRadiusCorrection(){return 1}getPitchedTextCorrection(e,t,n){return 1}transformLightDirection(e){return t.a$(e)}getRayDirectionFromPixel(e){throw Error(`Not implemented.`)}projectTileCoordinates(e,n,r,i){let a=this.calculatePosMatrix(r),o;i?(o=[e,n,i(e,n),1],t.aE(o,o,a)):(o=[e,n,0,1],pt(o,o,a));let s=o[3];return{point:new t.P(o[0]/s,o[1]/s),signedDistanceFromCamera:s,isOccluded:!1}}populateCache(e){for(let t of e)this.calculatePosMatrix(t)}getMatrixForModel(e,n){let r=t.a6.fromLngLat(e,n),i=r.meterInMercatorCoordinateUnits(),a=t.bh();return t.O(a,a,[r.x,r.y,r.z]),t.be(a,a,Math.PI),t.bf(a,a,Math.PI/2),t.Q(a,a,[-i,i,i]),a}getProjectionDataForCustomLayer(e=!0){let n=new t.a2(0,0,0,0,0),r=this.getProjectionData({overscaledTileID:n,applyGlobeMatrix:e}),i=Ie(n,this.worldSize);t.S(i,this._viewProjMatrix,i),r.tileMercatorCoords=[0,0,1,1];let a=[t.a5,t.a5,this.worldSize/this._helper.pixelsPerMeter],o=t.bi();return t.Q(o,i,a),r.fallbackMatrix=o,r.mainMatrix=o,r}getFastPathSimpleProjectionMatrix(e){return this.calculatePosMatrix(e)}}function Xt(){t.w(`Map cannot fit within canvas with the given bounds, padding, and/or offset.`)}function Zt(e){if(e.useSlerp)if(e.k<1){let n=t.bj(e.startEulerAngles.roll,e.startEulerAngles.pitch,e.startEulerAngles.bearing),r=t.bj(e.endEulerAngles.roll,e.endEulerAngles.pitch,e.endEulerAngles.bearing),i=new Float64Array(4);t.bk(i,n,r,e.k);let a=t.bl(i);e.tr.setRoll(a.roll),e.tr.setPitch(a.pitch),e.tr.setBearing(a.bearing)}else e.tr.setRoll(e.endEulerAngles.roll),e.tr.setPitch(e.endEulerAngles.pitch),e.tr.setBearing(e.endEulerAngles.bearing);else e.tr.setRoll(t.G.number(e.startEulerAngles.roll,e.endEulerAngles.roll,e.k)),e.tr.setPitch(t.G.number(e.startEulerAngles.pitch,e.endEulerAngles.pitch,e.k)),e.tr.setBearing(t.G.number(e.startEulerAngles.bearing,e.endEulerAngles.bearing,e.k))}function Qt(e,n,r,i,a){let o=a.padding,s=Ne(a.worldSize,r.getNorthWest()),c=Ne(a.worldSize,r.getNorthEast()),l=Ne(a.worldSize,r.getSouthEast()),u=Ne(a.worldSize,r.getSouthWest()),d=t.am(-i),f=s.rotate(d),p=c.rotate(d),m=l.rotate(d),h=u.rotate(d),g=new t.P(Math.max(f.x,p.x,h.x,m.x),Math.max(f.y,p.y,h.y,m.y)),_=new t.P(Math.min(f.x,p.x,h.x,m.x),Math.min(f.y,p.y,h.y,m.y)),v=g.sub(_),y=(a.width-(o.left+o.right+n.left+n.right))/v.x,b=(a.height-(o.top+o.bottom+n.top+n.bottom))/v.y;if(b<0||y<0)return void Xt();let x=Math.min(t.aq(a.scale*Math.min(y,b)),e.maxZoom),S=t.P.convert(e.offset),C=new t.P((n.left-n.right)/2,(n.top-n.bottom)/2).rotate(t.am(i)),w=S.add(C).mult(a.scale/t.an(x));return{center:Pe(a.worldSize,s.add(l).div(2).sub(w)),zoom:x,bearing:i}}class $t{get useGlobeControls(){return!1}handlePanInertia(e,t){let n=e.mag(),r=Math.abs(Fe(t));return{easingOffset:e.mult(Math.min(.75*r/n,1)),easingCenter:t.center}}handleMapControlsRollPitchBearingZoom(e,t){e.bearingDelta&&t.setBearing(t.bearing+e.bearingDelta),e.pitchDelta&&t.setPitch(t.pitch+e.pitchDelta),e.rollDelta&&t.setRoll(t.roll+e.rollDelta),e.zoomDelta&&t.setZoom(t.zoom+e.zoomDelta)}handleMapControlsPan(e,t,n){e.around.distSqr(t.centerPoint)<.01||t.setLocationAtPoint(n,e.around)}cameraForBoxAndBearing(e,t,n,r,i){return Qt(e,t,n,r,i)}handleJumpToCenterZoom(e,n){e.zoom!==(n.zoom===void 0?e.zoom:+n.zoom)&&e.setZoom(+n.zoom),n.center!==void 0&&e.setCenter(t.V.convert(n.center))}handleEaseTo(e,n){let r=e.zoom,i=e.padding,a={roll:e.roll,pitch:e.pitch,bearing:e.bearing},o={roll:n.roll===void 0?e.roll:n.roll,pitch:n.pitch===void 0?e.pitch:n.pitch,bearing:n.bearing===void 0?e.bearing:n.bearing},s=n.zoom!==void 0,c=!e.isPaddingEqual(n.padding),l=!1,u=s?+n.zoom:e.zoom,d=e.centerPoint.add(n.offsetAsPoint),f=e.screenPointToLocation(d),{center:p,zoom:m}=e.applyConstrain(t.V.convert(n.center||f),u??r);Ut(e,p);let h=Ne(e.worldSize,f),g=Ne(e.worldSize,p).sub(h),_=t.an(m-r);return l=m!==r,{easeFunc:s=>{if(l&&e.setZoom(t.G.number(r,m,s)),t.bm(a,o)||Zt({startEulerAngles:a,endEulerAngles:o,tr:e,k:s,useSlerp:a.roll!=o.roll}),c&&(e.interpolatePadding(i,n.padding,s),d=e.centerPoint.add(n.offsetAsPoint)),n.around)e.setLocationAtPoint(n.around,n.aroundPoint);else{let n=t.an(e.zoom-r),i=(m>r?Math.min(2,_):Math.max(.5,_))**(1-s),a=Pe(e.worldSize,h.add(g.mult(s*i)).mult(n));e.setLocationAtPoint(e.renderWorldCopies?a.wrap():a,d)}},isZooming:l,elevationCenter:p}}handleFlyTo(e,n){let r=n.zoom!==void 0,i=e.zoom,a=e.applyConstrain(t.V.convert(n.center||n.locationAtOffset),r?+n.zoom:i),o=a.center,s=a.zoom;Ut(e,o);let c=Ne(e.worldSize,n.locationAtOffset),l=Ne(e.worldSize,o).sub(c),u=l.mag(),d=t.an(s-i),f;if(n.minZoom!==void 0){let r=Math.min(+n.minZoom,i,s),a=e.applyConstrain(o,r).zoom;f=t.an(a-i)}return{easeFunc:(n,r,a,u)=>{e.setZoom(n===1?s:i+t.aq(r));let d=n===1?o:Pe(e.worldSize,c.add(l.mult(a)).mult(r));e.setLocationAtPoint(e.renderWorldCopies?d.wrap():d,u)},scaleOfZoom:d,targetCenter:o,scaleOfMinZoom:f,pixelPathLength:u}}}class en{constructor(e,t,n){this.blendFunction=e,this.blendColor=t,this.mask=n}}en.Replace=[1,0],en.disabled=new en(en.Replace,t.bn.transparent,[!1,!1,!1,!1]),en.unblended=new en(en.Replace,t.bn.transparent,[!0,!0,!0,!0]),en.alphaBlended=new en([1,771],t.bn.transparent,[!0,!0,!0,!0]);let tn=2305;class K{constructor(e,t,n){this.enable=e,this.mode=t,this.frontFace=n}}K.disabled=new K(!1,1029,tn),K.backCCW=new K(!0,1029,tn),K.frontCCW=new K(!0,1028,tn);class q{constructor(e,t,n){this.func=e,this.mask=t,this.range=n}}q.ReadOnly=!1,q.ReadWrite=!0,q.disabled=new q(519,q.ReadOnly,[0,1]);let nn=7680;class J{constructor(e,t,n,r,i,a){this.test=e,this.ref=t,this.mask=n,this.fail=r,this.depthFail=i,this.pass=a}}J.disabled=new J({func:519,mask:0},0,0,nn,nn,nn);let rn=new WeakMap;function an(e){if(rn.has(e))return rn.get(e);{let t=e.getParameter(e.VERSION)?.startsWith(`WebGL 2.0`);return rn.set(e,t),t}}class on{get awaitingQuery(){return!!this._readbackQueue}constructor(e){this._readbackWaitFrames=4,this._measureWaitFrames=6,this._texWidth=1,this._texHeight=1,this._measuredError=0,this._updateCount=0,this._lastReadbackFrame=-1e3,this._readbackQueue=null,this._cachedRenderContext=e;let n=e.context,r=n.gl;this._texFormat=r.RGBA,this._texType=r.UNSIGNED_BYTE;let i=new t.aU;i.emplaceBack(-1,-1),i.emplaceBack(2,-1),i.emplaceBack(-1,2);let a=new t.aW;a.emplaceBack(0,1,2),this._fullscreenTriangle=new Lt(n.createVertexBuffer(i,Rt.members),n.createIndexBuffer(a),t.aV.simpleSegment(0,0,i.length,a.length)),this._resultBuffer=new Uint8Array(4),n.activeTexture.set(r.TEXTURE1);let o=r.createTexture();r.bindTexture(r.TEXTURE_2D,o),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.NEAREST),r.texImage2D(r.TEXTURE_2D,0,this._texFormat,this._texWidth,this._texHeight,0,this._texFormat,this._texType,null),this._fbo=n.createFramebuffer(this._texWidth,this._texHeight,!1,!1),this._fbo.colorAttachment.set(o),an(r)&&(this._pbo=r.createBuffer(),r.bindBuffer(r.PIXEL_PACK_BUFFER,this._pbo),r.bufferData(r.PIXEL_PACK_BUFFER,4,r.STREAM_READ),r.bindBuffer(r.PIXEL_PACK_BUFFER,null))}destroy(){let e=this._cachedRenderContext.context.gl;this._fullscreenTriangle.destroy(),this._fbo.destroy(),e.deleteBuffer(this._pbo),this._fullscreenTriangle=null,this._fbo=null,this._pbo=null,this._resultBuffer=null}updateErrorLoop(e,t){let n=this._updateCount;return this._readbackQueue?n>=this._readbackQueue.frameNumberIssued+this._readbackWaitFrames&&this._tryReadback():n>=this._lastReadbackFrame+this._measureWaitFrames&&this._renderErrorTexture(e,t),this._updateCount++,this._measuredError}_bindFramebuffer(){let e=this._cachedRenderContext.context,t=e.gl;e.activeTexture.set(t.TEXTURE1),t.bindTexture(t.TEXTURE_2D,this._fbo.colorAttachment.get()),e.bindFramebuffer.set(this._fbo.framebuffer)}_renderErrorTexture(e,n){let r=this._cachedRenderContext.context,i=r.gl;if(this._bindFramebuffer(),r.viewport.set([0,0,this._texWidth,this._texHeight]),r.clear({color:t.bn.transparent}),this._cachedRenderContext.useProgram(`projectionErrorMeasurement`).draw(r,i.TRIANGLES,q.disabled,J.disabled,en.unblended,K.disabled,((e,t)=>({u_input:e,u_output_expected:t}))(e,n),null,null,`$clipping`,this._fullscreenTriangle.vertexBuffer,this._fullscreenTriangle.indexBuffer,this._fullscreenTriangle.segments),this._pbo&&an(i)){i.bindBuffer(i.PIXEL_PACK_BUFFER,this._pbo),i.readBuffer(i.COLOR_ATTACHMENT0),i.readPixels(0,0,this._texWidth,this._texHeight,this._texFormat,this._texType,0),i.bindBuffer(i.PIXEL_PACK_BUFFER,null);let e=i.fenceSync(i.SYNC_GPU_COMMANDS_COMPLETE,0);i.flush(),this._readbackQueue={frameNumberIssued:this._updateCount,sync:e}}else this._readbackQueue={frameNumberIssued:this._updateCount,sync:null}}_tryReadback(){let e=this._cachedRenderContext.context.gl;if(this._pbo&&this._readbackQueue&&an(e)){let n=e.clientWaitSync(this._readbackQueue.sync,0,0);if(n===e.WAIT_FAILED)return t.w(`WebGL2 clientWaitSync failed.`),this._readbackQueue=null,void(this._lastReadbackFrame=this._updateCount);if(n===e.TIMEOUT_EXPIRED)return;e.bindBuffer(e.PIXEL_PACK_BUFFER,this._pbo),e.getBufferSubData(e.PIXEL_PACK_BUFFER,0,this._resultBuffer,0,4),e.bindBuffer(e.PIXEL_PACK_BUFFER,null)}else this._bindFramebuffer(),e.readPixels(0,0,this._texWidth,this._texHeight,this._texFormat,this._texType,this._resultBuffer);this._readbackQueue=null,this._measuredError=on._parseRGBA8float(this._resultBuffer),this._lastReadbackFrame=this._updateCount}static _parseRGBA8float(e){let t=0;return t+=e[0]/256,t+=e[1]/65536,t+=e[2]/16777216,e[3]<127&&(t=-t),t/128}}let sn=t.a5/128;function cn(e,n){let r=e.granularity===void 0?1:Math.max(e.granularity,1),i=r+(e.generateBorders?2:0),a=r+(e.extendToNorthPole||e.generateBorders?1:0)+(e.extendToSouthPole||e.generateBorders?1:0),o=i+1,s=a+1,c=e.generateBorders?-1:0,l=e.generateBorders||e.extendToNorthPole?-1:0,u=r+ +!!e.generateBorders,d=r+(e.generateBorders||e.extendToSouthPole?1:0),f=o*s,p=i*a*6,m=o*s>65536;if(m&&n===`16bit`)throw Error(`Granularity is too large and meshes would not fit inside 16 bit vertex indices.`);let h=m||n===`32bit`,g=new Int16Array(2*f),_=0;for(let n=l;n<=d;n++)for(let i=c;i<=u;i++){let a=i/r*t.a5;i===-1&&(a=-sn),i===r+1&&(a=t.a5+sn);let o=n/r*t.a5;n===-1&&(o=e.extendToNorthPole?t.bp:-sn),n===r+1&&(o=e.extendToSouthPole?t.bq:t.a5+sn),g[_++]=a,g[_++]=o}let v=h?new Uint32Array(p):new Uint16Array(p),y=0;for(let e=0;e<a;e++)for(let t=0;t<i;t++){let n=t+1+e*o,r=t+(e+1)*o,i=t+1+(e+1)*o;v[y++]=t+e*o,v[y++]=r,v[y++]=n,v[y++]=n,v[y++]=r,v[y++]=i}return{vertices:g.buffer.slice(0),indices:v.buffer.slice(0),uses32bitIndices:h}}let ln=new t.aT({fill:new t.br(128,2),line:new t.br(512,0),tile:new t.br(128,32),stencil:new t.br(128,1),circle:3});class un{constructor(){this._tileMeshCache={},this._errorCorrectionUsable=0,this._errorMeasurementLastValue=0,this._errorCorrectionPreviousValue=0,this._errorMeasurementLastChangeTime=-1e3}get name(){return`vertical-perspective`}get transitionState(){return 1}get useSubdivision(){return!0}get shaderVariantName(){return`globe`}get shaderDefine(){return`#define GLOBE`}get shaderPreludeCode(){return It.projectionGlobe}get vertexShaderPreludeCode(){return It.projectionMercator.vertexSource}get subdivisionGranularity(){return ln}get useGlobeControls(){return!0}get latitudeErrorCorrectionRadians(){return this._errorCorrectionUsable}destroy(){this._errorMeasurement&&this._errorMeasurement.destroy()}updateGPUdependent(e){this._errorMeasurement||=new on(e);let n=t.X(this._errorQueryLatitudeDegrees),r=2*Math.atan(Math.exp(Math.PI-n*Math.PI*2))-.5*Math.PI,i=this._errorMeasurement.updateErrorLoop(n,r),a=l();i!==this._errorMeasurementLastValue&&(this._errorCorrectionPreviousValue=this._errorCorrectionUsable,this._errorMeasurementLastValue=i,this._errorMeasurementLastChangeTime=a);let o=Math.min(Math.max((a-this._errorMeasurementLastChangeTime)/1e3/.5,0),1);this._errorCorrectionUsable=t.bs(this._errorCorrectionPreviousValue,-this._errorMeasurementLastValue,t.bt(o))}_getMeshKey(e){return`${e.granularity.toString(36)}_${e.generateBorders?`b`:``}${e.extendToNorthPole?`n`:``}${e.extendToSouthPole?`s`:``}`}getMeshFromTileID(e,t,n,r,i){let a=(i===`stencil`?ln.stencil:ln.tile).getGranularityForZoomLevel(t.z);return this._getMesh(e,{granularity:a,generateBorders:n,extendToNorthPole:t.y===0&&r,extendToSouthPole:t.y===(1<<t.z)-1&&r})}_getMesh(e,n){let r=this._getMeshKey(n);if(r in this._tileMeshCache)return this._tileMeshCache[r];let i=function(e,n){let r=cn(n,`16bit`),i=t.aU.deserialize({arrayBuffer:r.vertices,length:r.vertices.byteLength/2/2}),a=t.aW.deserialize({arrayBuffer:r.indices,length:r.indices.byteLength/2/3});return new Lt(e.createVertexBuffer(i,Rt.members),e.createIndexBuffer(a),t.aV.simpleSegment(0,0,i.length,a.length))}(e,n);return this._tileMeshCache[r]=i,i}recalculate(e){}hasTransition(){let e=l(),t=!1;return t||=(e-this._errorMeasurementLastChangeTime)/1e3<.7,t||=this._errorMeasurement&&this._errorMeasurement.awaitingQuery,t}setErrorQueryLatitudeDegrees(e){this._errorQueryLatitudeDegrees=e}}let dn=new t.t({type:new t.D(t.u.projection.type)});class fn extends t.E{constructor(e){super(),this._transitionable=new t.x(dn,void 0),this.setProjection(e),this._transitioning=this._transitionable.untransitioned(),this.recalculate(new t.H(0)),this._mercatorProjection=new Vt,this._verticalPerspectiveProjection=new un}get transitionState(){let e=this.properties.get(`type`);if(typeof e==`string`&&e===`mercator`)return 0;if(typeof e==`string`&&e===`vertical-perspective`)return 1;if(e instanceof t.bu){if(e.from===`vertical-perspective`&&e.to===`mercator`)return 1-e.transition;if(e.from===`mercator`&&e.to===`vertical-perspective`)return e.transition}return 1}get useGlobeRendering(){return this.transitionState>0}get latitudeErrorCorrectionRadians(){return this._verticalPerspectiveProjection.latitudeErrorCorrectionRadians}get currentProjection(){return this.useGlobeRendering?this._verticalPerspectiveProjection:this._mercatorProjection}get name(){return`globe`}get useSubdivision(){return this.currentProjection.useSubdivision}get shaderVariantName(){return this.currentProjection.shaderVariantName}get shaderDefine(){return this.currentProjection.shaderDefine}get shaderPreludeCode(){return this.currentProjection.shaderPreludeCode}get vertexShaderPreludeCode(){return this.currentProjection.vertexShaderPreludeCode}get subdivisionGranularity(){return this.currentProjection.subdivisionGranularity}get useGlobeControls(){return this.transitionState>0}destroy(){this._mercatorProjection.destroy(),this._verticalPerspectiveProjection.destroy()}updateGPUdependent(e){this._mercatorProjection.updateGPUdependent(e),this._verticalPerspectiveProjection.updateGPUdependent(e)}getMeshFromTileID(e,t,n,r,i){return this.currentProjection.getMeshFromTileID(e,t,n,r,i)}setProjection(e){this._transitionable.setValue(`type`,e?.type||`mercator`)}updateTransitions(e){this._transitioning=this._transitionable.transitioned(e,this._transitioning)}hasTransition(){return this._transitioning.hasTransition()||this.currentProjection.hasTransition()}recalculate(e){this.properties=this._transitioning.possiblyEvaluate(e)}setErrorQueryLatitudeDegrees(e){this._verticalPerspectiveProjection.setErrorQueryLatitudeDegrees(e),this._mercatorProjection.setErrorQueryLatitudeDegrees(e)}}function pn(e){let t=gn(e.worldSize,e.center.lat);return 2*Math.PI*t}function mn(e,n,r,i,a){let o=1/(1<<a),s=n/t.a5*o+i*o,c=t.bx((e/t.a5*o+r*o)*Math.PI*2+Math.PI,2*Math.PI),l=2*Math.atan(Math.exp(Math.PI-s*Math.PI*2))-.5*Math.PI,u=Math.cos(l),d=new Float64Array(3);return d[0]=Math.sin(c)*u,d[1]=Math.sin(l),d[2]=Math.cos(c)*u,d}function hn(e){return function(e,t){let n=Math.cos(t),r=new Float64Array(3);return r[0]=Math.sin(e)*n,r[1]=Math.sin(t),r[2]=Math.cos(e)*n,r}(e.lng*Math.PI/180,e.lat*Math.PI/180)}function gn(e,t){return e/(2*Math.PI)/Math.cos(t*Math.PI/180)}function _n(e){let n=Math.asin(e[1])/Math.PI*180,r=Math.sqrt(e[0]*e[0]+e[2]*e[2]);if(r>1e-6){let i=e[0]/r,a=Math.acos(e[2]/r),o=(i>0?a:-a)/Math.PI*180;return new t.V(t.W(o,-180,180),n)}return new t.V(0,n)}function vn(e){return Math.cos(e*Math.PI/180)}function yn(e,n){let r=vn(e),i=vn(n);return t.aq(i/r)}function bn(e,n){let r=e.rotate(n.bearingInRadians),i=n.zoom+yn(n.center.lat,0),a=t.bs(1/vn(n.center.lat),1/vn(Math.min(Math.abs(n.center.lat),60)),t.bv(i,7,3,0,1)),o=360/pn({worldSize:n.worldSize,center:{lat:n.center.lat}});return new t.V(n.center.lng-r.x*o*a,t.ak(n.center.lat+r.y*o,-t.al,t.al))}function xn(e){let t=.5*e,n=Math.sin(t),r=Math.cos(t);return Math.log(n+r)-Math.log(r-n)}function Sn(e,n,r,i){let a=e.lat+r*i;if(Math.abs(r)>1){let o=(Math.sign(e.lat+r)===Math.sign(e.lat)?Math.abs(e.lat):-Math.abs(e.lat))*Math.PI/180,s=Math.abs(e.lat+r)*Math.PI/180,c=xn(o+i*(s-o)),l=xn(o),u=xn(s);return new t.V(e.lng+n*((c-l)/(u-l)),a)}return new t.V(e.lng+n*i,a)}class Cn{constructor(e){this._cachePrevious=new Map,this._cache=new Map,this._hadAnyChanges=!1,this._boundingVolumeFactory=e}swapBuffers(){if(!this._hadAnyChanges)return;let e=this._cachePrevious;this._cachePrevious=this._cache,this._cache=e,this._cache.clear(),this._hadAnyChanges=!1}getTileBoundingVolume(e,t,n,r){let i=`${e.z}_${e.x}_${e.y}_${r?.terrain?`t`:``}`,a=this._cache.get(i);if(a)return a;let o=this._cachePrevious.get(i);if(o)return this._cache.set(i,o),o;let s=this._boundingVolumeFactory(e,t,n,r);return this._cache.set(i,s),this._hadAnyChanges=!0,s}}class wn{constructor(e,t,n,r){this.min=n,this.max=r,this.points=e,this.planes=t}static fromAabb(e,t){let n=[];for(let r=0;r<8;r++)n.push([1&~r?e[0]:t[0],(r>>1&1)==1?t[1]:e[1],(r>>2&1)==1?t[2]:e[2]]);return new wn(n,[[-1,0,0,t[0]],[1,0,0,-e[0]],[0,-1,0,t[1]],[0,1,0,-e[1]],[0,0,-1,t[2]],[0,0,1,-e[2]]],e,t)}static fromCenterSizeAngles(e,n,r){let i=t.bz([],r[0],r[1],r[2]),a=t.bA([],[n[0],0,0],i),o=t.bA([],[0,n[1],0],i),s=t.bA([],[0,0,n[2]],i),c=[...e],l=[...e];for(let t=0;t<8;t++)for(let n=0;n<3;n++){let r=e[n]+a[n]*(1&~t?-1:1)+o[n]*((t>>1&1)==1?1:-1)+s[n]*((t>>2&1)==1?1:-1);c[n]=Math.min(c[n],r),l[n]=Math.max(l[n],r)}let u=[];for(let n=0;n<8;n++){let r=[...e];t.a_(r,r,t.aZ([],a,1&~n?-1:1)),t.a_(r,r,t.aZ([],o,(n>>1&1)==1?1:-1)),t.a_(r,r,t.aZ([],s,(n>>2&1)==1?1:-1)),u.push(r)}return new wn(u,[[...a,-t.b3(a,u[0])],[...o,-t.b3(o,u[0])],[...s,-t.b3(s,u[0])],[-a[0],-a[1],-a[2],-t.b3(a,u[7])],[-o[0],-o[1],-o[2],-t.b3(o,u[7])],[-s[0],-s[1],-s[2],-t.b3(s,u[7])]],c,l)}intersectsFrustum(e){let t=!0,n=this.points.length,r=this.planes.length,i=e.planes.length,a=e.points.length;for(let r=0;r<i;r++){let i=e.planes[r],a=0;for(let e=0;e<n;e++){let t=this.points[e];i[0]*t[0]+i[1]*t[1]+i[2]*t[2]+i[3]>=0&&a++}if(a===0)return 0;a<n&&(t=!1)}if(t)return 2;for(let t=0;t<r;t++){let n=this.planes[t],r=0;for(let t=0;t<a;t++){let i=e.points[t];n[0]*i[0]+n[1]*i[1]+n[2]*i[2]+n[3]>=0&&r++}if(r===0)return 0}return 1}intersectsPlane(e){let t=this.points.length,n=0;for(let r=0;r<t;r++){let t=this.points[r];e[0]*t[0]+e[1]*t[1]+e[2]*t[2]+e[3]>=0&&n++}return n===t?2:n===0?0:1}}function Tn(e,t,n){let r=e-t;return r<0?-r:Math.max(0,r-n)}function En(e,t,n,r,i){let a=e-n,o;return o=a<0?Math.min(-a,1+a-i):a>i?Math.min(Math.max(a-i,0),1-a):0,Math.max(o,Tn(t,r,i))}class Dn{constructor(){this._boundingVolumeCache=new Cn(this._computeTileBoundingVolume)}prepareNextFrame(){this._boundingVolumeCache.swapBuffers()}distanceToTile2d(e,t,n,r){let i=1<<n.z,a=1/i,o=n.x/i,s=n.y/i,c=2;return c=Math.min(c,En(e,t,o,s,a)),c=Math.min(c,En(e,t,o+.5,-s-a,a)),c=Math.min(c,En(e,t,o+.5,2-s-a,a)),c}getWrap(e,t,n){let r=1<<t.z,i=1/r,a=t.x/r,o=Tn(e.x,a,i),s=Tn(e.x,a-1,i),c=Tn(e.x,a+1,i),l=Math.min(o,s,c);return l===c?1:l===s?-1:0}allowVariableZoom(e,t){return He(e,t)>4}allowWorldCopies(){return!1}getTileBoundingVolume(e,t,n,r){return this._boundingVolumeCache.getTileBoundingVolume(e,t,n,r)}_computeTileBoundingVolume(e,n,r,i){let a=0,o=0;if(i?.terrain){let s=new t.a2(e.z,n,e.z,e.x,e.y),c=i.terrain.getMinMaxElevation(s);a=c.minElevation??Math.min(0,r),o=c.maxElevation??Math.max(0,r)}if(a/=t.bC,o/=t.bC,a+=1,o+=1,e.z<=0)return wn.fromAabb([-o,-o,-o],[o,o,o]);if(e.z===1)return wn.fromAabb([e.x===0?-o:0,e.y===0?0:-o,-o],[e.x===0?0:o,e.y===0?o:0,o]);{let n=[mn(0,0,e.x,e.y,e.z),mn(t.a5,0,e.x,e.y,e.z),mn(t.a5,t.a5,e.x,e.y,e.z),mn(0,t.a5,e.x,e.y,e.z)],r=[];for(let e of n)r.push(t.aZ([],e,o));if(o!==a)for(let e of n)r.push(t.aZ([],e,a));e.y===0&&r.push([0,1,0]),e.y===(1<<e.z)-1&&r.push([0,-1,0]);let i=[1,1,1],s=[-1,-1,-1];for(let e of r)for(let t=0;t<3;t++)i[t]=Math.min(i[t],e[t]),s[t]=Math.max(s[t],e[t]);let c=mn(t.a5/2,t.a5/2,e.x,e.y,e.z),l=t.b2([],[0,1,0],c);t.b1(l,l);let u=t.b2([],c,l);t.b1(u,u);let d=t.b2([],n[2],n[1]);t.b1(d,d);let f=t.b2([],n[0],n[3]);t.b1(f,f),r.push(t.aZ([],c,o)),e.y>=(1<<e.z)/2&&r.push(t.aZ([],mn(t.a5/2,0,e.x,e.y,e.z),o)),e.y<(1<<e.z)/2&&r.push(t.aZ([],mn(t.a5/2,t.a5,e.x,e.y,e.z),o));let p=On(c,r),m=On(u,r),h=[-c[0],-c[1],-c[2],p.max],g=[c[0],c[1],c[2],-p.min],_=[-u[0],-u[1],-u[2],m.max],v=[u[0],u[1],u[2],-m.min],y=[...d,0],b=[...f,0],x=[];return e.y===0?x.push(t.bB(b,y,h),t.bB(b,y,g)):x.push(t.bB(_,y,h),t.bB(_,y,g),t.bB(_,b,h),t.bB(_,b,g)),e.y===(1<<e.z)-1?x.push(t.bB(b,y,h),t.bB(b,y,g)):x.push(t.bB(v,y,h),t.bB(v,y,g),t.bB(v,b,h),t.bB(v,b,g)),new wn(x,[h,g,_,v,y,b],i,s)}}}function On(e,n){let r=1/0,i=-1/0;for(let a of n){let n=t.b3(e,a);r=Math.min(r,n),i=Math.max(i,n)}return{min:r,max:i}}class kn{get pixelsToClipSpaceMatrix(){return this._helper.pixelsToClipSpaceMatrix}get clipSpaceToPixelsMatrix(){return this._helper.clipSpaceToPixelsMatrix}get pixelsToGLUnits(){return this._helper.pixelsToGLUnits}get centerOffset(){return this._helper.centerOffset}get size(){return this._helper.size}get rotationMatrix(){return this._helper.rotationMatrix}get centerPoint(){return this._helper.centerPoint}get pixelsPerMeter(){return this._helper.pixelsPerMeter}setMinZoom(e){this._helper.setMinZoom(e)}setMaxZoom(e){this._helper.setMaxZoom(e)}setMinPitch(e){this._helper.setMinPitch(e)}setMaxPitch(e){this._helper.setMaxPitch(e)}setRenderWorldCopies(e){this._helper.setRenderWorldCopies(e)}setBearing(e){this._helper.setBearing(e)}setPitch(e){this._helper.setPitch(e)}setRoll(e){this._helper.setRoll(e)}setFov(e){this._helper.setFov(e)}setZoom(e){this._helper.setZoom(e)}setCenter(e){this._helper.setCenter(e)}setElevation(e){this._helper.setElevation(e)}setMinElevationForCurrentTile(e){this._helper.setMinElevationForCurrentTile(e)}setPadding(e){this._helper.setPadding(e)}interpolatePadding(e,t,n){return this._helper.interpolatePadding(e,t,n)}isPaddingEqual(e){return this._helper.isPaddingEqual(e)}resize(e,t){this._helper.resize(e,t)}getMaxBounds(){return this._helper.getMaxBounds()}setMaxBounds(e){this._helper.setMaxBounds(e)}setConstrainOverride(e){this._helper.setConstrainOverride(e)}overrideNearFarZ(e,t){this._helper.overrideNearFarZ(e,t)}clearNearFarZOverride(){this._helper.clearNearFarZOverride()}getCameraQueryGeometry(e){return this._helper.getCameraQueryGeometry(this.getCameraPoint(),e)}get tileSize(){return this._helper.tileSize}get tileZoom(){return this._helper.tileZoom}get scale(){return this._helper.scale}get worldSize(){return this._helper.worldSize}get width(){return this._helper.width}get height(){return this._helper.height}get lngRange(){return this._helper.lngRange}get latRange(){return this._helper.latRange}get minZoom(){return this._helper.minZoom}get maxZoom(){return this._helper.maxZoom}get zoom(){return this._helper.zoom}get center(){return this._helper.center}get minPitch(){return this._helper.minPitch}get maxPitch(){return this._helper.maxPitch}get pitch(){return this._helper.pitch}get pitchInRadians(){return this._helper.pitchInRadians}get roll(){return this._helper.roll}get rollInRadians(){return this._helper.rollInRadians}get bearing(){return this._helper.bearing}get bearingInRadians(){return this._helper.bearingInRadians}get fov(){return this._helper.fov}get fovInRadians(){return this._helper.fovInRadians}get elevation(){return this._helper.elevation}get minElevationForCurrentTile(){return this._helper.minElevationForCurrentTile}get padding(){return this._helper.padding}get unmodified(){return this._helper.unmodified}get renderWorldCopies(){return this._helper.renderWorldCopies}get constrainOverride(){return this._helper.constrainOverride}get nearZ(){return this._helper.nearZ}get farZ(){return this._helper.farZ}get autoCalculateNearFarZ(){return this._helper.autoCalculateNearFarZ}setTransitionState(e){}constructor(e){this._cachedClippingPlane=t.bD(),this._projectionMatrix=t.bh(),this._globeViewProjMatrix32f=t.bg(),this._globeViewProjMatrixNoCorrection=t.bh(),this._globeViewProjMatrixNoCorrectionInverted=t.bh(),this._globeProjMatrixInverted=t.bh(),this._cameraPosition=t.by(),this._globeLatitudeErrorCorrectionRadians=0,this.defaultConstrain=(e,n)=>{let r=t.ak(e.lat,-t.al,t.al),i=t.ak(+n,this.minZoom+yn(0,r),this.maxZoom);return{center:new t.V(e.lng,r),zoom:i}},this.applyConstrain=(e,t)=>this._helper.applyConstrain(e,t),this._helper=new Gt({calcMatrices:()=>{this._calcMatrices()},defaultConstrain:(e,t)=>this.defaultConstrain(e,t)},e),this._coveringTilesDetailsProvider=new Dn}clone(){let e=new kn;return e.apply(this,!1),e}apply(e,t,n){this._globeLatitudeErrorCorrectionRadians=n||0,this._helper.apply(e,t)}get projectionMatrix(){return this._projectionMatrix}get modelViewProjectionMatrix(){return this._globeViewProjMatrixNoCorrection}get inverseProjectionMatrix(){return this._globeProjMatrixInverted}get cameraPosition(){let e=t.by();return e[0]=this._cameraPosition[0],e[1]=this._cameraPosition[1],e[2]=this._cameraPosition[2],e}get cameraToCenterDistance(){return this._helper.cameraToCenterDistance}getProjectionData(e){let{overscaledTileID:t,applyGlobeMatrix:n}=e,r=this._helper.getMercatorTileCoordinates(t);return{mainMatrix:this._globeViewProjMatrix32f,tileMercatorCoords:r,clippingPlane:this._cachedClippingPlane,projectionTransition:+!!n,fallbackMatrix:this._globeViewProjMatrix32f}}_computeClippingPlane(e){let n=this.pitchInRadians,r=this.cameraToCenterDistance/e,i=Math.sin(n)*r,a=Math.cos(n)*r+1,o=1/Math.sqrt(i*i+a*a)*1,s=-i,c=a,l=Math.sqrt(s*s+c*c);s/=l,c/=l;let u=[0,s,c];t.bE(u,u,[0,0,0],-this.bearingInRadians),t.bF(u,u,[0,0,0],-1*this.center.lat*Math.PI/180),t.bG(u,u,[0,0,0],this.center.lng*Math.PI/180);let d=1/t.b5(u);return t.aZ(u,u,d),[...u,-o*d]}isLocationOccluded(e){return!this.isSurfacePointVisible(hn(e))}transformLightDirection(e){let n=this._helper._center.lng*Math.PI/180,r=this._helper._center.lat*Math.PI/180,i=Math.cos(r),a=[Math.sin(n)*i,Math.sin(r),Math.cos(n)*i],o=[a[2],0,-a[0]],s=[0,0,0];t.b2(s,o,a),t.b1(o,o),t.b1(s,s);let c=[0,0,0];return t.b1(c,[o[0]*e[0]+s[0]*e[1]+a[0]*e[2],o[1]*e[0]+s[1]*e[1]+a[1]*e[2],o[2]*e[0]+s[2]*e[1]+a[2]*e[2]]),c}getPixelScale(){return 1/Math.cos(this._helper._center.lat*Math.PI/180)}getCircleRadiusCorrection(){return Math.cos(this._helper._center.lat*Math.PI/180)}getPitchedTextCorrection(e,n,r){let i=function(e,n,r){let i=1/(1<<r.z);return new t.a6(e/t.a5*i+r.x*i,n/t.a5*i+r.y*i)}(e,n,r.canonical),a=(o=i.y,[t.bx(i.x*Math.PI*2+Math.PI,2*Math.PI),2*Math.atan(Math.exp(Math.PI-o*Math.PI*2))-.5*Math.PI]);var o;return this.getCircleRadiusCorrection()/Math.cos(a[1])}projectTileCoordinates(e,n,r,i){let a=r.canonical,o=mn(e,n,a.x,a.y,a.z),s=1+(i?i(e,n):0)/t.bC,c=[o[0]*s,o[1]*s,o[2]*s,1];t.aE(c,c,this._globeViewProjMatrixNoCorrection);let l=this._cachedClippingPlane,u=l[0]*o[0]+l[1]*o[1]+l[2]*o[2]+l[3]<0;return{point:new t.P(c[0]/c[3],c[1]/c[3]),signedDistanceFromCamera:c[3],isOccluded:u}}_calcMatrices(){if(!this._helper._width||!this._helper._height)return;let e=gn(this.worldSize,this.center.lat),n=t.bi(),r=t.bi();this._helper.autoCalculateNearFarZ&&(this._helper._nearZ=.5,this._helper._farZ=this.cameraToCenterDistance+2*e),t.bc(n,this.fovInRadians,this.width/this.height,this._helper._nearZ,this._helper._farZ);let i=this.centerOffset;n[8]=2*-i.x/this._helper._width,n[9]=2*i.y/this._helper._height,this._projectionMatrix=t.bd(n),this._globeProjMatrixInverted=t.bi(),t.ay(this._globeProjMatrixInverted,n),t.O(n,n,[0,0,-this.cameraToCenterDistance]),t.be(n,n,this.rollInRadians),t.bf(n,n,-this.pitchInRadians),t.be(n,n,this.bearingInRadians),t.O(n,n,[0,0,-e]);let a=t.by();a[0]=e,a[1]=e,a[2]=e,t.bf(r,n,this.center.lat*Math.PI/180),t.bH(r,r,-this.center.lng*Math.PI/180),t.Q(r,r,a),this._globeViewProjMatrixNoCorrection=r,t.bf(n,n,this.center.lat*Math.PI/180-this._globeLatitudeErrorCorrectionRadians),t.bH(n,n,-this.center.lng*Math.PI/180),t.Q(n,n,a),this._globeViewProjMatrix32f=new Float32Array(n),this._globeViewProjMatrixNoCorrectionInverted=t.bi(),t.ay(this._globeViewProjMatrixNoCorrectionInverted,r);let o=t.by();this._cameraPosition=t.by(),this._cameraPosition[2]=this.cameraToCenterDistance/e,t.bE(this._cameraPosition,this._cameraPosition,o,-this.rollInRadians),t.bF(this._cameraPosition,this._cameraPosition,o,this.pitchInRadians),t.bE(this._cameraPosition,this._cameraPosition,o,-this.bearingInRadians),t.a_(this._cameraPosition,this._cameraPosition,[0,0,1]),t.bF(this._cameraPosition,this._cameraPosition,o,-this.center.lat*Math.PI/180),t.bG(this._cameraPosition,this._cameraPosition,o,this.center.lng*Math.PI/180),this._cachedClippingPlane=this._computeClippingPlane(e);let s=t.bd(this._globeViewProjMatrixNoCorrectionInverted);t.Q(s,s,[1,1,-1]),this._cachedFrustum=Jt.fromInvProjectionMatrix(s,1,0,this._cachedClippingPlane,!0)}calculateFogMatrix(e){t.w(`calculateFogMatrix is not supported on globe projection.`);let n=t.bi();return t.ao(n),n}getVisibleUnwrappedCoordinates(e){return[new t.ba(0,e)]}getCameraFrustum(){return this._cachedFrustum}getClippingPlane(){return this._cachedClippingPlane}getCoveringTilesDetailsProvider(){return this._coveringTilesDetailsProvider}recalculateZoomAndCenter(e){e&&t.w(`terrain is not fully supported on vertical perspective projection.`),this._helper.recalculateZoomAndCenter(0)}maxPitchScaleFactor(){return 1}getCameraPoint(){return this._helper.getCameraPoint()}getCameraAltitude(){return this._helper.getCameraAltitude()}getCameraLngLat(){return this._helper.getCameraLngLat()}lngLatToCameraDepth(e,n){if(!this._globeViewProjMatrixNoCorrection)return 1;let r=hn(e);t.aZ(r,r,1+n/t.bC);let i=t.bD();return t.aE(i,[r[0],r[1],r[2],1],this._globeViewProjMatrixNoCorrection),i[2]/i[3]}populateCache(e){}getBounds(){let e=.5*this.width,n=.5*this.height,r=[new t.P(0,0),new t.P(e,0),new t.P(this.width,0),new t.P(this.width,n),new t.P(this.width,this.height),new t.P(e,this.height),new t.P(0,this.height),new t.P(0,n)],i=[];for(let e of r)i.push(this.unprojectScreenPoint(e));let a=0,o=0,s=0,c=0,l=this.center;for(let e of i){let n=t.bI(l.lng,e.lng),r=t.bI(l.lat,e.lat);n<o&&(o=n),n>a&&(a=n),r<c&&(c=r),r>s&&(s=r)}let u=[l.lng+o,l.lat+c,l.lng+a,l.lat+s];return this.isSurfacePointOnScreen([0,1,0])&&(u[3]=90,u[0]=-180,u[2]=180),this.isSurfacePointOnScreen([0,-1,0])&&(u[1]=-90,u[0]=-180,u[2]=180),new N(u)}calculateCenterFromCameraLngLatAlt(e,t,n,r){return this._helper.calculateCenterFromCameraLngLatAlt(e,t,n,r)}setLocationAtPoint(e,n){let r=hn(this.unprojectScreenPoint(n)),i=hn(e),a=t.by();t.bJ(a);let o=t.by();t.bG(o,r,a,-this.center.lng*Math.PI/180),t.bF(o,o,a,this.center.lat*Math.PI/180);let s=i[0]*i[0]+i[2]*i[2],c=o[0]*o[0];if(s<c)return;let l=Math.sqrt(s-c),u=-l,d=t.bK(i[0],i[2],o[0],l),f=t.bK(i[0],i[2],o[0],u),p=t.by();t.bG(p,i,a,-d);let m=t.bK(p[1],p[2],o[1],o[2]),h=t.by();t.bG(h,i,a,-f);let g=t.bK(h[1],h[2],o[1],o[2]),_=.5*Math.PI,v=m>=-_&&m<=_,y=g>=-_&&g<=_,b,x;if(v&&y){let e=this.center.lng*Math.PI/180,n=this.center.lat*Math.PI/180;t.bL(d,e)+t.bL(m,n)<t.bL(f,e)+t.bL(g,n)?(b=d,x=m):(b=f,x=g)}else if(v)b=d,x=m;else{if(!y)return;b=f,x=g}let S=b/Math.PI*180,C=x/Math.PI*180,w=this.center.lat;this.setCenter(new t.V(S,t.ak(C,-90,90))),this.setZoom(this.zoom+yn(w,this.center.lat))}locationToScreenPoint(e,n){let r=hn(e);if(n){let i=n.getElevationForLngLatZoom(e,this._helper._tileZoom);t.aZ(r,r,1+i/t.bC)}return this._projectSurfacePointToScreen(r)}_projectSurfacePointToScreen(e){let n=t.bD();return t.aE(n,[...e,1],this._globeViewProjMatrixNoCorrection),n[0]/=n[3],n[1]/=n[3],new t.P((.5*n[0]+.5)*this.width,(.5*-n[1]+.5)*this.height)}screenPointToMercatorCoordinate(e,n){if(n){let t=n.pointCoordinate(e);if(t)return t}return t.a6.fromLngLat(this.unprojectScreenPoint(e))}screenPointToLocation(e,t){return this.screenPointToMercatorCoordinate(e,t)?.toLngLat()}isPointOnMapSurface(e,t){let n=this._cameraPosition,r=this.getRayDirectionFromPixel(e);return!!this.rayPlanetIntersection(n,r)}getRayDirectionFromPixel(e){let n=t.bD();n[0]=e.x/this.width*2-1,n[1]=-1*(e.y/this.height*2-1),n[2]=1,n[3]=1,t.aE(n,n,this._globeViewProjMatrixNoCorrectionInverted),n[0]/=n[3],n[1]/=n[3],n[2]/=n[3];let r=t.by();r[0]=n[0]-this._cameraPosition[0],r[1]=n[1]-this._cameraPosition[1],r[2]=n[2]-this._cameraPosition[2];let i=t.by();return t.b1(i,r),i}isSurfacePointVisible(e){let t=this._cachedClippingPlane;return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]>=0}isSurfacePointOnScreen(e){if(!this.isSurfacePointVisible(e))return!1;let n=t.bD();return t.aE(n,[...e,1],this._globeViewProjMatrixNoCorrection),n[0]/=n[3],n[1]/=n[3],n[2]/=n[3],n[0]>-1&&n[0]<1&&n[1]>-1&&n[1]<1&&n[2]>-1&&n[2]<1}rayPlanetIntersection(e,n){let r=t.b3(e,n),i=t.by(),a=t.by();t.aZ(a,n,r),t.b0(i,e,a);let o=1-t.b3(i,i);if(o<0)return null;let s=t.b3(e,e)-1,c=-r+(r<0?1:-1)*Math.sqrt(o),l=s/c,u=c;return{tMin:Math.min(l,u),tMax:Math.max(l,u)}}unprojectScreenPoint(e){let n=this._cameraPosition,r=this.getRayDirectionFromPixel(e),i=this.rayPlanetIntersection(n,r);if(i){let e=t.by();t.a_(e,n,[r[0]*i.tMin,r[1]*i.tMin,r[2]*i.tMin]);let a=t.by();return t.b1(a,e),_n(a)}let a=this._cachedClippingPlane,o=a[0]*r[0]+a[1]*r[1]+a[2]*r[2],s=-t.b9(a,n)/o,c=t.by();if(s>0)t.a_(c,n,[r[0]*s,r[1]*s,r[2]*s]);else{let e=t.by();t.a_(e,n,[2*r[0],2*r[1],2*r[2]]);let i=t.b9(this._cachedClippingPlane,e);t.b0(c,e,[this._cachedClippingPlane[0]*i,this._cachedClippingPlane[1]*i,this._cachedClippingPlane[2]*i])}let l=function(e){let n=t.by();return n[0]=e[0]*-e[3],n[1]=e[1]*-e[3],n[2]=e[2]*-e[3],{center:n,radius:Math.sqrt(1-e[3]*e[3])}}(a);return _n(function(e,n,r){let i=t.by();t.b0(i,r,e);let a=t.by();return t.bw(a,e,i,n/t.b7(i)),a}(l.center,l.radius,c))}getMatrixForModel(e,n){let r=t.V.convert(e),i=1/t.bC,a=t.bh();return t.bH(a,a,r.lng/180*Math.PI),t.bf(a,a,-r.lat/180*Math.PI),t.O(a,a,[0,0,1+n/t.bC]),t.bf(a,a,.5*Math.PI),t.Q(a,a,[i,i,i]),a}getProjectionDataForCustomLayer(e=!0){let n=this.getProjectionData({overscaledTileID:new t.a2(0,0,0,0,0),applyGlobeMatrix:e});return n.tileMercatorCoords=[0,0,1,1],n}getFastPathSimpleProjectionMatrix(e){}}class An{get pixelsToClipSpaceMatrix(){return this._helper.pixelsToClipSpaceMatrix}get clipSpaceToPixelsMatrix(){return this._helper.clipSpaceToPixelsMatrix}get pixelsToGLUnits(){return this._helper.pixelsToGLUnits}get centerOffset(){return this._helper.centerOffset}get size(){return this._helper.size}get rotationMatrix(){return this._helper.rotationMatrix}get centerPoint(){return this._helper.centerPoint}get pixelsPerMeter(){return this._helper.pixelsPerMeter}setMinZoom(e){this._helper.setMinZoom(e)}setMaxZoom(e){this._helper.setMaxZoom(e)}setMinPitch(e){this._helper.setMinPitch(e)}setMaxPitch(e){this._helper.setMaxPitch(e)}setRenderWorldCopies(e){this._helper.setRenderWorldCopies(e)}setBearing(e){this._helper.setBearing(e)}setPitch(e){this._helper.setPitch(e)}setRoll(e){this._helper.setRoll(e)}setFov(e){this._helper.setFov(e)}setZoom(e){this._helper.setZoom(e)}setCenter(e){this._helper.setCenter(e)}setElevation(e){this._helper.setElevation(e)}setMinElevationForCurrentTile(e){this._helper.setMinElevationForCurrentTile(e)}setPadding(e){this._helper.setPadding(e)}interpolatePadding(e,t,n){return this._helper.interpolatePadding(e,t,n)}isPaddingEqual(e){return this._helper.isPaddingEqual(e)}resize(e,t,n=!0){this._helper.resize(e,t,n)}getMaxBounds(){return this._helper.getMaxBounds()}setMaxBounds(e){this._helper.setMaxBounds(e)}setConstrainOverride(e){this._helper.setConstrainOverride(e)}overrideNearFarZ(e,t){this._helper.overrideNearFarZ(e,t)}clearNearFarZOverride(){this._helper.clearNearFarZOverride()}getCameraQueryGeometry(e){return this._helper.getCameraQueryGeometry(this.getCameraPoint(),e)}get tileSize(){return this._helper.tileSize}get tileZoom(){return this._helper.tileZoom}get scale(){return this._helper.scale}get worldSize(){return this._helper.worldSize}get width(){return this._helper.width}get height(){return this._helper.height}get lngRange(){return this._helper.lngRange}get latRange(){return this._helper.latRange}get minZoom(){return this._helper.minZoom}get maxZoom(){return this._helper.maxZoom}get zoom(){return this._helper.zoom}get center(){return this._helper.center}get minPitch(){return this._helper.minPitch}get maxPitch(){return this._helper.maxPitch}get pitch(){return this._helper.pitch}get pitchInRadians(){return this._helper.pitchInRadians}get roll(){return this._helper.roll}get rollInRadians(){return this._helper.rollInRadians}get bearing(){return this._helper.bearing}get bearingInRadians(){return this._helper.bearingInRadians}get fov(){return this._helper.fov}get fovInRadians(){return this._helper.fovInRadians}get elevation(){return this._helper.elevation}get minElevationForCurrentTile(){return this._helper.minElevationForCurrentTile}get padding(){return this._helper.padding}get unmodified(){return this._helper.unmodified}get renderWorldCopies(){return this._helper.renderWorldCopies}get cameraToCenterDistance(){return this._helper.cameraToCenterDistance}get constrainOverride(){return this._helper.constrainOverride}get nearZ(){return this._helper.nearZ}get farZ(){return this._helper.farZ}get autoCalculateNearFarZ(){return this._helper.autoCalculateNearFarZ}get isGlobeRendering(){return this._globeness>0}setTransitionState(e,t){this._globeness=e,this._globeLatitudeErrorCorrectionRadians=t,this._calcMatrices(),this._verticalPerspectiveTransform.getCoveringTilesDetailsProvider().prepareNextFrame(),this._mercatorTransform.getCoveringTilesDetailsProvider().prepareNextFrame()}get currentTransform(){return this.isGlobeRendering?this._verticalPerspectiveTransform:this._mercatorTransform}constructor(e){this._globeLatitudeErrorCorrectionRadians=0,this._globeness=1,this.defaultConstrain=(e,t)=>this.currentTransform.defaultConstrain(e,t),this.applyConstrain=(e,t)=>this._helper.applyConstrain(e,t),this._helper=new Gt({calcMatrices:()=>{this._calcMatrices()},defaultConstrain:(e,t)=>this.defaultConstrain(e,t)},e),this._globeness=1,this._mercatorTransform=new Yt,this._verticalPerspectiveTransform=new kn}clone(){let e=new An;return e._globeness=this._globeness,e._globeLatitudeErrorCorrectionRadians=this._globeLatitudeErrorCorrectionRadians,e.apply(this,!1),e}apply(e,t){this._helper.apply(e,t),this._mercatorTransform.apply(this,!1),this._verticalPerspectiveTransform.apply(this,!1,this._globeLatitudeErrorCorrectionRadians)}get projectionMatrix(){return this.currentTransform.projectionMatrix}get modelViewProjectionMatrix(){return this.currentTransform.modelViewProjectionMatrix}get inverseProjectionMatrix(){return this.currentTransform.inverseProjectionMatrix}get cameraPosition(){return this.currentTransform.cameraPosition}getProjectionData(e){let t=this._mercatorTransform.getProjectionData(e),n=this._verticalPerspectiveTransform.getProjectionData(e);return{mainMatrix:this.isGlobeRendering?n.mainMatrix:t.mainMatrix,clippingPlane:n.clippingPlane,tileMercatorCoords:n.tileMercatorCoords,projectionTransition:e.applyGlobeMatrix?this._globeness:0,fallbackMatrix:t.fallbackMatrix}}isLocationOccluded(e){return this.currentTransform.isLocationOccluded(e)}transformLightDirection(e){return this.currentTransform.transformLightDirection(e)}getPixelScale(){return t.bs(this._mercatorTransform.getPixelScale(),this._verticalPerspectiveTransform.getPixelScale(),this._globeness)}getCircleRadiusCorrection(){return t.bs(this._mercatorTransform.getCircleRadiusCorrection(),this._verticalPerspectiveTransform.getCircleRadiusCorrection(),this._globeness)}getPitchedTextCorrection(e,n,r){let i=this._mercatorTransform.getPitchedTextCorrection(e,n,r),a=this._verticalPerspectiveTransform.getPitchedTextCorrection(e,n,r);return t.bs(i,a,this._globeness)}projectTileCoordinates(e,t,n,r){return this.currentTransform.projectTileCoordinates(e,t,n,r)}_calcMatrices(){this._helper._width&&this._helper._height&&(this._verticalPerspectiveTransform.apply(this,!1,this._globeLatitudeErrorCorrectionRadians),this._helper._nearZ=this._verticalPerspectiveTransform.nearZ,this._helper._farZ=this._verticalPerspectiveTransform.farZ,this._mercatorTransform.apply(this,!0,this.isGlobeRendering),this._helper._nearZ=this._mercatorTransform.nearZ,this._helper._farZ=this._mercatorTransform.farZ)}calculateFogMatrix(e){return this.currentTransform.calculateFogMatrix(e)}getVisibleUnwrappedCoordinates(e){return this.currentTransform.getVisibleUnwrappedCoordinates(e)}getCameraFrustum(){return this.currentTransform.getCameraFrustum()}getClippingPlane(){return this.currentTransform.getClippingPlane()}getCoveringTilesDetailsProvider(){return this.currentTransform.getCoveringTilesDetailsProvider()}recalculateZoomAndCenter(e){this._mercatorTransform.recalculateZoomAndCenter(e),this._verticalPerspectiveTransform.recalculateZoomAndCenter(e)}maxPitchScaleFactor(){return this._mercatorTransform.maxPitchScaleFactor()}getCameraPoint(){return this._helper.getCameraPoint()}getCameraAltitude(){return this._helper.getCameraAltitude()}getCameraLngLat(){return this._helper.getCameraLngLat()}lngLatToCameraDepth(e,t){return this.currentTransform.lngLatToCameraDepth(e,t)}populateCache(e){this._mercatorTransform.populateCache(e),this._verticalPerspectiveTransform.populateCache(e)}getBounds(){return this.currentTransform.getBounds()}calculateCenterFromCameraLngLatAlt(e,t,n,r){return this._helper.calculateCenterFromCameraLngLatAlt(e,t,n,r)}setLocationAtPoint(e,t){if(!this.isGlobeRendering)return this._mercatorTransform.setLocationAtPoint(e,t),void this.apply(this._mercatorTransform,!1);this._verticalPerspectiveTransform.setLocationAtPoint(e,t),this.apply(this._verticalPerspectiveTransform,!1)}locationToScreenPoint(e,t){return this.currentTransform.locationToScreenPoint(e,t)}screenPointToMercatorCoordinate(e,t){return this.currentTransform.screenPointToMercatorCoordinate(e,t)}screenPointToLocation(e,t){return this.currentTransform.screenPointToLocation(e,t)}isPointOnMapSurface(e,t){return this.currentTransform.isPointOnMapSurface(e,t)}getRayDirectionFromPixel(e){return this._verticalPerspectiveTransform.getRayDirectionFromPixel(e)}getMatrixForModel(e,t){return this.currentTransform.getMatrixForModel(e,t)}getProjectionDataForCustomLayer(e=!0){let t=this._mercatorTransform.getProjectionDataForCustomLayer(e);if(!this.isGlobeRendering)return t;let n=this._verticalPerspectiveTransform.getProjectionDataForCustomLayer(e);return n.fallbackMatrix=t.mainMatrix,n}getFastPathSimpleProjectionMatrix(e){return this.currentTransform.getFastPathSimpleProjectionMatrix(e)}}class jn{get useGlobeControls(){return!0}handlePanInertia(e,n){let r=bn(e,n);return Math.abs(r.lng-n.center.lng)>180&&(r.lng=n.center.lng+179.5*Math.sign(r.lng-n.center.lng)),{easingCenter:r,easingOffset:new t.P(0,0)}}handleMapControlsRollPitchBearingZoom(e,n){let r=e.around,i=n.screenPointToLocation(r);e.bearingDelta&&n.setBearing(n.bearing+e.bearingDelta),e.pitchDelta&&n.setPitch(n.pitch+e.pitchDelta),e.rollDelta&&n.setRoll(n.roll+e.rollDelta);let a=n.zoom;e.zoomDelta&&n.setZoom(n.zoom+e.zoomDelta);let o=n.zoom-a;if(o===0)return;let s=t.bI(n.center.lng,i.lng),c=s/(Math.abs(s/180)+1),l=t.bI(n.center.lat,i.lat),u=n.getRayDirectionFromPixel(r),d=n.cameraPosition,f=-1*t.b3(d,u),p=t.by();t.a_(p,d,[u[0]*f,u[1]*f,u[2]*f]);let m=t.b5(p)-1,h=Math.exp(.5*-Math.max(m-.3,0)),g=gn(n.worldSize,n.center.lat)/Math.min(n.width,n.height),_=t.bv(g,.9,.5,1,.25),v=(1-t.an(-o))*Math.min(h,_),y=n.center.lat,b=n.zoom,x=new t.V(n.center.lng+c*v,t.ak(n.center.lat+l*v,-t.al,t.al));n.setLocationAtPoint(i,r);let S=n.center,C=t.bv(Math.abs(s),45,85,0,1),w=t.bv(g,.75,.35,0,1),T=Math.max(C,w)**.25,E=t.bI(S.lng,x.lng),D=t.bI(S.lat,x.lat);n.setCenter(new t.V(S.lng+E*T,S.lat+D*T).wrap()),n.setZoom(b+yn(y,n.center.lat))}handleMapControlsPan(e,t,n){if(!e.panDelta)return;let r=t.center.lat,i=t.zoom;t.setCenter(bn(e.panDelta,t).wrap()),t.setZoom(i+yn(r,t.center.lat))}cameraForBoxAndBearing(e,n,r,i,a){let o=Qt(e,n,r,i,a),s=n.left/a.width*2-1,c=(a.width-n.right)/a.width*2-1,l=n.top/a.height*-2+1,u=(a.height-n.bottom)/a.height*-2+1,d=t.bI(r.getWest(),r.getEast())<0,f=d?r.getEast():r.getWest(),p=d?r.getWest():r.getEast(),m=Math.max(r.getNorth(),r.getSouth()),h=Math.min(r.getNorth(),r.getSouth()),g=f+.5*t.bI(f,p),_=m+.5*t.bI(m,h),v=a.clone();v.setCenter(o.center),v.setBearing(o.bearing),v.setPitch(0),v.setRoll(0),v.setZoom(o.zoom);let y=v.modelViewProjectionMatrix,b=[hn(r.getNorthWest()),hn(r.getNorthEast()),hn(r.getSouthWest()),hn(r.getSouthEast()),hn(new t.V(p,_)),hn(new t.V(f,_)),hn(new t.V(g,m)),hn(new t.V(g,h))],x=hn(o.center),S=1/0;for(let e of b)s<0&&(S=jn.getLesserNonNegativeNonNull(S,jn.solveVectorScale(e,x,y,`x`,s))),c>0&&(S=jn.getLesserNonNegativeNonNull(S,jn.solveVectorScale(e,x,y,`x`,c))),l>0&&(S=jn.getLesserNonNegativeNonNull(S,jn.solveVectorScale(e,x,y,`y`,l))),u<0&&(S=jn.getLesserNonNegativeNonNull(S,jn.solveVectorScale(e,x,y,`y`,u)));if(Number.isFinite(S)&&S!==0)return o.zoom=v.zoom+t.aq(S),o;Xt()}handleJumpToCenterZoom(e,n){let r=e.center.lat,i=e.applyConstrain(n.center?t.V.convert(n.center):e.center,e.zoom).center;e.setCenter(i.wrap());let a=n.zoom===void 0?e.zoom+yn(r,i.lat):+n.zoom;e.zoom!==a&&e.setZoom(a)}handleEaseTo(e,n){let r=e.zoom,i=e.center,a=e.padding,o={roll:e.roll,pitch:e.pitch,bearing:e.bearing},s={roll:n.roll===void 0?e.roll:n.roll,pitch:n.pitch===void 0?e.pitch:n.pitch,bearing:n.bearing===void 0?e.bearing:n.bearing},c=n.zoom!==void 0,l=!e.isPaddingEqual(n.padding),u=!1,d=n.center?t.V.convert(n.center):i,f=e.applyConstrain(d,r).center;Ut(e,f);let p=e.clone();p.setCenter(f),p.setZoom(c?+n.zoom:r+yn(i.lat,d.lat)),p.setBearing(n.bearing);let m=new t.P(t.ak(e.centerPoint.x+n.offsetAsPoint.x,0,e.width),t.ak(e.centerPoint.y+n.offsetAsPoint.y,0,e.height));p.setLocationAtPoint(f,m);let h=(n.offset&&n.offsetAsPoint.mag())>0?p.center:f,g=c?+n.zoom:r+yn(i.lat,h.lat),_=r+yn(i.lat,0),v=g+yn(h.lat,0),y=t.bI(i.lng,h.lng),b=t.bI(i.lat,h.lat),x=t.an(v-_);return u=g!==r,{easeFunc:r=>{if(t.bm(o,s)||Zt({startEulerAngles:o,endEulerAngles:s,tr:e,k:r,useSlerp:o.roll!=s.roll}),l&&e.interpolatePadding(a,n.padding,r),n.around)t.w(`Easing around a point is not supported under globe projection.`),e.setLocationAtPoint(n.around,n.aroundPoint);else{let t=Sn(i,y,b,r*(v>_?Math.min(2,x):Math.max(.5,x))**(1-r));e.setCenter(t.wrap())}if(u){let n=t.G.number(_,v,r)+yn(0,e.center.lat);e.setZoom(n)}},isZooming:u,elevationCenter:h}}handleFlyTo(e,n){let r=n.zoom!==void 0,i=e.center,a=e.zoom,o=e.padding,s=!e.isPaddingEqual(n.padding),c=e.applyConstrain(t.V.convert(n.center||n.locationAtOffset),a).center,l=r?+n.zoom:e.zoom+yn(e.center.lat,c.lat),u=e.clone();u.setCenter(c),u.setZoom(l),u.setBearing(n.bearing);let d=new t.P(t.ak(e.centerPoint.x+n.offsetAsPoint.x,0,e.width),t.ak(e.centerPoint.y+n.offsetAsPoint.y,0,e.height));u.setLocationAtPoint(c,d);let f=u.center;Ut(e,f);let p=function(e,n,r){let i=hn(n),a=hn(r),o=t.b3(i,a),s=Math.acos(o),c=pn(e);return s/(2*Math.PI)*c}(e,i,f),m=a+yn(i.lat,0),h=l+yn(f.lat,0),g=t.an(h-m),_;if(typeof n.minZoom==`number`){let r=+n.minZoom+yn(f.lat,0),i=Math.min(r,m,h)+yn(0,f.lat),a=e.applyConstrain(f,i).zoom+yn(f.lat,0);_=t.an(a-m)}let v=t.bI(i.lng,f.lng),y=t.bI(i.lat,f.lat);return{easeFunc:(r,a,c,u)=>{let d=Sn(i,v,y,c);s&&e.interpolatePadding(o,n.padding,r);let p=r===1?f:d;e.setCenter(p.wrap());let h=m+t.aq(a);e.setZoom(r===1?l:h+yn(0,p.lat))},scaleOfZoom:g,targetCenter:f,scaleOfMinZoom:_,pixelPathLength:p}}static solveVectorScale(e,t,n,r,i){let a=r===`x`?[n[0],n[4],n[8],n[12]]:[n[1],n[5],n[9],n[13]],o=[n[3],n[7],n[11],n[15]],s=e[0]*a[0]+e[1]*a[1]+e[2]*a[2],c=e[0]*o[0]+e[1]*o[1]+e[2]*o[2],l=t[0]*a[0]+t[1]*a[1]+t[2]*a[2],u=t[0]*o[0]+t[1]*o[1]+t[2]*o[2];return l+i*c===s+i*u||o[3]*(s-l)+a[3]*(u-c)+s*u==l*c?null:(l+a[3]-i*u-i*o[3])/(l-s-i*u+i*c)}static getLesserNonNegativeNonNull(e,t){return t!==null&&t>=0&&t<e?t:e}}class Mn{constructor(e){this._globe=e,this._mercatorCameraHelper=new $t,this._verticalPerspectiveCameraHelper=new jn}get useGlobeControls(){return this._globe.useGlobeRendering}get currentHelper(){return this.useGlobeControls?this._verticalPerspectiveCameraHelper:this._mercatorCameraHelper}handlePanInertia(e,t){return this.currentHelper.handlePanInertia(e,t)}handleMapControlsRollPitchBearingZoom(e,t){return this.currentHelper.handleMapControlsRollPitchBearingZoom(e,t)}handleMapControlsPan(e,t,n){this.currentHelper.handleMapControlsPan(e,t,n)}cameraForBoxAndBearing(e,t,n,r,i){return this.currentHelper.cameraForBoxAndBearing(e,t,n,r,i)}handleJumpToCenterZoom(e,t){this.currentHelper.handleJumpToCenterZoom(e,t)}handleEaseTo(e,t){return this.currentHelper.handleEaseTo(e,t)}handleFlyTo(e,t){return this.currentHelper.handleFlyTo(e,t)}}let Nn=(e,n)=>t.B(e,n&&n.filter((e=>e.identifier!==`source.canvas`))),Pn=t.bM();class Fn extends t.E{constructor(e,n={}){super(),this._rtlPluginLoaded=()=>{for(let e in this.tileManagers){let t=this.tileManagers[e].getSource().type;t!==`vector`&&t!==`geojson`||this.tileManagers[e].reload()}},this.map=e,this.dispatcher=new ne(j(),e._getMapId()),this.dispatcher.registerMessageHandler(`GG`,((e,t)=>this.getGlyphs(e,t))),this.dispatcher.registerMessageHandler(`GI`,((e,t)=>this.getImages(e,t))),this.dispatcher.registerMessageHandler(`GDA`,((e,t)=>this.getDashes(e,t))),this.imageManager=new g,this.imageManager.setEventedParent(this);let r=e._container?.lang||typeof document<`u`&&document.documentElement?.lang||void 0;this.glyphManager=new x(e._requestManager,n.localIdeographFontFamily,r),this.lineAtlas=new D(256,512),this.crossTileSymbolIndex=new W,this._setInitialValues(),this._resetUpdates(),this.dispatcher.broadcast(`SR`,t.bN()),De().on(we,this._rtlPluginLoaded),this.on(`data`,(e=>{if(e.dataType!==`source`||e.sourceDataType!==`metadata`)return;let t=this.tileManagers[e.sourceId];if(!t)return;let n=t.getSource();if(n&&n.vectorLayerIds)for(let e in this._layers){let t=this._layers[e];t.source===n.id&&this._validateLayer(t)}}))}_setInitialValues(){this._spritesImagesIds={},this._layers={},this._order=[],this.tileManagers={},this.zoomHistory=new t.bO,this._availableImages=[],this._globalState={},this._serializedLayers={},this.stylesheet=null,this.light=null,this.sky=null,this.projection&&(this.projection.destroy(),delete this.projection),this._loaded=!1,this._changed=!1,this._updatedLayers={},this._updatedSources={},this._changedImages={},this._glyphsDidChange=!1,this._updatedPaintProps={},this._layerOrderChanged=!1,this.crossTileSymbolIndex=new(this.crossTileSymbolIndex?.constructor||Object),this.pauseablePlacement=void 0,this.placement=void 0,this.z=0}setGlobalStateProperty(e,n){this._checkLoaded();let r=n===null?this.stylesheet.state?.[e]?.default??null:n;if(t.bP(r,this._globalState[e]))return this;this._globalState[e]=r,this._applyGlobalStateChanges([e])}getGlobalState(){return this._globalState}setGlobalState(e){this._checkLoaded();let n=[];for(let r in e)!t.bP(this._globalState[r],e[r].default)&&(n.push(r),this._globalState[r]=e[r].default);this._applyGlobalStateChanges(n)}_applyGlobalStateChanges(e){if(e.length===0)return;let t=new Set,n={};for(let r of e){n[r]=this._globalState[r];for(let e in this._layers){let n=this._layers[e],i=n.getLayoutAffectingGlobalStateRefs(),a=n.getPaintAffectingGlobalStateRefs(),o=n.getVisibilityAffectingGlobalStateRefs();if(i.has(r)&&t.add(n.source),a.has(r))for(let{name:e,value:t}of a.get(r))this._updatePaintProperty(n,e,t);o!=null&&o.has(r)&&(n.recalculateVisibility(),this._updateLayer(n))}}this.dispatcher.broadcast(`UGS`,n);for(let e in this.tileManagers)t.has(e)&&(this._reloadSource(e),this._changed=!0)}loadURL(e){return t._(this,arguments,void 0,(function*(e,n={},r){this.fire(new t.l(`dataloading`,{dataType:`style`})),n.validate=typeof n.validate!=`boolean`||n.validate;let i=yield this.map._requestManager.transformRequest(e,`Style`);this._loadStyleRequest=new AbortController;let a=this._loadStyleRequest;try{let e=yield t.j(i,this._loadStyleRequest);this._loadStyleRequest=null,this._load(e.data,n,r)}catch(e){this._loadStyleRequest=null,e&&!a.signal.aborted&&this.fire(new t.k(e))}}))}loadJSON(e,n={},r){this.fire(new t.l(`dataloading`,{dataType:`style`})),this._frameRequest=new AbortController,s.frameAsync(this._frameRequest,this.map._ownerWindow).then((()=>{this._frameRequest=null,n.validate=!1!==n.validate,this._load(e,n,r)})).catch((()=>{}))}loadEmpty(){this.fire(new t.l(`dataloading`,{dataType:`style`})),this._load(Pn,{validate:!1})}_load(e,n,r){let i=n.transformStyle?n.transformStyle(r,e):e;if(!n.validate||!Nn(this,t.C(i))){i=Object.assign({},i),this._loaded=!0,this.stylesheet=i;for(let e in i.sources)this.addSource(e,i.sources[e],{validate:!1});i.sprite?this._loadSprite(i.sprite):this.imageManager.setLoaded(!0),this.glyphManager.setURL(i.glyphs),this._createLayers(),this.light=new w(this.stylesheet.light),this._setProjectionInternal(this.stylesheet.projection?.type||`mercator`),this.sky=new E(this.stylesheet.sky),this.map.setTerrain(this.stylesheet.terrain??null),this.fire(new t.l(`data`,{dataType:`style`})),this.fire(new t.l(`style.load`))}}_createLayers(){let e=t.bQ(this.stylesheet.layers);this.setGlobalState(this.stylesheet.state??null),this.dispatcher.broadcast(`SL`,e),this._order=e.map((e=>e.id)),this._layers={},this._serializedLayers=null;for(let n of e){let e=t.bR(n,this._globalState);if(e.setEventedParent(this,{layer:{id:n.id}}),this._layers[n.id]=e,t.bS(e)&&this.tileManagers[e.source]){let t=n.paint?.[`raster-fade-duration`]??e.paint.get(`raster-fade-duration`);this.tileManagers[e.source].setRasterFadeDuration(t)}}}_loadSprite(e,n=!1,r=void 0){this.imageManager.setLoaded(!1);let i=new AbortController,a;this._spriteRequest=i,function(e,n,r,i){return t._(this,void 0,void 0,(function*(){let a=p(e),o=r>1?`@2x`:``,c={},l={};for(let{id:e,url:r}of a){let a=yield n.transformRequest(m(r,o,`.json`),`SpriteJSON`);c[e]=t.j(a,i);let s=yield n.transformRequest(m(r,o,`.png`),`SpriteImage`);l[e]=d.getImage(s,i)}return yield Promise.all([...Object.values(c),...Object.values(l)]),function(e,n){return t._(this,void 0,void 0,(function*(){let t={};for(let r in e){t[r]={};let i=s.getImageCanvasContext((yield n[r]).data),a=(yield e[r]).data;for(let e in a){let{width:n,height:o,x:s,y:c,sdf:l,pixelRatio:u,stretchX:d,stretchY:f,content:p,textFitWidth:m,textFitHeight:h}=a[e];t[r][e]={data:null,pixelRatio:u,sdf:l,stretchX:d,stretchY:f,content:p,textFitWidth:m,textFitHeight:h,spriteData:{width:n,height:o,x:s,y:c,context:i}}}}return t}))}(c,l)}))}(e,this.map._requestManager,this.map.getPixelRatio(),this._spriteRequest).then((e=>{if(this._spriteRequest=null,e)for(let t in e){this._spritesImagesIds[t]=[];let r=this._spritesImagesIds[t]?this._spritesImagesIds[t].filter((t=>!(t in e))):[];for(let e of r)this.imageManager.removeImage(e),this._changedImages[e]=!0;for(let r in e[t]){let i=t===`default`?r:`${t}:${r}`;this._spritesImagesIds[t].push(i),i in this.imageManager.images?this.imageManager.updateImage(i,e[t][r],!1):this.imageManager.addImage(i,e[t][r]),n&&(this._changedImages[i]=!0)}}})).catch((e=>{this._spriteRequest=null,a=e,i.signal.aborted||this.fire(new t.k(a))})).finally((()=>{this.imageManager.setLoaded(!0),this._availableImages=this.imageManager.listImages(),n&&(this._changed=!0),this.dispatcher.broadcast(`SI`,this._availableImages),this.fire(new t.l(`data`,{dataType:`style`})),r&&r(a)}))}_unloadSprite(){for(let e of Object.values(this._spritesImagesIds).flat())this.imageManager.removeImage(e),this._changedImages[e]=!0;this._spritesImagesIds={},this._availableImages=this.imageManager.listImages(),this._changed=!0,this.dispatcher.broadcast(`SI`,this._availableImages),this.fire(new t.l(`data`,{dataType:`style`}))}_validateLayer(e){let n=this.tileManagers[e.source];if(!n)return;let r=e.sourceLayer;if(!r)return;let i=n.getSource();(i.type===`geojson`||i.vectorLayerIds&&i.vectorLayerIds.indexOf(r)===-1)&&this.fire(new t.k(Error(`Source layer "${r}" does not exist on source "${i.id}" as specified by style layer "${e.id}".`)))}loaded(){if(!this._loaded||Object.keys(this._updatedSources).length)return!1;for(let e in this.tileManagers)if(!this.tileManagers[e].loaded())return!1;return!!this.imageManager.isLoaded()}_serializeByIds(e,n=!1){let r=this._serializedAllLayers();if(!e||e.length===0)return Object.values(n?t.bT(r):r);let i=[];for(let a of e)if(r[a]){let e=n?t.bT(r[a]):r[a];i.push(e)}return i}_serializedAllLayers(){let e=this._serializedLayers;if(e)return e;e=this._serializedLayers={};let t=Object.keys(this._layers);for(let n of t){let t=this._layers[n];t.type!==`custom`&&(e[n]=t.serialize())}return e}hasTransitions(){if(this.light?.hasTransition()||this.sky?.hasTransition()||this.projection?.hasTransition())return!0;for(let e in this.tileManagers)if(this.tileManagers[e].hasTransition())return!0;for(let e in this._layers)if(this._layers[e].hasTransition())return!0;return!1}_checkLoaded(){if(!this._loaded)throw Error(`Style is not done loading.`)}update(e){if(!this._loaded)return;let n=this._changed;if(n){let t=Object.keys(this._updatedLayers),n=Object.keys(this._removedLayers);(t.length||n.length)&&this._updateWorkerLayers(t,n);for(let e in this._updatedSources){let t=this._updatedSources[e];if(t===`reload`)this._reloadSource(e);else{if(t!==`clear`)throw Error(`Invalid action ${t}`);this._clearSource(e)}}this._updateTilesForChangedImages(),this._updateTilesForChangedGlyphs();for(let t in this._updatedPaintProps)this._layers[t].updateTransitions(e);this.light.updateTransitions(e),this.sky.updateTransitions(e),this._resetUpdates()}let r={};for(let e in this.tileManagers){let t=this.tileManagers[e];r[e]=t.used,t.used=!1}for(let t of this._order){let n=this._layers[t];n.recalculate(e,this._availableImages),!n.isHidden(e.zoom)&&n.source&&(this.tileManagers[n.source].used=!0)}for(let e in r){let n=this.tileManagers[e];!!r[e]!=!!n.used&&n.fire(new t.l(`data`,{sourceDataType:`visibility`,dataType:`source`,sourceId:e}))}this.light.recalculate(e),this.sky.recalculate(e),this.projection.recalculate(e),this.z=e.zoom,n&&this.fire(new t.l(`data`,{dataType:`style`}))}_updateTilesForChangedImages(){let e=Object.keys(this._changedImages);if(e.length){for(let t in this.tileManagers)this.tileManagers[t].reloadTilesForDependencies([`icons`,`patterns`],e);this._changedImages={}}}_updateTilesForChangedGlyphs(){if(this._glyphsDidChange){for(let e in this.tileManagers)this.tileManagers[e].reloadTilesForDependencies([`glyphs`],[``]);this._glyphsDidChange=!1}}_updateWorkerLayers(e,t){this.dispatcher.broadcast(`UL`,{layers:this._serializeByIds(e,!1),removedIds:t})}_resetUpdates(){this._changed=!1,this._updatedLayers={},this._removedLayers={},this._updatedSources={},this._updatedPaintProps={},this._changedImages={},this._glyphsDidChange=!1}setState(e,n={}){var r;this._checkLoaded();let i=this.serialize();if(e=n.transformStyle?n.transformStyle(i,e):e,((r=n.validate)==null||r)&&Nn(this,t.C(e)))return!1;(e=t.bT(e)).layers=t.bQ(e.layers);let a=t.bU(i,e),o=this._getOperationsToPerform(a);if(o.unimplemented.length>0)throw Error(`Unimplemented: ${o.unimplemented.join(`, `)}.`);if(o.operations.length===0)return!1;for(let e of o.operations)e();return this.stylesheet=e,this._serializedLayers=null,this.fire(new t.l(`style.load`,{style:this})),!0}_getOperationsToPerform(e){let t=[],n=[];for(let r of e)switch(r.command){case`setCenter`:case`setZoom`:case`setBearing`:case`setPitch`:case`setRoll`:continue;case`addLayer`:t.push((()=>this.addLayer.apply(this,r.args)));break;case`removeLayer`:t.push((()=>this.removeLayer.apply(this,r.args)));break;case`setPaintProperty`:t.push((()=>this.setPaintProperty.apply(this,r.args)));break;case`setLayoutProperty`:t.push((()=>this.setLayoutProperty.apply(this,r.args)));break;case`setFilter`:t.push((()=>this.setFilter.apply(this,r.args)));break;case`addSource`:t.push((()=>this.addSource.apply(this,r.args)));break;case`removeSource`:t.push((()=>this.removeSource.apply(this,r.args)));break;case`setLayerZoomRange`:t.push((()=>this.setLayerZoomRange.apply(this,r.args)));break;case`setLight`:t.push((()=>this.setLight.apply(this,r.args)));break;case`setGeoJSONSourceData`:t.push((()=>this.setGeoJSONSourceData.apply(this,r.args)));break;case`setGlyphs`:t.push((()=>this.setGlyphs.apply(this,r.args)));break;case`setSprite`:t.push((()=>this.setSprite.apply(this,r.args)));break;case`setTerrain`:t.push((()=>this.map.setTerrain.apply(this,r.args)));break;case`setSky`:t.push((()=>this.setSky.apply(this,r.args)));break;case`setProjection`:this.setProjection.apply(this,r.args);break;case`setGlobalState`:t.push((()=>this.setGlobalState.apply(this,r.args)));break;case`setTransition`:t.push((()=>{}));break;default:n.push(r.command)}return{operations:t,unimplemented:n}}addImage(e,n){if(this.getImage(e))return this.fire(new t.k(Error(`An image named "${e}" already exists.`)));this.imageManager.addImage(e,n),this._afterImageUpdated(e)}updateImage(e,t){this.imageManager.updateImage(e,t)}getImage(e){return this.imageManager.getImage(e)}removeImage(e){if(!this.getImage(e))return this.fire(new t.k(Error(`An image named "${e}" does not exist.`)));this.imageManager.removeImage(e),this._afterImageUpdated(e)}_afterImageUpdated(e){this._availableImages=this.imageManager.listImages(),this._changedImages[e]=!0,this._changed=!0,this.dispatcher.broadcast(`SI`,this._availableImages),this.fire(new t.l(`data`,{dataType:`style`}))}listImages(){return this._checkLoaded(),this.imageManager.listImages()}addSource(e,n,r={}){if(this._checkLoaded(),this.tileManagers[e]!==void 0)throw Error(`Source "${e}" already exists.`);if(!n.type)throw Error(`The type property must be defined, but only the following properties were given: ${Object.keys(n).join(`, `)}.`);if([`vector`,`raster`,`geojson`,`video`,`image`].indexOf(n.type)>=0&&this._validate(t.C.source,`sources.${e}`,n,null,r))return;this.map&&this.map._collectResourceTiming&&(n.collectResourceTiming=!0);let i=this.tileManagers[e]=new L(e,n,this.dispatcher);i.style=this,i.setEventedParent(this,(()=>({isSourceLoaded:i.loaded(),source:i.serialize(),sourceId:e}))),i.onAdd(this.map),this._changed=!0}removeSource(e){if(this._checkLoaded(),this.tileManagers[e]===void 0)throw Error(`There is no source with this ID=${e}`);for(let n in this._layers)if(this._layers[n].source===e)return this.fire(new t.k(Error(`Source "${e}" cannot be removed while layer "${n}" is using it.`)));let n=this.tileManagers[e];delete this.tileManagers[e],delete this._updatedSources[e],n.fire(new t.l(`data`,{sourceDataType:`metadata`,dataType:`source`,sourceId:e})),n.setEventedParent(null),n.onRemove(this.map),this._changed=!0}setGeoJSONSourceData(e,t){if(this._checkLoaded(),this.tileManagers[e]===void 0)throw Error(`There is no source with this ID=${e}`);let n=this.tileManagers[e].getSource();if(n.type!==`geojson`)throw Error(`geojsonSource.type is ${n.type}, which is !== 'geojson`);n.setData(t),this._changed=!0}getSource(e){return this.tileManagers[e]&&this.tileManagers[e].getSource()}addLayer(e,n,r={}){this._checkLoaded();let i=e.id;if(this.getLayer(i))return void this.fire(new t.k(Error(`Layer "${i}" already exists on this map.`)));let a;if(e.type===`custom`){if(Nn(this,t.bV(e)))return;a=t.bR(e,this._globalState)}else{if(`source`in e&&typeof e.source==`object`&&(this.addSource(i,e.source),e=t.bT(e),e=t.e(e,{source:i})),this._validate(t.C.layer,`layers.${i}`,e,{arrayIndex:-1},r))return;a=t.bR(e,this._globalState),this._validateLayer(a),a.setEventedParent(this,{layer:{id:i}})}let o=n?this._order.indexOf(n):this._order.length;if(n&&o===-1)this.fire(new t.k(Error(`Cannot add layer "${i}" before non-existing layer "${n}".`)));else{if(this._order.splice(o,0,i),this._layerOrderChanged=!0,this._layers[i]=a,this._removedLayers[i]&&a.source&&a.type!==`custom`){let e=this._removedLayers[i];delete this._removedLayers[i],e.type===a.type?(this._updatedSources[a.source]=`reload`,this.tileManagers[a.source].pause()):this._updatedSources[a.source]=`clear`}this._updateLayer(a),a.onAdd&&a.onAdd(this.map)}}moveLayer(e,n){if(this._checkLoaded(),this._changed=!0,!this._layers[e])return void this.fire(new t.k(Error(`The layer '${e}' does not exist in the map's style and cannot be moved.`)));if(e===n)return;let r=this._order.indexOf(e);this._order.splice(r,1);let i=n?this._order.indexOf(n):this._order.length;n&&i===-1?this.fire(new t.k(Error(`Cannot move layer "${e}" before non-existing layer "${n}".`))):(this._order.splice(i,0,e),this._layerOrderChanged=!0)}removeLayer(e){this._checkLoaded();let n=this._layers[e];if(!n)return void this.fire(new t.k(Error(`Cannot remove non-existing layer "${e}".`)));n.setEventedParent(null);let r=this._order.indexOf(e);this._order.splice(r,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[e]=n,delete this._layers[e],this._serializedLayers&&delete this._serializedLayers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e],n.onRemove&&n.onRemove(this.map)}getLayer(e){return this._layers[e]}getLayersOrder(){return[...this._order]}hasLayer(e){return e in this._layers}setLayerZoomRange(e,n,r){this._checkLoaded();let i=this.getLayer(e);i?i.minzoom===n&&i.maxzoom===r||(n!=null&&(i.minzoom=n),r!=null&&(i.maxzoom=r),this._updateLayer(i)):this.fire(new t.k(Error(`Cannot set the zoom range of non-existing layer "${e}".`)))}setFilter(e,n,r={}){this._checkLoaded();let i=this.getLayer(e);if(i){if(!t.bP(i.filter,n))return n==null?(i.setFilter(void 0),void this._updateLayer(i)):void(this._validate(t.C.filter,`layers.${i.id}.filter`,n,null,r)||(i.setFilter(t.bT(n)),this._updateLayer(i)))}else this.fire(new t.k(Error(`Cannot filter non-existing layer "${e}".`)))}getFilter(e){return t.bT(this.getLayer(e).filter)}setLayoutProperty(e,n,r,i={}){this._checkLoaded();let a=this.getLayer(e);a?t.bP(a.getLayoutProperty(n),r)||(a.setLayoutProperty(n,r,i),this._updateLayer(a)):this.fire(new t.k(Error(`Cannot style non-existing layer "${e}".`)))}getLayoutProperty(e,n){let r=this.getLayer(e);if(r)return r.getLayoutProperty(n);this.fire(new t.k(Error(`Cannot get style of non-existing layer "${e}".`)))}setPaintProperty(e,n,r,i={}){this._checkLoaded();let a=this.getLayer(e);a?t.bP(a.getPaintProperty(n),r)||this._updatePaintProperty(a,n,r,i):this.fire(new t.k(Error(`Cannot style non-existing layer "${e}".`)))}_updatePaintProperty(e,n,r,i={}){e.setPaintProperty(n,r,i)&&this._updateLayer(e),t.bS(e)&&n===`raster-fade-duration`&&this.tileManagers[e.source].setRasterFadeDuration(r),this._changed=!0,this._updatedPaintProps[e.id]=!0,this._serializedLayers=null}getPaintProperty(e,t){return this.getLayer(e).getPaintProperty(t)}setFeatureState(e,n){this._checkLoaded();let r=e.source,i=e.sourceLayer,a=this.tileManagers[r];if(a===void 0)return void this.fire(new t.k(Error(`The source '${r}' does not exist in the map's style.`)));let o=a.getSource().type;o===`geojson`&&i?this.fire(new t.k(Error(`GeoJSON sources cannot have a sourceLayer parameter.`))):o!==`vector`||i?(e.id===void 0&&this.fire(new t.k(Error(`The feature id parameter must be provided.`))),a.setFeatureState(i,e.id,n)):this.fire(new t.k(Error(`The sourceLayer parameter must be provided for vector source types.`)))}removeFeatureState(e,n){this._checkLoaded();let r=e.source,i=this.tileManagers[r];if(i===void 0)return void this.fire(new t.k(Error(`The source '${r}' does not exist in the map's style.`)));let a=i.getSource().type,o=a===`vector`?e.sourceLayer:void 0;a!==`vector`||o?n&&typeof e.id!=`string`&&typeof e.id!=`number`?this.fire(new t.k(Error(`A feature id is required to remove its specific state property.`))):i.removeFeatureState(o,e.id,n):this.fire(new t.k(Error(`The sourceLayer parameter must be provided for vector source types.`)))}getFeatureState(e){this._checkLoaded();let n=e.source,r=e.sourceLayer,i=this.tileManagers[n];if(i!==void 0)return i.getSource().type!==`vector`||r?(e.id===void 0&&this.fire(new t.k(Error(`The feature id parameter must be provided.`))),i.getFeatureState(r,e.id)):void this.fire(new t.k(Error(`The sourceLayer parameter must be provided for vector source types.`)));this.fire(new t.k(Error(`The source '${n}' does not exist in the map's style.`)))}getTransition(){return t.e({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)}serialize(){if(!this._loaded)return;let e=t.bW(this.tileManagers,(e=>e.serialize())),n=this._serializeByIds(this._order,!0),r=this.map.getTerrain()||void 0,i=this.stylesheet;return t.bX({version:i.version,name:i.name,metadata:i.metadata,light:i.light,sky:i.sky,center:i.center,zoom:i.zoom,bearing:i.bearing,pitch:i.pitch,sprite:i.sprite,glyphs:i.glyphs,transition:i.transition,projection:i.projection,sources:e,layers:n,terrain:r},(e=>e!==void 0))}_updateLayer(e){this._updatedLayers[e.id]=!0,e.source&&!this._updatedSources[e.source]&&this.tileManagers[e.source].getSource().type!==`raster`&&(this._updatedSources[e.source]=`reload`,this.tileManagers[e.source].pause()),this._serializedLayers=null,this._changed=!0}_flattenAndSortRenderedFeatures(e){let t=e=>this._layers[e].type===`fill-extrusion`,n={},r=[];for(let i=this._order.length-1;i>=0;i--){let a=this._order[i];if(t(a)){n[a]=i;for(let t of e){let e=t[a];if(e)for(let t of e)r.push(t)}}}r.sort(((e,t)=>t.intersectionZ-e.intersectionZ));let i=[];for(let a=this._order.length-1;a>=0;a--){let o=this._order[a];if(t(o))for(let e=r.length-1;e>=0;e--){let t=r[e].feature;if(n[t.layer.id]<a)break;i.push(t),r.pop()}else for(let t of e){let e=t[o];if(e)for(let t of e)i.push(t.feature)}}return i}queryRenderedFeatures(e,n,r){n&&n.filter&&this._validate(t.C.filter,`queryRenderedFeatures.filter`,n.filter,null,n);let i={};if(n&&n.layers){if(!(Array.isArray(n.layers)||n.layers instanceof Set))return this.fire(new t.k(Error(`parameters.layers must be an Array or a Set of strings`))),[];for(let e of n.layers){let n=this._layers[e];if(!n)return this.fire(new t.k(Error(`The layer '${e}' does not exist in the map's style and cannot be queried for features.`))),[];i[n.source]=!0}}let a=[];n.availableImages=this._availableImages;let o=this._serializedAllLayers(),s=n.layers instanceof Set?n.layers:Array.isArray(n.layers)?new Set(n.layers):null,c=Object.assign(Object.assign({},n),{layers:s,globalState:this._globalState});for(let t in this.tileManagers)n.layers&&!i[t]||a.push(M(this.tileManagers[t],this._layers,o,e,c,r,this.map.terrain?(e,t,n)=>this.map.terrain.getElevation(e,t,n):void 0));return this.placement&&a.push(function(e,t,n,r,i,a,o){let s={},c=a.queryRenderedSymbols(r),l=[];for(let e of Object.keys(c).map(Number))l.push(o[e]);l.sort(ae);for(let n of l){let r=n.featureIndex.lookupSymbolFeatures(c[n.bucketInstanceId],t,n.bucketIndex,n.sourceLayerIndex,{filterSpec:i.filter,globalState:i.globalState},i.layers,i.availableImages,e);for(let e in r){let t=s[e]=s[e]||[],i=r[e];i.sort(((e,t)=>{let r=n.featureSortOrder;if(r){let n=r.indexOf(e.featureIndex);return r.indexOf(t.featureIndex)-n}return t.featureIndex-e.featureIndex}));for(let e of i)t.push(e)}}return function(e,t,n){for(let r in e)for(let i of e[r])oe(i,n[t[r].source]);return e}(s,e,n)}(this._layers,o,this.tileManagers,e,c,this.placement.collisionIndex,this.placement.retainedQueryData)),this._flattenAndSortRenderedFeatures(a)}querySourceFeatures(e,n){n!=null&&n.filter&&this._validate(t.C.filter,`querySourceFeatures.filter`,n.filter,null,n);let r=this.tileManagers[e];return r?function(e,t){let n=e.getRenderableIds().map((t=>e.getTileByID(t))),r=[],i={};for(let e=0;e<n.length;e++){let a=n[e],o=a.tileID.canonical.key;i[o]||(i[o]=!0,a.querySourceFeatures(r,t))}return r}(r,n?Object.assign(Object.assign({},n),{globalState:this._globalState}):{globalState:this._globalState}):[]}getLight(){return this.light.getLight()}setLight(e,n={}){this._checkLoaded();let r=this.light.getLight(),i=!1;for(let n in e)if(!t.bP(e[n],r[n])){i=!0;break}if(!i)return;let a={now:l(),transition:t.e({duration:300,delay:0},this.stylesheet.transition)};this.light.setLight(e,n),this.light.updateTransitions(a)}getProjection(){return this.stylesheet?.projection}setProjection(e){if(this._checkLoaded(),this.stylesheet.projection=e,this.projection){if(this.projection.name===e.type)return;this.projection.destroy(),delete this.projection}this._setProjectionInternal(e.type)}getSky(){return this.stylesheet?.sky}setSky(e,n={}){this._checkLoaded();let r=this.getSky(),i=!1;if(!e&&!r)return;if(e&&!r)i=!0;else if(!e&&r)i=!0;else for(let n in e)if(!t.bP(e[n],r[n])){i=!0;break}if(!i)return;let a={now:l(),transition:t.e({duration:300,delay:0},this.stylesheet.transition)};this.stylesheet.sky=e,this.sky.setSky(e,n),this.sky.updateTransitions(a)}_setProjectionInternal(e){let n=function(e,n){let r={constrainOverride:n};if(Array.isArray(e)){let t=new fn({type:e});return{projection:t,transform:new An(r),cameraHelper:new Mn(t)}}switch(e){case`mercator`:return{projection:new Vt,transform:new Yt(r),cameraHelper:new $t};case`globe`:{let e=new fn({type:[`interpolate`,[`linear`],[`zoom`],11,`vertical-perspective`,12,`mercator`]});return{projection:e,transform:new An(r),cameraHelper:new Mn(e)}}case`vertical-perspective`:return{projection:new un,transform:new kn(r),cameraHelper:new jn};default:return t.w(`Unknown projection name: ${e}. Falling back to mercator projection.`),{projection:new Vt,transform:new Yt(r),cameraHelper:new $t}}}(e,this.map.transformConstrain);this.projection=n.projection,this.map.migrateProjection(n.transform,n.cameraHelper);for(let e in this.tileManagers)this.tileManagers[e].reload()}_validate(e,n,r,i,a={}){return(!a||!1!==a.validate)&&Nn(this,e.call(t.C,t.e({key:n,style:this.serialize(),value:r,styleSpec:t.u},i)))}_remove(e=!0){this._frameRequest&&=(this._frameRequest.abort(),null),this._loadStyleRequest&&=(this._loadStyleRequest.abort(),null),this._spriteRequest&&=(this._spriteRequest.abort(),null),De().off(we,this._rtlPluginLoaded);for(let e in this._layers)this._layers[e].setEventedParent(null);for(let e in this.tileManagers){let t=this.tileManagers[e];t.setEventedParent(null),t.onRemove(this.map)}this.imageManager.setEventedParent(null),this.setEventedParent(null),e&&this.dispatcher.broadcast(`RM`,void 0),this.dispatcher.remove(e)}_clearSource(e){this.tileManagers[e].clearTiles()}_reloadSource(e){this.tileManagers[e].resume(),this.tileManagers[e].reload()}_updateSources(e){for(let t in this.tileManagers)this.tileManagers[t].update(e,this.map.terrain)}_generateCollisionBoxes(){for(let e in this.tileManagers)this._reloadSource(e)}_updatePlacement(e,t,n,r,i=!1){let a=!1,o=!1,s={};for(let t of this._order){let n=this._layers[t];if(n.type!==`symbol`)continue;if(!s[n.source]){let e=this.tileManagers[n.source];s[n.source]=e.getRenderableIds(!0).map((t=>e.getTileByID(t))).sort(((e,t)=>t.tileID.overscaledZ-e.tileID.overscaledZ||(e.tileID.isLessThan(t.tileID)?-1:1)))}let r=this.crossTileSymbolIndex.addLayer(n,s[n.source],e.center.lng);a||=r}if(this.crossTileSymbolIndex.pruneUnusedLayers(this._order),((i=i||this._layerOrderChanged||n===0)||!this.pauseablePlacement||this.pauseablePlacement.isDone()&&!this.placement.stillRecent(l(),e.zoom))&&(this.pauseablePlacement=new At(e,this.map.terrain,this._order,i,t,n,r,this.placement),this._layerOrderChanged=!1),this.pauseablePlacement.isDone()?this.placement.setStale():(this.pauseablePlacement.continuePlacement(this._order,this._layers,s),this.pauseablePlacement.isDone()&&(this.placement=this.pauseablePlacement.commit(l()),o=!0),a&&this.pauseablePlacement.placement.setStale()),o||a)for(let e of this._order){let t=this._layers[e];t.type===`symbol`&&this.placement.updateLayerOpacities(t,s[t.source])}return!this.pauseablePlacement.isDone()||this.placement.hasTransitions(l())}_releaseSymbolFadeTiles(){for(let e in this.tileManagers)this.tileManagers[e].releaseSymbolFadeTiles()}getImages(e,n){return t._(this,void 0,void 0,(function*(){let e=yield this.imageManager.getImages(n.icons);this._updateTilesForChangedImages();let t=this.tileManagers[n.source];return t&&t.setDependencies(n.tileID.key,n.type,n.icons),e}))}getGlyphs(e,n){return t._(this,void 0,void 0,(function*(){let e=yield this.glyphManager.getGlyphs(n.stacks),t=this.tileManagers[n.source];return t&&t.setDependencies(n.tileID.key,n.type,[``]),e}))}getGlyphsUrl(){return this.stylesheet.glyphs||null}setGlyphs(e,n={}){this._checkLoaded(),e&&this._validate(t.C.glyphs,`glyphs`,e,null,n)||(this._glyphsDidChange=!0,this.stylesheet.glyphs=e,this.glyphManager.entries={},this.glyphManager.setURL(e))}getDashes(e,n){return t._(this,void 0,void 0,(function*(){let e={};for(let[t,r]of Object.entries(n.dashes))e[t]=this.lineAtlas.getDash(r.dasharray,r.round);return e}))}addSprite(e,n,r={},i){this._checkLoaded();let a=[{id:e,url:n}],o=[...p(this.stylesheet.sprite),...a];this._validate(t.C.sprite,`sprite`,o,null,r)||(this.stylesheet.sprite=o,this._loadSprite(a,!0,i))}removeSprite(e){this._checkLoaded();let n=p(this.stylesheet.sprite);if(n.find((t=>t.id===e))){if(this._spritesImagesIds[e])for(let t of this._spritesImagesIds[e])this.imageManager.removeImage(t),this._changedImages[t]=!0;n.splice(n.findIndex((t=>t.id===e)),1),this.stylesheet.sprite=n.length>0?n:void 0,delete this._spritesImagesIds[e],this._availableImages=this.imageManager.listImages(),this._changed=!0,this.dispatcher.broadcast(`SI`,this._availableImages),this.fire(new t.l(`data`,{dataType:`style`}))}else this.fire(new t.k(Error(`Sprite "${e}" doesn't exists on this map.`)))}getSprite(){return p(this.stylesheet.sprite)}setSprite(e,n={},r){this._checkLoaded(),e&&this._validate(t.C.sprite,`sprite`,e,null,n)||(this.stylesheet.sprite=e,e?this._loadSprite(e,!0,r):(this._unloadSprite(),r&&r(null)))}destroy(){this._frameRequest&&=(this._frameRequest.abort(),null),this._loadStyleRequest&&=(this._loadStyleRequest.abort(),null),this._spriteRequest&&=(this._spriteRequest.abort(),null);for(let e in this.tileManagers){let t=this.tileManagers[e];t.setEventedParent(null),t.onRemove(this.map)}this.tileManagers={},this.imageManager&&(this.imageManager.setEventedParent(null),this.imageManager.destroy(),this._availableImages=[],this._spritesImagesIds={}),this.glyphManager&&this.glyphManager.destroy();for(let e in this._layers){let t=this._layers[e];t.setEventedParent(null),t.onRemove&&t.onRemove(this.map)}this._setInitialValues(),this.setEventedParent(null),this.dispatcher.unregisterMessageHandler(`GG`),this.dispatcher.unregisterMessageHandler(`GI`),this.dispatcher.unregisterMessageHandler(`GDA`),this.dispatcher.remove(!0),this._listeners={},this._oneTimeListeners={}}}var In=t.aS([{name:`a_pos`,type:`Int16`,components:2},{name:`a_texture_pos`,type:`Int16`,components:2}]);class Ln{constructor(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null}bind(e,t,n,r,i,a,o,s,c){this.context=e;let l=this.boundPaintVertexBuffers.length!==r.length;for(let e=0;!l&&e<r.length;e++)this.boundPaintVertexBuffers[e]!==r[e]&&(l=!0);!this.vao||this.boundProgram!==t||this.boundLayoutVertexBuffer!==n||l||this.boundIndexBuffer!==i||this.boundVertexOffset!==a||this.boundDynamicVertexBuffer!==o||this.boundDynamicVertexBuffer2!==s||this.boundDynamicVertexBuffer3!==c?this.freshBind(t,n,r,i,a,o,s,c):(e.bindVertexArray.set(this.vao),o&&o.bind(),i&&i.dynamicDraw&&i.bind(),s&&s.bind(),c&&c.bind())}freshBind(e,t,n,r,i,a,o,s){let c=e.numAttributes,l=this.context,u=l.gl;this.vao&&this.destroy(),this.vao=l.createVertexArray(),l.bindVertexArray.set(this.vao),this.boundProgram=e,this.boundLayoutVertexBuffer=t,this.boundPaintVertexBuffers=n,this.boundIndexBuffer=r,this.boundVertexOffset=i,this.boundDynamicVertexBuffer=a,this.boundDynamicVertexBuffer2=o,this.boundDynamicVertexBuffer3=s,t.enableAttributes(u,e);for(let t of n)t.enableAttributes(u,e);a&&a.enableAttributes(u,e),o&&o.enableAttributes(u,e),s&&s.enableAttributes(u,e),t.bind(),t.setVertexAttribPointers(u,e,i);for(let t of n)t.bind(),t.setVertexAttribPointers(u,e,i);a&&(a.bind(),a.setVertexAttribPointers(u,e,i)),r&&r.bind(),o&&(o.bind(),o.setVertexAttribPointers(u,e,i)),s&&(s.bind(),s.setVertexAttribPointers(u,e,i)),l.currentNumAttributes=c}destroy(){this.vao&&=(this.context.deleteVertexArray(this.vao),null)}}let Rn=(e,n,r,i,a)=>({u_texture:0,u_ele_delta:e,u_fog_matrix:n,u_fog_color:r?r.properties.get(`fog-color`):t.bn.white,u_fog_ground_blend:r?r.properties.get(`fog-ground-blend`):1,u_fog_ground_blend_opacity:a?0:r?r.calculateFogBlendOpacity(i):0,u_horizon_color:r?r.properties.get(`horizon-color`):t.bn.white,u_horizon_fog_blend:r?r.properties.get(`horizon-fog-blend`):1,u_is_globe_mode:+!!a}),zn={mainMatrix:`u_projection_matrix`,tileMercatorCoords:`u_projection_tile_mercator_coords`,clippingPlane:`u_projection_clipping_plane`,projectionTransition:`u_projection_transition`,fallbackMatrix:`u_projection_fallback_matrix`};function Bn(e){let t=[];for(let n=0;n<e.length;n++){if(e[n]===null)continue;let r=e[n].split(` `);t.push(r.pop())}return t}class Vn{constructor(e,n,r,i,a,o,s,c,l=[]){let u=e.gl;this.program=u.createProgram();let d=Bn(n.staticAttributes),f=r?r.getBinderAttributes():[],p=d.concat(f),m=It.prelude.staticUniforms?Bn(It.prelude.staticUniforms):[],h=s.staticUniforms?Bn(s.staticUniforms):[],g=n.staticUniforms?Bn(n.staticUniforms):[],_=r?r.getBinderUniforms():[],v=m.concat(h).concat(g).concat(_),y=[];for(let e of v)y.indexOf(e)<0&&y.push(e);let b=r?r.defines():[];an(u)&&b.unshift(`#version 300 es`),a&&b.push(`#define OVERDRAW_INSPECTOR;`),o&&b.push(`#define TERRAIN3D;`),c&&b.push(c),l&&b.push(...l);let x=b.concat(It.prelude.fragmentSource,s.fragmentSource,n.fragmentSource).join(`
755
755
  `),S=b.concat(It.prelude.vertexSource,s.vertexSource,n.vertexSource).join(`
756
- `);an(u)||(x=function(e){return e.replace(/\bin\s/g,`varying `).replace(`out highp vec4 fragColor;`,``).replace(/fragColor/g,`gl_FragColor`).replace(/texture\(/g,`texture2D(`)}(x),S=function(e){return e.replace(/\bin\s/g,`attribute `).replace(/\bout\s/g,`varying `).replace(/texture\(/g,`texture2D(`)}(S));let C=u.createShader(u.FRAGMENT_SHADER);if(u.isContextLost())return void(this.failedToCreate=!0);if(u.shaderSource(C,x),u.compileShader(C),!u.getShaderParameter(C,u.COMPILE_STATUS))throw Error(`Could not compile fragment shader: ${u.getShaderInfoLog(C)}`);u.attachShader(this.program,C);let w=u.createShader(u.VERTEX_SHADER);if(u.isContextLost())return void(this.failedToCreate=!0);if(u.shaderSource(w,S),u.compileShader(w),!u.getShaderParameter(w,u.COMPILE_STATUS))throw Error(`Could not compile vertex shader: ${u.getShaderInfoLog(w)}`);u.attachShader(this.program,w),this.attributes={};let T={};this.numAttributes=p.length;for(let e=0;e<this.numAttributes;e++)p[e]&&(u.bindAttribLocation(this.program,e,p[e]),this.attributes[p[e]]=e);if(u.linkProgram(this.program),!u.getProgramParameter(this.program,u.LINK_STATUS))throw Error(`Program failed to link: ${u.getProgramInfoLog(this.program)}`);u.deleteShader(w),u.deleteShader(C);for(let e=0;e<y.length;e++){let t=y[e];if(t&&!T[t]){let e=u.getUniformLocation(this.program,t);e&&(T[t]=e)}}this.fixedUniforms=i(e,T),this.terrainUniforms=((e,n)=>({u_depth:new t.bY(e,n.u_depth),u_terrain:new t.bY(e,n.u_terrain),u_terrain_dim:new t.bo(e,n.u_terrain_dim),u_terrain_matrix:new t.b_(e,n.u_terrain_matrix),u_terrain_unpack:new t.b$(e,n.u_terrain_unpack),u_terrain_exaggeration:new t.bo(e,n.u_terrain_exaggeration)}))(e,T),this.projectionUniforms=((e,n)=>({u_projection_matrix:new t.b_(e,n.u_projection_matrix),u_projection_tile_mercator_coords:new t.b$(e,n.u_projection_tile_mercator_coords),u_projection_clipping_plane:new t.b$(e,n.u_projection_clipping_plane),u_projection_transition:new t.bo(e,n.u_projection_transition),u_projection_fallback_matrix:new t.b_(e,n.u_projection_fallback_matrix)}))(e,T),this.binderUniforms=r?r.getUniforms(e,T):[]}draw(e,t,n,r,i,a,o,s,c,l,u,d,f,p,m,h,g,_,v){let y=e.gl;if(this.failedToCreate)return;if(e.program.set(this.program),e.setDepthMode(n),e.setStencilMode(r),e.setColorMode(i),e.setCullFace(a),s){e.activeTexture.set(y.TEXTURE2),y.bindTexture(y.TEXTURE_2D,s.depthTexture),e.activeTexture.set(y.TEXTURE3),y.bindTexture(y.TEXTURE_2D,s.texture);for(let e in this.terrainUniforms)this.terrainUniforms[e].set(s[e])}if(c)for(let e in c)this.projectionUniforms[zn[e]].set(c[e]);if(o)for(let e in this.fixedUniforms)this.fixedUniforms[e].set(o[e]);h&&h.setUniforms(e,this.binderUniforms,p,{zoom:m});let b=0;switch(t){case y.LINES:b=2;break;case y.TRIANGLES:b=3;break;case y.LINE_STRIP:b=1}for(let n of f.get()){let r=n.vaos||={};(r[l]||(r[l]=new Ln)).bind(e,this,u,h?h.getPaintVertexBuffers():[],d,n.vertexOffset,g,_,v),y.drawElements(t,n.primitiveLength*b,y.UNSIGNED_SHORT,n.primitiveOffset*b*2)}}}function Hn(e,n,r){let i=1/t.aK(r,1,n.transform.tileZoom),a=2**r.tileID.overscaledZ,o=r.tileSize*2**n.transform.tileZoom/a,s=o*(r.tileID.canonical.x+r.tileID.wrap*a),c=o*r.tileID.canonical.y;return{u_image:0,u_texsize:r.imageAtlasTexture.size,u_scale:[i,e.fromScale,e.toScale],u_fade:e.t,u_pixel_coord_upper:[s>>16,c>>16],u_pixel_coord_lower:[65535&s,65535&c]}}let Un=(e,n,r,i)=>{let a=e.style.light,o=a.properties.get(`position`),s=[o.x,o.y,o.z],c=t.c2();a.properties.get(`anchor`)===`viewport`&&t.c3(c,e.transform.bearingInRadians),t.c4(s,s,c);let l=e.transform.transformLightDirection(s),u=a.properties.get(`color`);return{u_lightpos:s,u_lightpos_globe:l,u_lightintensity:a.properties.get(`intensity`),u_lightcolor:[u.r,u.g,u.b],u_vertical_gradient:+n,u_opacity:r,u_fill_translate:i}},Wn=(e,n,r,i,a,o,s)=>t.e(Un(e,n,r,i),Hn(o,e,s),{u_height_factor:-(2**a.overscaledZ)/s.tileSize/8}),Gn=(e,n,r,i)=>t.e(Hn(n,e,r),{u_fill_translate:i}),Kn=(e,t)=>({u_world:e,u_fill_translate:t}),qn=(e,n,r,i,a)=>t.e(Gn(e,n,r,a),{u_world:i}),Jn=(e,n,r,i,a)=>{let o=e.transform,s,c,l=0;if(r.paint.get(`circle-pitch-alignment`)===`map`){let e=t.aK(n,1,o.zoom);s=!0,c=[e,e],l=e/(t.a5*2**n.tileID.overscaledZ)*2*Math.PI*a}else s=!1,c=o.pixelsToGLUnits;return{u_camera_to_center_distance:o.cameraToCenterDistance,u_scale_with_map:+(r.paint.get(`circle-pitch-scale`)===`map`),u_pitch_with_map:+s,u_device_pixel_ratio:e.pixelRatio,u_extrude_scale:c,u_globe_extrude_scale:l,u_translate:i}},Yn=e=>({u_pixel_extrude_scale:[1/e.width,1/e.height]}),Xn=e=>({u_viewport_size:[e.width,e.height]}),Zn=(e,t=1)=>({u_color:e,u_overlay:0,u_overlay_scale:t}),Qn=(e,n,r,i)=>{let a=t.aK(e,1,n)/(t.a5*2**e.tileID.overscaledZ)*2*Math.PI*i;return{u_extrude_scale:t.aK(e,1,n),u_intensity:r,u_globe_extrude_scale:a}},$n=(e,n,r,i)=>{let a=t.N();t.c5(a,0,e.width,e.height,0,0,1);let o=e.context.gl;return{u_matrix:a,u_world:[o.drawingBufferWidth,o.drawingBufferHeight],u_image:r,u_color_ramp:i,u_opacity:n.paint.get(`heatmap-opacity`)}},er=(e,t,n)=>{let r=n.paint.get(`hillshade-accent-color`),i;switch(n.paint.get(`hillshade-method`)){case`basic`:i=4;break;case`combined`:i=1;break;case`igor`:i=2;break;case`multidirectional`:i=3;break;default:i=0}let a=n.getIlluminationProperties();for(let t=0;t<a.directionRadians.length;t++)n.paint.get(`hillshade-illumination-anchor`)===`viewport`&&(a.directionRadians[t]+=e.transform.bearingInRadians);return{u_image:0,u_latrange:nr(0,t.tileID),u_exaggeration:n.paint.get(`hillshade-exaggeration`),u_altitudes:a.altitudeRadians,u_azimuths:a.directionRadians,u_accent:r,u_method:i,u_highlights:a.highlightColor,u_shadows:a.shadowColor}},tr=(e,n)=>{let r=n.stride,i=t.N();return t.c5(i,0,t.a5,-t.a5,0,0,1),t.O(i,i,[0,-t.a5,0]),{u_matrix:i,u_image:1,u_dimension:[r,r],u_zoom:e.overscaledZ,u_unpack:n.getUnpackVector()}};function nr(e,n){let r=2**n.canonical.z,i=n.canonical.y;return[new t.a6(0,i/r).toLngLat().lat,new t.a6(0,(i+1)/r).toLngLat().lat]}let rr=(e,t,n=0)=>({u_image:0,u_unpack:t.getUnpackVector(),u_dimension:[t.stride,t.stride],u_elevation_stops:1,u_color_stops:4,u_color_ramp_size:n,u_opacity:e.paint.get(`color-relief-opacity`)}),ir=(e,n,r,i)=>{let a=e.transform;return{u_translation:ur(e,n,r),u_ratio:i/t.aK(n,1,a.zoom),u_device_pixel_ratio:e.pixelRatio,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},ar=(e,n,r,i,a)=>t.e(ir(e,n,r,i),{u_image:0,u_image_height:a}),or=(e,n,r,i,a)=>{let o=e.transform,s=lr(n,o);return{u_translation:ur(e,n,r),u_texsize:n.imageAtlasTexture.size,u_ratio:i/t.aK(n,1,o.zoom),u_device_pixel_ratio:e.pixelRatio,u_image:0,u_scale:[s,a.fromScale,a.toScale],u_fade:a.t,u_units_to_pixels:[1/o.pixelsToGLUnits[0],1/o.pixelsToGLUnits[1]]}},sr=(e,n,r,i,a)=>{let o=lr(n,e.transform);return t.e(ir(e,n,r,i),{u_tileratio:o,u_crossfade_from:a.fromScale,u_crossfade_to:a.toScale,u_image:0,u_mix:a.t,u_lineatlas_width:e.lineAtlas.width,u_lineatlas_height:e.lineAtlas.height})},cr=(e,n,r,i,a,o)=>{let s=lr(n,e.transform);return t.e(ir(e,n,r,i),{u_image:0,u_image_height:o,u_tileratio:s,u_crossfade_from:a.fromScale,u_crossfade_to:a.toScale,u_image_dash:1,u_mix:a.t,u_lineatlas_width:e.lineAtlas.width,u_lineatlas_height:e.lineAtlas.height})};function lr(e,n){return 1/t.aK(e,1,n.tileZoom)}function ur(e,n,r){return t.aL(e.transform,n,r.paint.get(`line-translate`),r.paint.get(`line-translate-anchor`))}let dr=(e,t,n,r,i)=>{return{u_tl_parent:e,u_scale_parent:t,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*r.paint.get(`raster-opacity`),u_image0:0,u_image1:1,u_brightness_low:r.paint.get(`raster-brightness-min`),u_brightness_high:r.paint.get(`raster-brightness-max`),u_saturation_factor:(o=r.paint.get(`raster-saturation`),o>0?1-1/(1.001-o):-o),u_contrast_factor:(a=r.paint.get(`raster-contrast`),a>0?1/(1-a):1+a),u_spin_weights:fr(r.paint.get(`raster-hue-rotate`)),u_coords_top:[i[0].x,i[0].y,i[1].x,i[1].y],u_coords_bottom:[i[3].x,i[3].y,i[2].x,i[2].y]};var a,o};function fr(e){e*=Math.PI/180;let t=Math.sin(e),n=Math.cos(e);return[(2*n+1)/3,(-Math.sqrt(3)*t-n+1)/3,(Math.sqrt(3)*t-n+1)/3]}let pr=(e,t,n,r,i,a,o,s,c,l,u,d,f)=>{let p=o.transform;return{u_is_size_zoom_constant:+(e===`constant`||e===`source`),u_is_size_feature_constant:+(e===`constant`||e===`camera`),u_size_t:t?t.uSizeT:0,u_size:t?t.uSize:0,u_camera_to_center_distance:p.cameraToCenterDistance,u_pitch:p.pitch/360*2*Math.PI,u_rotate_symbol:+n,u_aspect_ratio:p.width/p.height,u_fade_change:o.options.fadeDuration?o.symbolFadeChange:1,u_label_plane_matrix:s,u_coord_matrix:c,u_is_text:+u,u_pitch_with_map:+r,u_is_along_line:i,u_is_variable_anchor:a,u_texsize:d,u_texture:0,u_translation:l,u_pitched_scale:f}},mr=(e,n,r,i,a,o,s,c,l,u,d,f,p,m)=>{let h=s.transform;return t.e(pr(e,n,r,i,a,o,s,c,l,u,d,f,m),{u_gamma_scale:i?Math.cos(h.pitch*Math.PI/180)*h.cameraToCenterDistance:1,u_device_pixel_ratio:s.pixelRatio,u_is_halo:1})},hr=(e,n,r,i,a,o,s,c,l,u,d,f,p)=>t.e(mr(e,n,r,i,a,o,s,c,l,u,!0,d,0,p),{u_texsize_icon:f,u_texture_icon:1}),gr=(e,t)=>({u_opacity:e,u_color:t}),_r=(e,n,r,i,a)=>t.e(function(e,n,r,i){let a=r.imageManager.getPattern(e.from.toString()),o=r.imageManager.getPattern(e.to.toString()),{width:s,height:c}=r.imageManager.getPixelSize(),l=2**i.tileID.overscaledZ,u=i.tileSize*2**r.transform.tileZoom/l,d=u*(i.tileID.canonical.x+i.tileID.wrap*l),f=u*i.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:a.tl,u_pattern_br_a:a.br,u_pattern_tl_b:o.tl,u_pattern_br_b:o.br,u_texsize:[s,c],u_mix:n.t,u_pattern_size_a:a.displaySize,u_pattern_size_b:o.displaySize,u_scale_a:n.fromScale,u_scale_b:n.toScale,u_tile_units_to_pixels:1/t.aK(i,1,r.transform.tileZoom),u_pixel_coord_upper:[d>>16,f>>16],u_pixel_coord_lower:[65535&d,65535&f]}}(r,a,n,i),{u_opacity:e}),vr=(e,t)=>{},yr={fillExtrusion:(e,n)=>({u_lightpos:new t.c0(e,n.u_lightpos),u_lightpos_globe:new t.c0(e,n.u_lightpos_globe),u_lightintensity:new t.bo(e,n.u_lightintensity),u_lightcolor:new t.c0(e,n.u_lightcolor),u_vertical_gradient:new t.bo(e,n.u_vertical_gradient),u_opacity:new t.bo(e,n.u_opacity),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillExtrusionPattern:(e,n)=>({u_lightpos:new t.c0(e,n.u_lightpos),u_lightpos_globe:new t.c0(e,n.u_lightpos_globe),u_lightintensity:new t.bo(e,n.u_lightintensity),u_lightcolor:new t.c0(e,n.u_lightcolor),u_vertical_gradient:new t.bo(e,n.u_vertical_gradient),u_height_factor:new t.bo(e,n.u_height_factor),u_opacity:new t.bo(e,n.u_opacity),u_fill_translate:new t.c1(e,n.u_fill_translate),u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade)}),fill:(e,n)=>({u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillPattern:(e,n)=>({u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillOutline:(e,n)=>({u_world:new t.c1(e,n.u_world),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillOutlinePattern:(e,n)=>({u_world:new t.c1(e,n.u_world),u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade),u_fill_translate:new t.c1(e,n.u_fill_translate)}),circle:(e,n)=>({u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_scale_with_map:new t.bY(e,n.u_scale_with_map),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_extrude_scale:new t.c1(e,n.u_extrude_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_globe_extrude_scale:new t.bo(e,n.u_globe_extrude_scale),u_translate:new t.c1(e,n.u_translate)}),collisionBox:(e,n)=>({u_pixel_extrude_scale:new t.c1(e,n.u_pixel_extrude_scale)}),collisionCircle:(e,n)=>({u_viewport_size:new t.c1(e,n.u_viewport_size)}),debug:(e,n)=>({u_color:new t.bZ(e,n.u_color),u_overlay:new t.bY(e,n.u_overlay),u_overlay_scale:new t.bo(e,n.u_overlay_scale)}),depth:vr,clippingMask:vr,heatmap:(e,n)=>({u_extrude_scale:new t.bo(e,n.u_extrude_scale),u_intensity:new t.bo(e,n.u_intensity),u_globe_extrude_scale:new t.bo(e,n.u_globe_extrude_scale)}),heatmapTexture:(e,n)=>({u_matrix:new t.b_(e,n.u_matrix),u_world:new t.c1(e,n.u_world),u_image:new t.bY(e,n.u_image),u_color_ramp:new t.bY(e,n.u_color_ramp),u_opacity:new t.bo(e,n.u_opacity)}),hillshade:(e,n)=>({u_image:new t.bY(e,n.u_image),u_latrange:new t.c1(e,n.u_latrange),u_exaggeration:new t.bo(e,n.u_exaggeration),u_altitudes:new t.c7(e,n.u_altitudes),u_azimuths:new t.c7(e,n.u_azimuths),u_accent:new t.bZ(e,n.u_accent),u_method:new t.bY(e,n.u_method),u_shadows:new t.c6(e,n.u_shadows),u_highlights:new t.c6(e,n.u_highlights)}),hillshadePrepare:(e,n)=>({u_matrix:new t.b_(e,n.u_matrix),u_image:new t.bY(e,n.u_image),u_dimension:new t.c1(e,n.u_dimension),u_zoom:new t.bo(e,n.u_zoom),u_unpack:new t.b$(e,n.u_unpack)}),colorRelief:(e,n)=>({u_image:new t.bY(e,n.u_image),u_unpack:new t.b$(e,n.u_unpack),u_dimension:new t.c1(e,n.u_dimension),u_elevation_stops:new t.bY(e,n.u_elevation_stops),u_color_stops:new t.bY(e,n.u_color_stops),u_color_ramp_size:new t.bY(e,n.u_color_ramp_size),u_opacity:new t.bo(e,n.u_opacity)}),line:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels)}),lineGradient:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_image_height:new t.bo(e,n.u_image_height)}),linePattern:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_texsize:new t.c1(e,n.u_texsize),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_image:new t.bY(e,n.u_image),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade)}),lineSDF:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_mix:new t.bo(e,n.u_mix),u_tileratio:new t.bo(e,n.u_tileratio),u_crossfade_from:new t.bo(e,n.u_crossfade_from),u_crossfade_to:new t.bo(e,n.u_crossfade_to),u_lineatlas_width:new t.bo(e,n.u_lineatlas_width),u_lineatlas_height:new t.bo(e,n.u_lineatlas_height)}),lineGradientSDF:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_image_height:new t.bo(e,n.u_image_height),u_tileratio:new t.bo(e,n.u_tileratio),u_crossfade_from:new t.bo(e,n.u_crossfade_from),u_crossfade_to:new t.bo(e,n.u_crossfade_to),u_image_dash:new t.bY(e,n.u_image_dash),u_mix:new t.bo(e,n.u_mix),u_lineatlas_width:new t.bo(e,n.u_lineatlas_width),u_lineatlas_height:new t.bo(e,n.u_lineatlas_height)}),raster:(e,n)=>({u_tl_parent:new t.c1(e,n.u_tl_parent),u_scale_parent:new t.bo(e,n.u_scale_parent),u_buffer_scale:new t.bo(e,n.u_buffer_scale),u_fade_t:new t.bo(e,n.u_fade_t),u_opacity:new t.bo(e,n.u_opacity),u_image0:new t.bY(e,n.u_image0),u_image1:new t.bY(e,n.u_image1),u_brightness_low:new t.bo(e,n.u_brightness_low),u_brightness_high:new t.bo(e,n.u_brightness_high),u_saturation_factor:new t.bo(e,n.u_saturation_factor),u_contrast_factor:new t.bo(e,n.u_contrast_factor),u_spin_weights:new t.c0(e,n.u_spin_weights),u_coords_top:new t.b$(e,n.u_coords_top),u_coords_bottom:new t.b$(e,n.u_coords_bottom)}),symbolIcon:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texture:new t.bY(e,n.u_texture),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),symbolSDF:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texture:new t.bY(e,n.u_texture),u_gamma_scale:new t.bo(e,n.u_gamma_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_is_halo:new t.bY(e,n.u_is_halo),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),symbolTextAndIcon:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texsize_icon:new t.c1(e,n.u_texsize_icon),u_texture:new t.bY(e,n.u_texture),u_texture_icon:new t.bY(e,n.u_texture_icon),u_gamma_scale:new t.bo(e,n.u_gamma_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_is_halo:new t.bY(e,n.u_is_halo),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),background:(e,n)=>({u_opacity:new t.bo(e,n.u_opacity),u_color:new t.bZ(e,n.u_color)}),backgroundPattern:(e,n)=>({u_opacity:new t.bo(e,n.u_opacity),u_image:new t.bY(e,n.u_image),u_pattern_tl_a:new t.c1(e,n.u_pattern_tl_a),u_pattern_br_a:new t.c1(e,n.u_pattern_br_a),u_pattern_tl_b:new t.c1(e,n.u_pattern_tl_b),u_pattern_br_b:new t.c1(e,n.u_pattern_br_b),u_texsize:new t.c1(e,n.u_texsize),u_mix:new t.bo(e,n.u_mix),u_pattern_size_a:new t.c1(e,n.u_pattern_size_a),u_pattern_size_b:new t.c1(e,n.u_pattern_size_b),u_scale_a:new t.bo(e,n.u_scale_a),u_scale_b:new t.bo(e,n.u_scale_b),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_tile_units_to_pixels:new t.bo(e,n.u_tile_units_to_pixels)}),terrain:(e,n)=>({u_texture:new t.bY(e,n.u_texture),u_ele_delta:new t.bo(e,n.u_ele_delta),u_fog_matrix:new t.b_(e,n.u_fog_matrix),u_fog_color:new t.bZ(e,n.u_fog_color),u_fog_ground_blend:new t.bo(e,n.u_fog_ground_blend),u_fog_ground_blend_opacity:new t.bo(e,n.u_fog_ground_blend_opacity),u_horizon_color:new t.bZ(e,n.u_horizon_color),u_horizon_fog_blend:new t.bo(e,n.u_horizon_fog_blend),u_is_globe_mode:new t.bo(e,n.u_is_globe_mode)}),terrainDepth:(e,n)=>({u_ele_delta:new t.bo(e,n.u_ele_delta)}),terrainCoords:(e,n)=>({u_texture:new t.bY(e,n.u_texture),u_terrain_coords_id:new t.bo(e,n.u_terrain_coords_id),u_ele_delta:new t.bo(e,n.u_ele_delta)}),projectionErrorMeasurement:(e,n)=>({u_input:new t.bo(e,n.u_input),u_output_expected:new t.bo(e,n.u_output_expected)}),atmosphere:(e,n)=>({u_sun_pos:new t.c0(e,n.u_sun_pos),u_atmosphere_blend:new t.bo(e,n.u_atmosphere_blend),u_globe_position:new t.c0(e,n.u_globe_position),u_globe_radius:new t.bo(e,n.u_globe_radius),u_inv_proj_matrix:new t.b_(e,n.u_inv_proj_matrix)}),sky:(e,n)=>({u_sky_color:new t.bZ(e,n.u_sky_color),u_horizon_color:new t.bZ(e,n.u_horizon_color),u_horizon:new t.c1(e,n.u_horizon),u_horizon_normal:new t.c1(e,n.u_horizon_normal),u_sky_horizon_blend:new t.bo(e,n.u_sky_horizon_blend),u_sky_blend:new t.bo(e,n.u_sky_blend)})};class br{constructor(e,t,n){this.context=e;let r=e.gl;this.buffer=r.createBuffer(),this.dynamicDraw=!!n,this.context.unbindVAO(),e.bindElementBuffer.set(this.buffer),r.bufferData(r.ELEMENT_ARRAY_BUFFER,t.arrayBuffer,this.dynamicDraw?r.DYNAMIC_DRAW:r.STATIC_DRAW),this.dynamicDraw||t.freeBufferAfterUpload()}bind(){this.context.bindElementBuffer.set(this.buffer)}updateData(e){let t=this.context.gl;if(!this.dynamicDraw)throw Error(`Attempted to update data while not in dynamic mode.`);this.context.unbindVAO(),this.bind(),t.bufferSubData(t.ELEMENT_ARRAY_BUFFER,0,e.arrayBuffer)}destroy(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)}}let xr={Int8:`BYTE`,Uint8:`UNSIGNED_BYTE`,Int16:`SHORT`,Uint16:`UNSIGNED_SHORT`,Int32:`INT`,Uint32:`UNSIGNED_INT`,Float32:`FLOAT`};class Sr{constructor(e,t,n,r){this.length=t.length,this.attributes=n,this.itemSize=t.bytesPerElement,this.dynamicDraw=r,this.context=e;let i=e.gl;this.buffer=i.createBuffer(),e.bindVertexBuffer.set(this.buffer),i.bufferData(i.ARRAY_BUFFER,t.arrayBuffer,this.dynamicDraw?i.DYNAMIC_DRAW:i.STATIC_DRAW),this.dynamicDraw||t.freeBufferAfterUpload()}bind(){this.context.bindVertexBuffer.set(this.buffer)}updateData(e){if(e.length!==this.length)throw Error(`Length of new data is ${e.length}, which doesn't match current length of ${this.length}`);let t=this.context.gl;this.bind(),t.bufferSubData(t.ARRAY_BUFFER,0,e.arrayBuffer)}enableAttributes(e,t){for(let n=0;n<this.attributes.length;n++){let r=t.attributes[this.attributes[n].name];r!==void 0&&e.enableVertexAttribArray(r)}}setVertexAttribPointers(e,t,n){for(let r=0;r<this.attributes.length;r++){let i=this.attributes[r],a=t.attributes[i.name];a!==void 0&&e.vertexAttribPointer(a,i.components,e[xr[i.type]],!1,this.itemSize,i.offset+this.itemSize*(n||0))}}destroy(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)}}class Cr{constructor(e){this.gl=e.gl,this.default=this.getDefault(),this.current=this.default,this.dirty=!1}get(){return this.current}set(e){}getDefault(){return this.default}setDefault(){this.set(this.default)}}class wr extends Cr{getDefault(){return t.bn.transparent}set(e){let t=this.current;(e.r!==t.r||e.g!==t.g||e.b!==t.b||e.a!==t.a||this.dirty)&&(this.gl.clearColor(e.r,e.g,e.b,e.a),this.current=e,this.dirty=!1)}}class Tr extends Cr{getDefault(){return 1}set(e){(e!==this.current||this.dirty)&&(this.gl.clearDepth(e),this.current=e,this.dirty=!1)}}class Er extends Cr{getDefault(){return 0}set(e){(e!==this.current||this.dirty)&&(this.gl.clearStencil(e),this.current=e,this.dirty=!1)}}class Dr extends Cr{getDefault(){return[!0,!0,!0,!0]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3]||this.dirty)&&(this.gl.colorMask(e[0],e[1],e[2],e[3]),this.current=e,this.dirty=!1)}}class Or extends Cr{getDefault(){return!0}set(e){(e!==this.current||this.dirty)&&(this.gl.depthMask(e),this.current=e,this.dirty=!1)}}class kr extends Cr{getDefault(){return 255}set(e){(e!==this.current||this.dirty)&&(this.gl.stencilMask(e),this.current=e,this.dirty=!1)}}class Ar extends Cr{getDefault(){return{func:this.gl.ALWAYS,ref:0,mask:255}}set(e){let t=this.current;(e.func!==t.func||e.ref!==t.ref||e.mask!==t.mask||this.dirty)&&(this.gl.stencilFunc(e.func,e.ref,e.mask),this.current=e,this.dirty=!1)}}class jr extends Cr{getDefault(){let e=this.gl;return[e.KEEP,e.KEEP,e.KEEP]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||this.dirty)&&(this.gl.stencilOp(e[0],e[1],e[2]),this.current=e,this.dirty=!1)}}class Mr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.STENCIL_TEST):t.disable(t.STENCIL_TEST),this.current=e,this.dirty=!1}}class Nr extends Cr{getDefault(){return[0,1]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||this.dirty)&&(this.gl.depthRange(e[0],e[1]),this.current=e,this.dirty=!1)}}class Pr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.DEPTH_TEST):t.disable(t.DEPTH_TEST),this.current=e,this.dirty=!1}}class Fr extends Cr{getDefault(){return this.gl.LESS}set(e){(e!==this.current||this.dirty)&&(this.gl.depthFunc(e),this.current=e,this.dirty=!1)}}class Ir extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.BLEND):t.disable(t.BLEND),this.current=e,this.dirty=!1}}class Lr extends Cr{getDefault(){let e=this.gl;return[e.ONE,e.ZERO]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||this.dirty)&&(this.gl.blendFunc(e[0],e[1]),this.current=e,this.dirty=!1)}}class Rr extends Cr{getDefault(){return t.bn.transparent}set(e){let t=this.current;(e.r!==t.r||e.g!==t.g||e.b!==t.b||e.a!==t.a||this.dirty)&&(this.gl.blendColor(e.r,e.g,e.b,e.a),this.current=e,this.dirty=!1)}}class zr extends Cr{getDefault(){return this.gl.FUNC_ADD}set(e){(e!==this.current||this.dirty)&&(this.gl.blendEquation(e),this.current=e,this.dirty=!1)}}class Br extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.CULL_FACE):t.disable(t.CULL_FACE),this.current=e,this.dirty=!1}}class Vr extends Cr{getDefault(){return this.gl.BACK}set(e){(e!==this.current||this.dirty)&&(this.gl.cullFace(e),this.current=e,this.dirty=!1)}}class Hr extends Cr{getDefault(){return this.gl.CCW}set(e){(e!==this.current||this.dirty)&&(this.gl.frontFace(e),this.current=e,this.dirty=!1)}}class Ur extends Cr{getDefault(){return null}set(e){(e!==this.current||this.dirty)&&(this.gl.useProgram(e),this.current=e,this.dirty=!1)}}class Wr extends Cr{getDefault(){return this.gl.TEXTURE0}set(e){(e!==this.current||this.dirty)&&(this.gl.activeTexture(e),this.current=e,this.dirty=!1)}}class Gr extends Cr{getDefault(){let e=this.gl;return[0,0,e.drawingBufferWidth,e.drawingBufferHeight]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3]||this.dirty)&&(this.gl.viewport(e[0],e[1],e[2],e[3]),this.current=e,this.dirty=!1)}}class Kr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,e),this.current=e,this.dirty=!1}}class qr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindRenderbuffer(t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}class Y extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindTexture(t.TEXTURE_2D,e),this.current=e,this.dirty=!1}}class Jr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindBuffer(t.ARRAY_BUFFER,e),this.current=e,this.dirty=!1}}class Yr extends Cr{getDefault(){return null}set(e){let t=this.gl;t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,e),this.current=e,this.dirty=!1}}class Xr extends Cr{getDefault(){return null}set(e){var t;if(e===this.current&&!this.dirty)return;let n=this.gl;an(n)?n.bindVertexArray(e):(t=n.getExtension(`OES_vertex_array_object`))==null||t.bindVertexArrayOES(e),this.current=e,this.dirty=!1}}class Zr extends Cr{getDefault(){return 4}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_ALIGNMENT,e),this.current=e,this.dirty=!1}}class Qr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,e),this.current=e,this.dirty=!1}}class $r extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_FLIP_Y_WEBGL,e),this.current=e,this.dirty=!1}}class ei extends Cr{constructor(e,t){super(e),this.context=e,this.parent=t}getDefault(){return null}}class ti extends ei{setDirty(){this.dirty=!0}set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_2D,e,0),this.current=e,this.dirty=!1}}class ni extends ei{set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferRenderbuffer(t.FRAMEBUFFER,t.DEPTH_ATTACHMENT,t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}class ri extends ei{set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferRenderbuffer(t.FRAMEBUFFER,t.DEPTH_STENCIL_ATTACHMENT,t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}let ii=`Framebuffer is not complete`;class ai{constructor(e,t,n,r,i){this.context=e,this.width=t,this.height=n;let a=e.gl,o=this.framebuffer=a.createFramebuffer();if(this.colorAttachment=new ti(e,o),r)this.depthAttachment=i?new ri(e,o):new ni(e,o);else if(i)throw Error(`Stencil cannot be set without depth`);if(a.checkFramebufferStatus(a.FRAMEBUFFER)!==a.FRAMEBUFFER_COMPLETE)throw Error(ii)}destroy(){let e=this.context.gl,t=this.colorAttachment.get();if(t&&e.deleteTexture(t),this.depthAttachment){let t=this.depthAttachment.get();t&&e.deleteRenderbuffer(t)}e.deleteFramebuffer(this.framebuffer)}}class oi{constructor(e){if(this.gl=e,this.clearColor=new wr(this),this.clearDepth=new Tr(this),this.clearStencil=new Er(this),this.colorMask=new Dr(this),this.depthMask=new Or(this),this.stencilMask=new kr(this),this.stencilFunc=new Ar(this),this.stencilOp=new jr(this),this.stencilTest=new Mr(this),this.depthRange=new Nr(this),this.depthTest=new Pr(this),this.depthFunc=new Fr(this),this.blend=new Ir(this),this.blendFunc=new Lr(this),this.blendColor=new Rr(this),this.blendEquation=new zr(this),this.cullFace=new Br(this),this.cullFaceSide=new Vr(this),this.frontFace=new Hr(this),this.program=new Ur(this),this.activeTexture=new Wr(this),this.viewport=new Gr(this),this.bindFramebuffer=new Kr(this),this.bindRenderbuffer=new qr(this),this.bindTexture=new Y(this),this.bindVertexBuffer=new Jr(this),this.bindElementBuffer=new Yr(this),this.bindVertexArray=new Xr(this),this.pixelStoreUnpack=new Zr(this),this.pixelStoreUnpackPremultiplyAlpha=new Qr(this),this.pixelStoreUnpackFlipY=new $r(this),this.extTextureFilterAnisotropic=e.getExtension(`EXT_texture_filter_anisotropic`),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=e.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.maxTextureSize=e.getParameter(e.MAX_TEXTURE_SIZE),an(e)){this.HALF_FLOAT=e.HALF_FLOAT;let t=e.getExtension(`EXT_color_buffer_half_float`);this.RGBA16F=e.RGBA16F??t?.RGBA16F_EXT,this.RGB16F=e.RGB16F??t?.RGB16F_EXT,e.getExtension(`EXT_color_buffer_float`)}else{e.getExtension(`EXT_color_buffer_half_float`),e.getExtension(`OES_texture_half_float_linear`);let t=e.getExtension(`OES_texture_half_float`);this.HALF_FLOAT=t?.HALF_FLOAT_OES}}setDefault(){this.unbindVAO(),this.clearColor.setDefault(),this.clearDepth.setDefault(),this.clearStencil.setDefault(),this.colorMask.setDefault(),this.depthMask.setDefault(),this.stencilMask.setDefault(),this.stencilFunc.setDefault(),this.stencilOp.setDefault(),this.stencilTest.setDefault(),this.depthRange.setDefault(),this.depthTest.setDefault(),this.depthFunc.setDefault(),this.blend.setDefault(),this.blendFunc.setDefault(),this.blendColor.setDefault(),this.blendEquation.setDefault(),this.cullFace.setDefault(),this.cullFaceSide.setDefault(),this.frontFace.setDefault(),this.program.setDefault(),this.activeTexture.setDefault(),this.bindFramebuffer.setDefault(),this.pixelStoreUnpack.setDefault(),this.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.pixelStoreUnpackFlipY.setDefault()}setDirty(){this.clearColor.dirty=!0,this.clearDepth.dirty=!0,this.clearStencil.dirty=!0,this.colorMask.dirty=!0,this.depthMask.dirty=!0,this.stencilMask.dirty=!0,this.stencilFunc.dirty=!0,this.stencilOp.dirty=!0,this.stencilTest.dirty=!0,this.depthRange.dirty=!0,this.depthTest.dirty=!0,this.depthFunc.dirty=!0,this.blend.dirty=!0,this.blendFunc.dirty=!0,this.blendColor.dirty=!0,this.blendEquation.dirty=!0,this.cullFace.dirty=!0,this.cullFaceSide.dirty=!0,this.frontFace.dirty=!0,this.program.dirty=!0,this.activeTexture.dirty=!0,this.viewport.dirty=!0,this.bindFramebuffer.dirty=!0,this.bindRenderbuffer.dirty=!0,this.bindTexture.dirty=!0,this.bindVertexBuffer.dirty=!0,this.bindElementBuffer.dirty=!0,this.bindVertexArray.dirty=!0,this.pixelStoreUnpack.dirty=!0,this.pixelStoreUnpackPremultiplyAlpha.dirty=!0,this.pixelStoreUnpackFlipY.dirty=!0}createIndexBuffer(e,t){return new br(this,e,t)}createVertexBuffer(e,t,n){return new Sr(this,e,t,n)}createRenderbuffer(e,t,n){let r=this.gl,i=r.createRenderbuffer();return this.bindRenderbuffer.set(i),r.renderbufferStorage(r.RENDERBUFFER,e,t,n),this.bindRenderbuffer.set(null),i}createFramebuffer(e,t,n,r){return new ai(this,e,t,n,r)}clear({color:e,depth:t,stencil:n}){let r=this.gl,i=0;e&&(i|=r.COLOR_BUFFER_BIT,this.clearColor.set(e),this.colorMask.set([!0,!0,!0,!0])),t!==void 0&&(i|=r.DEPTH_BUFFER_BIT,this.depthRange.set([0,1]),this.clearDepth.set(t),this.depthMask.set(!0)),n!==void 0&&(i|=r.STENCIL_BUFFER_BIT,this.clearStencil.set(n),this.stencilMask.set(255)),r.clear(i)}setCullFace(e){!1===e.enable?this.cullFace.set(!1):(this.cullFace.set(!0),this.cullFaceSide.set(e.mode),this.frontFace.set(e.frontFace))}setDepthMode(e){e.func!==this.gl.ALWAYS||e.mask?(this.depthTest.set(!0),this.depthFunc.set(e.func),this.depthMask.set(e.mask),this.depthRange.set(e.range)):this.depthTest.set(!1)}setStencilMode(e){e.test.func!==this.gl.ALWAYS||e.mask?(this.stencilTest.set(!0),this.stencilMask.set(e.mask),this.stencilOp.set([e.fail,e.depthFail,e.pass]),this.stencilFunc.set({func:e.test.func,ref:e.ref,mask:e.test.mask})):this.stencilTest.set(!1)}setColorMode(e){t.bP(e.blendFunction,en.Replace)?this.blend.set(!1):(this.blend.set(!0),this.blendFunc.set(e.blendFunction),this.blendColor.set(e.blendColor)),this.colorMask.set(e.mask)}createVertexArray(){return an(this.gl)?this.gl.createVertexArray():this.gl.getExtension(`OES_vertex_array_object`)?.createVertexArrayOES()}deleteVertexArray(e){return an(this.gl)?this.gl.deleteVertexArray(e):this.gl.getExtension(`OES_vertex_array_object`)?.deleteVertexArrayOES(e)}unbindVAO(){this.bindVertexArray.set(null)}}let si;function ci(e,n,r,i,a){let o=e.context,s=e.transform,c=o.gl,l=e.useProgram(`collisionBox`),u=[],d=0,f=0;for(let t=0;t<i.length;t++){let p=i[t],m=n.getTile(p).getBucket(r);if(!m)continue;let h=a?m.textCollisionBox:m.iconCollisionBox,g=m.collisionCircleArray;g.length>0&&(u.push({circleArray:g,circleOffset:f,coord:p}),d+=g.length/4,f=d),h&&l.draw(o,c.LINES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,Yn(e.transform),e.style.map.terrain&&e.style.map.terrain.getTerrainData(p),s.getProjectionData({overscaledTileID:p,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),r.id,h.layoutVertexBuffer,h.indexBuffer,h.segments,null,e.transform.zoom,null,null,h.collisionVertexBuffer)}if(!a||!u.length)return;let p=e.useProgram(`collisionCircle`),m=new t.c8;m.resize(4*d),m._trim();let h=0;for(let e of u)for(let t=0;t<e.circleArray.length/4;t++){let n=4*t,r=e.circleArray[n+0],i=e.circleArray[n+1],a=e.circleArray[n+2],o=e.circleArray[n+3];m.emplace(h++,r,i,a,o,0),m.emplace(h++,r,i,a,o,1),m.emplace(h++,r,i,a,o,2),m.emplace(h++,r,i,a,o,3)}(!si||si.length<2*d)&&(si=function(e){let n=2*e,r=new t.ca;r.resize(n),r._trim();for(let e=0;e<n;e++){let t=6*e;r.uint16[t+0]=4*e+0,r.uint16[t+1]=4*e+1,r.uint16[t+2]=4*e+2,r.uint16[t+3]=4*e+2,r.uint16[t+4]=4*e+3,r.uint16[t+5]=4*e+0}return r}(d));let g=o.createIndexBuffer(si,!0),_=o.createVertexBuffer(m,t.c9.members,!0);for(let n of u){let i=Xn(e.transform);p.draw(o,c.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,i,e.style.map.terrain&&e.style.map.terrain.getTerrainData(n.coord),null,r.id,_,g,t.aV.simpleSegment(0,2*n.circleOffset,n.circleArray.length,n.circleArray.length/2),null,e.transform.zoom,null,null,null)}_.destroy(),g.destroy()}let li=t.ao(new Float32Array(16));function ui(e,n,r,i,a,o){let{horizontalAlign:s,verticalAlign:c}=t.aP(e);return new t.P((-(s-.5)*n/a+i[0])*o,(-(c-.5)*r/a+i[1])*o)}function di(e,n,r,i,a,o){let s=n.tileAnchorPoint.add(new t.P(n.translation[0],n.translation[1]));if(n.pitchWithMap){let e=i.mult(o);r||(e=e.rotate(-a));let t=s.add(e);return $e(t.x,t.y,n.pitchedLabelPlaneMatrix,n.getElevation).point}if(r){let t=ot(n.tileAnchorPoint.x+1,n.tileAnchorPoint.y,n).point.sub(e),r=Math.atan(t.y/t.x)+(t.x<0?Math.PI:0);return e.add(i.rotate(r))}return e.add(i)}function fi(e,n,r,i,a,o,s,c,l,u,d,f){let p=e.text.placedSymbolArray,m=e.text.dynamicLayoutVertexArray,h=e.icon.dynamicLayoutVertexArray,g={};m.clear();for(let h=0;h<p.length;h++){let _=p.get(h),v=_.hidden||!_.crossTileID||e.allowVerticalPlacement&&!_.placedOrientation?null:i[_.crossTileID];if(v){let i=new t.P(_.anchorX,_.anchorY),p={getElevation:f,width:a.width,height:a.height,pitchedLabelPlaneMatrix:o,pitchWithMap:r,transform:a,tileAnchorPoint:i,translation:u,unwrappedTileID:d},h=r?ct(i.x,i.y,p):ot(i.x,i.y,p),y=V(a.cameraToCenterDistance,h.signedDistanceFromCamera),b=t.ax(e.textSizeData,c,_)*y/t.aJ;r&&(b*=e.tilePixelRatio/s);let{width:x,height:S,anchor:C,textOffset:w,textBoxScale:T}=v,E=ui(C,x,S,w,T,b),D=a.getPitchedTextCorrection(i.x+u[0],i.y+u[1],d),O=di(h.point,p,n,E,-a.bearingInRadians,D),k=e.allowVerticalPlacement&&_.placedOrientation===t.aw.vertical?Math.PI/2:0;for(let e=0;e<_.numGlyphs;e++)t.aD(m,O,k);l&&_.associatedIconIndex>=0&&(g[_.associatedIconIndex]={shiftedAnchor:O,angle:k})}else ft(_.numGlyphs,m)}if(l){h.clear();let n=e.icon.placedSymbolArray;for(let e=0;e<n.length;e++){let r=n.get(e);if(r.hidden)ft(r.numGlyphs,h);else{let n=g[e];if(n)for(let e=0;e<r.numGlyphs;e++)t.aD(h,n.shiftedAnchor,n.angle);else ft(r.numGlyphs,h)}}e.icon.dynamicLayoutVertexBuffer.updateData(h)}e.text.dynamicLayoutVertexBuffer.updateData(m)}function pi(e,t,n){return n.iconsInText&&t?`symbolTextAndIcon`:e?`symbolSDF`:`symbolIcon`}function mi(e,n,r,i,a,o,s,c,l,u,d,f,p){let m=e.context,h=m.gl,g=e.transform,_=c===`map`,v=l===`map`,y=c!==`viewport`&&r.layout.get(`symbol-placement`)!==`point`,b=_&&!v&&!y,x=!r.layout.get(`symbol-sort-key`).isConstant(),S=!1,C=e.getDepthModeForSublayer(0,q.ReadOnly),w=r._unevaluatedLayout.hasValue(`text-variable-anchor`)||r._unevaluatedLayout.hasValue(`text-variable-anchor-offset`),T=[],E=g.getCircleRadiusCorrection();for(let c of i){let i=n.getTile(c),l=i.getBucket(r);if(!l)continue;let d=a?l.text:l.icon;if(!d||!d.segments.get().length||!d.hasVisibleVertices)continue;let f=d.programConfigurations.get(r.id),m=a||l.sdfIcons,C=a?l.textSizeData:l.iconSizeData,D=v||g.pitch!==0,O=e.useProgram(pi(m,a,l),f),k=t.av(C,g.zoom),A=e.style.map.terrain&&e.style.map.terrain.getTerrainData(c),ee,te,j,ne,re=[0,0],ie=null;if(a)te=i.glyphAtlasTexture,j=h.LINEAR,ee=i.glyphAtlasTexture.size,l.iconsInText&&(re=i.imageAtlasTexture.size,ie=i.imageAtlasTexture,ne=D||e.options.rotating||e.options.zooming||C.kind===`composite`||C.kind===`camera`?h.LINEAR:h.NEAREST);else{let t=r.layout.get(`icon-size`).constantOr(0)!==1||l.iconsNeedLinear;te=i.imageAtlasTexture,j=m||e.options.rotating||e.options.zooming||t||D?h.LINEAR:h.NEAREST,ee=i.imageAtlasTexture.size}let M=t.aK(i,1,e.transform.zoom),ae=B(_,e.transform,M),oe=t.N();t.ay(oe,ae);let se=Ze(v,_,e.transform,M),N=t.aL(g,i,o,s),ce=g.getProjectionData({overscaledTileID:c,applyGlobeMatrix:!p,applyTerrainMatrix:!0}),le=w&&l.hasTextData(),ue=r.layout.get(`icon-text-fit`)!==`none`&&le&&l.hasIconData();if(y){let t=e.style.map.terrain?(t,n)=>e.style.map.terrain.getElevation(c,t,n):null;tt(l,e,a,ae,oe,v,u,r.layout.get(`text-rotation-alignment`)===`map`,c.toUnwrapped(),g.width,g.height,N,t)}let de=a&&w||ue,fe=y||de?li:v?ae:e.transform.clipSpaceToPixelsMatrix,pe=m&&r.paint.get(a?`text-halo-width`:`icon-halo-width`).constantOr(1)!==0,me;me=m?l.iconsInText?hr(C.kind,k,b,v,y,de,e,fe,se,N,ee,re,E):mr(C.kind,k,b,v,y,de,e,fe,se,N,a,ee,0,E):pr(C.kind,k,b,v,y,de,e,fe,se,N,a,ee,E);let he={program:O,buffers:d,uniformValues:me,projectionData:ce,atlasTexture:te,atlasTextureIcon:ie,atlasInterpolation:j,atlasInterpolationIcon:ne,isSDF:m,hasHalo:pe};if(x&&l.canOverlap){S=!0;let e=d.segments.get();for(let n of e)T.push({segments:new t.aV([n]),sortKey:n.sortKey,state:he,terrainData:A})}else T.push({segments:d.segments,sortKey:0,state:he,terrainData:A})}S&&T.sort(((e,t)=>e.sortKey-t.sortKey));for(let t of T){let n=t.state;if(m.activeTexture.set(h.TEXTURE0),n.atlasTexture.bind(n.atlasInterpolation,h.CLAMP_TO_EDGE),n.atlasTextureIcon&&(m.activeTexture.set(h.TEXTURE1),n.atlasTextureIcon&&n.atlasTextureIcon.bind(n.atlasInterpolationIcon,h.CLAMP_TO_EDGE)),n.isSDF){let i=n.uniformValues;n.hasHalo&&(i.u_is_halo=1,hi(n.buffers,t.segments,r,e,n.program,C,d,f,i,n.projectionData,t.terrainData)),i.u_is_halo=0}hi(n.buffers,t.segments,r,e,n.program,C,d,f,n.uniformValues,n.projectionData,t.terrainData)}}function hi(e,t,n,r,i,a,o,s,c,l,u){let d=r.context;i.draw(d,d.gl.TRIANGLES,a,o,s,K.backCCW,c,u,l,n.id,e.layoutVertexBuffer,e.indexBuffer,t,n.paint,r.transform.zoom,e.programConfigurations.get(n.id),e.dynamicLayoutVertexBuffer,e.opacityVertexBuffer)}function gi(e,n,r,i,a){let o=e.context,s=o.gl,c=J.disabled,l=new en([s.ONE,s.ONE],t.bn.transparent,[!0,!0,!0,!0]),u=n.getBucket(r);if(!u)return;let d=i.key,f=r.heatmapFbos.get(d);f||(f=vi(o,n.tileSize,n.tileSize),r.heatmapFbos.set(d,f)),o.bindFramebuffer.set(f.framebuffer),o.viewport.set([0,0,n.tileSize,n.tileSize]),o.clear({color:t.bn.transparent});let p=u.programConfigurations.get(r.id),m=e.useProgram(`heatmap`,p,!a),h=e.transform.getProjectionData({overscaledTileID:n.tileID,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),g=e.style.map.terrain.getTerrainData(i);m.draw(o,s.TRIANGLES,q.disabled,c,l,K.disabled,Qn(n,e.transform.zoom,r.paint.get(`heatmap-intensity`),1),g,h,r.id,u.layoutVertexBuffer,u.indexBuffer,u.segments,r.paint,e.transform.zoom,p)}function _i(e,t,n,r,i){let a=e.context,o=a.gl,s=e.transform;a.setColorMode(e.colorModeForRenderPass());let c=yi(a,t),l=n.key,u=t.heatmapFbos.get(l);if(!u)return;a.activeTexture.set(o.TEXTURE0),o.bindTexture(o.TEXTURE_2D,u.colorAttachment.get()),a.activeTexture.set(o.TEXTURE1),c.bind(o.LINEAR,o.CLAMP_TO_EDGE);let d=s.getProjectionData({overscaledTileID:n,applyTerrainMatrix:i,applyGlobeMatrix:!r});e.useProgram(`heatmapTexture`).draw(a,o.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,$n(e,t,0,1),null,d,t.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments,t.paint,s.zoom),u.destroy(),t.heatmapFbos.delete(l)}function vi(e,t,n){let r=e.gl,i=r.createTexture();r.bindTexture(r.TEXTURE_2D,i),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.LINEAR),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.LINEAR);let a=e.HALF_FLOAT??r.UNSIGNED_BYTE,o=e.RGBA16F??r.RGBA;r.texImage2D(r.TEXTURE_2D,0,o,t,n,0,r.RGBA,a,null);let s=e.createFramebuffer(t,n,!1,!1);return s.colorAttachment.set(i),s}function yi(e,n){return n.colorRampTexture||=new t.T(e,n.colorRamp,e.gl.RGBA),n.colorRampTexture}function bi(e,n,r,i,a,o,s,c){let l=256;if(a.stepInterpolant){let i=n.getSource().maxzoom,a=s.canonical.z===i?Math.ceil(1<<e.transform.maxZoom-s.canonical.z):1;l=t.ak(t.cc(o.maxLineLength/t.a5*1024*a),256,r.maxTextureSize)}return c.gradient=t.cd({expression:a.gradientExpression(),evaluationKey:`lineProgress`,resolution:l,image:c.gradient||void 0,clips:o.lineClipsArray}),c.texture?c.texture.update(c.gradient):c.texture=new t.T(r,c.gradient,i.RGBA),c.version=a.gradientVersion,c.texture}function xi(e,t,n,r,i){e.activeTexture.set(t.TEXTURE0),n.imageAtlasTexture.bind(t.LINEAR,t.CLAMP_TO_EDGE),r.updatePaintBuffers(i)}function Si(e,t,n,r,i,a){(i||e.lineAtlas.dirty)&&(t.activeTexture.set(n.TEXTURE0),e.lineAtlas.bind(t)),r.updatePaintBuffers(a)}function Ci(e,t,n,r,i,a,o){let s=a.gradients[i.id],c=s.texture;i.gradientVersion!==s.version&&(c=bi(e,t,n,r,i,a,o,s)),n.activeTexture.set(r.TEXTURE0),c.bind(i.stepInterpolant?r.NEAREST:r.LINEAR,r.CLAMP_TO_EDGE)}function wi(e,t,n,r,i,a,o,s,c){let l=a.gradients[i.id],u=l.texture;i.gradientVersion!==l.version&&(u=bi(e,t,n,r,i,a,o,l)),n.activeTexture.set(r.TEXTURE0),u.bind(i.stepInterpolant?r.NEAREST:r.LINEAR,r.CLAMP_TO_EDGE),n.activeTexture.set(r.TEXTURE1),e.lineAtlas.bind(n),s.updatePaintBuffers(c)}function Ti(e,t,n,r,i){if(!n||!r||!r.imageAtlas)return;let a=r.imageAtlas.patternPositions,o=a[n.to.toString()],s=a[n.from.toString()];if(!o&&s&&(o=s),!s&&o&&(s=o),!o||!s){let e=i.getPaintProperty(t);o=a[e],s=a[e]}o&&s&&e.setConstantPatternPositions(o,s)}function Ei(e,n,r,i,a,o,s,c){let l=e.context.gl,u=`fill-pattern`,d=r.paint.get(u),f=d&&d.constantOr(1),p=r.getCrossfadeParameters(),m,h,g,_,v,y=e.transform,b=r.paint.get(`fill-translate`),x=r.paint.get(`fill-translate-anchor`);s?(h=f&&!r.getPaintProperty(`fill-outline-color`)?`fillOutlinePattern`:`fillOutline`,m=l.LINES):(h=f?`fillPattern`:`fill`,m=l.TRIANGLES);let S=d.constantOr(null);for(let d of i){let i=n.getTile(d);if(f&&!i.patternsLoaded())continue;let C=i.getBucket(r);if(!C)continue;let w=C.programConfigurations.get(r.id),T=e.useProgram(h,w),E=e.style.map.terrain&&e.style.map.terrain.getTerrainData(d);f&&(e.context.activeTexture.set(l.TEXTURE0),i.imageAtlasTexture.bind(l.LINEAR,l.CLAMP_TO_EDGE),w.updatePaintBuffers(p)),Ti(w,u,S,i,r);let D=y.getProjectionData({overscaledTileID:d,applyGlobeMatrix:!c,applyTerrainMatrix:!0}),O=t.aL(y,i,b,x);if(s){_=C.indexBuffer2,v=C.segments2;let t=[l.drawingBufferWidth,l.drawingBufferHeight];g=h===`fillOutlinePattern`&&f?qn(e,p,i,t,O):Kn(t,O)}else _=C.indexBuffer,v=C.segments,g=f?Gn(e,p,i,O):{u_fill_translate:O};let k=e.stencilModeForClipping(d);T.draw(e.context,m,a,k,o,K.backCCW,g,E,D,r.id,C.layoutVertexBuffer,_,v,r.paint,e.transform.zoom,w)}}function Di(e,n,r,i,a,o,s,c){let l=e.context,u=l.gl,d=`fill-extrusion-pattern`,f=r.paint.get(d),p=f.constantOr(1),m=r.getCrossfadeParameters(),h=r.paint.get(`fill-extrusion-opacity`),g=f.constantOr(null),_=e.transform;for(let f of i){let i=n.getTile(f),v=i.getBucket(r);if(!v)continue;let y=e.style.map.terrain&&e.style.map.terrain.getTerrainData(f),b=v.programConfigurations.get(r.id),x=e.useProgram(p?`fillExtrusionPattern`:`fillExtrusion`,b);p&&(e.context.activeTexture.set(u.TEXTURE0),i.imageAtlasTexture.bind(u.LINEAR,u.CLAMP_TO_EDGE),b.updatePaintBuffers(m));let S=_.getProjectionData({overscaledTileID:f,applyGlobeMatrix:!c,applyTerrainMatrix:!0});Ti(b,d,g,i,r);let C=t.aL(_,i,r.paint.get(`fill-extrusion-translate`),r.paint.get(`fill-extrusion-translate-anchor`)),w=r.paint.get(`fill-extrusion-vertical-gradient`),T=p?Wn(e,w,h,C,f,m,i):Un(e,w,h,C);x.draw(l,l.gl.TRIANGLES,a,o,s,K.backCCW,T,y,S,r.id,v.layoutVertexBuffer,v.indexBuffer,v.segments,r.paint,e.transform.zoom,b,e.style.map.terrain&&v.centroidVertexBuffer)}}function Oi(e,t,n,r,i,a,o,s,c){let l=e.style.projection,u=e.context,d=e.transform,f=u.gl,p=[`#define NUM_ILLUMINATION_SOURCES ${n.paint.get(`hillshade-highlight-color`).values.length}`],m=e.useProgram(`hillshade`,null,!1,p),h=!e.options.moving;for(let p of r){let r=t.getTile(p),g=r.fbo;if(!g)continue;let _=l.getMeshFromTileID(u,p.canonical,s,!0,`raster`),v=e.style.map.terrain?.getTerrainData(p);u.activeTexture.set(f.TEXTURE0),f.bindTexture(f.TEXTURE_2D,g.colorAttachment.get());let y=d.getProjectionData({overscaledTileID:p,aligned:h,applyGlobeMatrix:!c,applyTerrainMatrix:!0});m.draw(u,f.TRIANGLES,a,i[p.overscaledZ],o,K.backCCW,er(e,r,n),v,y,n.id,_.vertexBuffer,_.indexBuffer,_.segments)}}function ki(e,n,r,i,a,o,s,c,l){let u=e.style.projection,d=e.context,f=e.transform,p=d.gl,m=e.useProgram(`colorRelief`),h=!e.options.moving,g=r.paint.get(`resampling`)===`nearest`?p.NEAREST:p.LINEAR,_=!0,v=0;for(let y of i){let i=n.getTile(y),b=i.dem;if(_){let e=p.getParameter(p.MAX_TEXTURE_SIZE),{elevationTexture:t,colorTexture:n}=r.getColorRampTextures(d,e,b.getUnpackVector());d.activeTexture.set(p.TEXTURE1),t.bind(p.NEAREST,p.CLAMP_TO_EDGE),d.activeTexture.set(p.TEXTURE4),n.bind(p.LINEAR,p.CLAMP_TO_EDGE),_=!1,v=t.size[0]}if(!b||!b.data)continue;let x=b.stride,S=b.getPixels();if(d.activeTexture.set(p.TEXTURE0),d.pixelStoreUnpackPremultiplyAlpha.set(!1),i.demTexture=i.demTexture||e.getTileTexture(x),i.demTexture){let e=i.demTexture;e.update(S,{premultiply:!1}),e.bind(g,p.CLAMP_TO_EDGE)}else i.demTexture=new t.T(d,S,p.RGBA,{premultiply:!1}),i.demTexture.bind(g,p.CLAMP_TO_EDGE);let C=u.getMeshFromTileID(d,y.canonical,c,!0,`raster`),w=e.style.map.terrain?.getTerrainData(y),T=f.getProjectionData({overscaledTileID:y,aligned:h,applyGlobeMatrix:!l,applyTerrainMatrix:!0});m.draw(d,p.TRIANGLES,o,a[y.overscaledZ],s,K.backCCW,rr(r,i.dem,v),w,T,r.id,C.vertexBuffer,C.indexBuffer,C.segments)}}let Ai=[new t.P(0,0),new t.P(t.a5,0),new t.P(t.a5,t.a5),new t.P(0,t.a5)];function ji(e,t,n,r,i,a,o,s,c=!1,l=!1){let u=r[r.length-1].overscaledZ,d=e.context,f=d.gl,p=e.useProgram(`raster`),m=e.transform,h=e.style.projection,g=e.colorModeForRenderPass(),_=!e.options.moving,v=n.paint.get(`raster-opacity`),y=n.paint.get(`resampling`)===`nearest`||n.paint.get(`raster-resampling`)===`nearest`?f.NEAREST:f.LINEAR,b=n.paint.get(`raster-fade-duration`),x=!!e.style.map.terrain;for(let S of r){let r=e.getDepthModeForSublayer(S.overscaledZ-u,v===1?q.ReadWrite:q.ReadOnly,f.LESS),C=t.getTile(S);d.activeTexture.set(f.TEXTURE0),C.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST),d.activeTexture.set(f.TEXTURE1);let{parentTile:w,parentScaleBy:T,parentTopLeft:E,fadeValues:D}=Mi(C,t,b,x);C.fadeOpacity=D.tileOpacity,w?(w.fadeOpacity=D.parentTileOpacity,w.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST)):C.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST),C.texture.useMipmap&&d.extTextureFilterAnisotropic&&e.transform.pitch>e.options.anisotropicFilterPitch&&f.texParameterf(f.TEXTURE_2D,d.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,d.extTextureFilterAnisotropicMax);let O=e.style.map.terrain&&e.style.map.terrain.getTerrainData(S),k=m.getProjectionData({overscaledTileID:S,aligned:_,applyGlobeMatrix:!l,applyTerrainMatrix:!0}),A=dr(E,T,D.fadeMix,n,s),ee=h.getMeshFromTileID(d,S.canonical,a,o,`raster`);p.draw(d,f.TRIANGLES,r,i?i[S.overscaledZ]:J.disabled,g,c?K.frontCCW:K.backCCW,A,O,k,n.id,ee.vertexBuffer,ee.indexBuffer,ee.segments)}}function Mi(e,n,r,i){let a={parentTile:null,parentScaleBy:1,parentTopLeft:[0,0],fadeValues:{tileOpacity:1,parentTileOpacity:1,fadeMix:{opacity:1,mix:0}}};if(r===0||i)return a;if(e.fadingParentID){let i=n.getLoadedTile(e.fadingParentID);if(!i)return a;let o=2**(i.tileID.overscaledZ-e.tileID.overscaledZ);return{parentTile:i,parentScaleBy:o,parentTopLeft:[e.tileID.canonical.x*o%1,e.tileID.canonical.y*o%1],fadeValues:function(e,n,r){let i=l(),a=(i-n.timeAdded)/r,o=e.fadingDirection===ke.Incoming,s=t.ak((i-e.timeAdded)/r,0,1),c=t.ak(1-a,0,1),u=o?s:c;return{tileOpacity:u,parentTileOpacity:o?c:s,fadeMix:{opacity:1,mix:1-u}}}(e,i,r)}}return e.selfFading?{parentTile:null,parentScaleBy:1,parentTopLeft:[0,0],fadeValues:function(e,n){let r=(l()-e.timeAdded)/n,i=t.ak(r,0,1);return{tileOpacity:i,fadeMix:{opacity:i,mix:0}}}(e,r)}:a}let Ni=new t.bn(1,0,0,1),Pi=new t.bn(0,1,0,1),Fi=new t.bn(0,0,1,1),Ii=new t.bn(1,0,1,1),Li=new t.bn(0,1,1,1);function Ri(e,t,n,r){Bi(e,0,t+n/2,e.transform.width,n,r)}function zi(e,t,n,r){Bi(e,t-n/2,0,n,e.transform.height,r)}function Bi(e,t,n,r,i,a){let o=e.context,s=o.gl;s.enable(s.SCISSOR_TEST),s.scissor(t*e.pixelRatio,n*e.pixelRatio,r*e.pixelRatio,i*e.pixelRatio),o.clear({color:a}),s.disable(s.SCISSOR_TEST)}function Vi(e,n,r){let i=e.context,a=i.gl,o=e.useProgram(`debug`),s=q.disabled,c=J.disabled,l=e.colorModeForRenderPass(),u=`$debug`,d=e.style.map.terrain&&e.style.map.terrain.getTerrainData(r);i.activeTexture.set(a.TEXTURE0);let f=n.getTileByID(r.key).latestRawTileData,p=Math.floor((f&&f.byteLength||0)/1024),m=n.getTile(r).tileSize,h=512/Math.min(m,512)*(r.overscaledZ/e.transform.zoom)*.5,g=r.canonical.toString();r.overscaledZ!==r.canonical.z&&(g+=` => ${r.overscaledZ}`),function(e,t){e.initDebugOverlayCanvas();let n=e.debugOverlayCanvas,r=e.context.gl,i=e.debugOverlayCanvas.getContext(`2d`);i.clearRect(0,0,n.width,n.height),i.shadowColor=`white`,i.shadowBlur=2,i.lineWidth=1.5,i.strokeStyle=`white`,i.textBaseline=`top`,i.font=`bold 36px Open Sans, sans-serif`,i.fillText(t,5,5),i.strokeText(t,5,5),e.debugOverlayTexture.update(n),e.debugOverlayTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)}(e,`${g} ${p}kB`);let _=e.transform.getProjectionData({overscaledTileID:r,applyGlobeMatrix:!0,applyTerrainMatrix:!0});o.draw(i,a.TRIANGLES,s,c,en.alphaBlended,K.disabled,Zn(t.bn.transparent,h),null,_,u,e.debugBuffer,e.quadTriangleIndexBuffer,e.debugSegments),o.draw(i,a.LINE_STRIP,s,c,l,K.disabled,Zn(t.bn.red),d,_,u,e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments)}function Hi(e,t,n,r){let{isRenderingGlobe:i}=r,a=e.context,o=a.gl,s=e.transform,c=e.colorModeForRenderPass(),l=e.getDepthModeFor3D(),u=e.useProgram(`terrain`);a.bindFramebuffer.set(null),a.viewport.set([0,0,e.width,e.height]);for(let r of n){let n=t.getTerrainMesh(r.tileID),d=e.renderToTexture.getTexture(r),f=t.getTerrainData(r.tileID);a.activeTexture.set(o.TEXTURE0),o.bindTexture(o.TEXTURE_2D,d.texture);let p=Rn(t.getMeshFrameDelta(s.zoom),s.calculateFogMatrix(r.tileID.toUnwrapped()),e.style.sky,s.pitch,i),m=s.getProjectionData({overscaledTileID:r.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0});u.draw(a,o.TRIANGLES,l,J.disabled,c,K.backCCW,p,f,m,`terrain`,n.vertexBuffer,n.indexBuffer,n.segments)}}function Ui(e,n){if(!n.mesh){let r=new t.aU;r.emplaceBack(-1,-1),r.emplaceBack(1,-1),r.emplaceBack(1,1),r.emplaceBack(-1,1);let i=new t.aW;i.emplaceBack(0,1,2),i.emplaceBack(0,2,3),n.mesh=new Lt(e.createVertexBuffer(r,Rt.members),e.createIndexBuffer(i),t.aV.simpleSegment(0,0,r.length,i.length))}return n.mesh}class Wi{constructor(e,n){this.context=new oi(e),this.transform=n,this._tileTextures={},this.terrainFacilitator={dirty:!0,matrix:t.ao(new Float64Array(16)),renderTime:0},this.setup(),this.numSublayers=L.maxOverzooming+L.maxUnderzooming+1,this.depthEpsilon=1/2**16,this.crossTileSymbolIndex=new W}resize(e,t,n){if(this.width=Math.floor(e*n),this.height=Math.floor(t*n),this.pixelRatio=n,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(let e of this.style._order)this.style._layers[e].resize()}setup(){let e=this.context,n=new t.aU;n.emplaceBack(0,0),n.emplaceBack(t.a5,0),n.emplaceBack(0,t.a5),n.emplaceBack(t.a5,t.a5),this.tileExtentBuffer=e.createVertexBuffer(n,Rt.members),this.tileExtentSegments=t.aV.simpleSegment(0,0,4,2);let r=new t.aU;r.emplaceBack(0,0),r.emplaceBack(t.a5,0),r.emplaceBack(0,t.a5),r.emplaceBack(t.a5,t.a5),this.debugBuffer=e.createVertexBuffer(r,Rt.members),this.debugSegments=t.aV.simpleSegment(0,0,4,5);let i=new t.cf;i.emplaceBack(0,0,0,0),i.emplaceBack(t.a5,0,t.a5,0),i.emplaceBack(0,t.a5,0,t.a5),i.emplaceBack(t.a5,t.a5,t.a5,t.a5),this.rasterBoundsBuffer=e.createVertexBuffer(i,In.members),this.rasterBoundsSegments=t.aV.simpleSegment(0,0,4,2);let a=new t.aU;a.emplaceBack(0,0),a.emplaceBack(t.a5,0),a.emplaceBack(0,t.a5),a.emplaceBack(t.a5,t.a5),this.rasterBoundsBufferPosOnly=e.createVertexBuffer(a,Rt.members),this.rasterBoundsSegmentsPosOnly=t.aV.simpleSegment(0,0,4,5);let o=new t.aU;o.emplaceBack(0,0),o.emplaceBack(1,0),o.emplaceBack(0,1),o.emplaceBack(1,1),this.viewportBuffer=e.createVertexBuffer(o,Rt.members),this.viewportSegments=t.aV.simpleSegment(0,0,4,2);let s=new t.cg;s.emplaceBack(0),s.emplaceBack(1),s.emplaceBack(3),s.emplaceBack(2),s.emplaceBack(0),this.tileBorderIndexBuffer=e.createIndexBuffer(s);let c=new t.aW;c.emplaceBack(1,0,2),c.emplaceBack(1,2,3),this.quadTriangleIndexBuffer=e.createIndexBuffer(c);let l=this.context.gl;this.stencilClearMode=new J({func:l.ALWAYS,mask:0},0,255,l.ZERO,l.ZERO,l.ZERO),this.tileExtentMesh=new Lt(this.tileExtentBuffer,this.quadTriangleIndexBuffer,this.tileExtentSegments)}clearStencil(){let e=this.context,n=e.gl;this.nextStencilID=1,this.currentStencilSource=void 0;let r=t.N();t.c5(r,0,this.width,this.height,0,0,1),t.Q(r,r,[n.drawingBufferWidth,n.drawingBufferHeight,0]);let i={mainMatrix:r,tileMercatorCoords:[0,0,1,1],clippingPlane:[0,0,0,0],projectionTransition:0,fallbackMatrix:r};this.useProgram(`clippingMask`,null,!0).draw(e,n.TRIANGLES,q.disabled,this.stencilClearMode,en.disabled,K.disabled,null,null,i,`$clipping`,this.viewportBuffer,this.quadTriangleIndexBuffer,this.viewportSegments)}_renderTileClippingMasks(e,t,n){if(this.currentStencilSource===e.source||!e.isTileClipped()||!t||!t.length)return;this.currentStencilSource=e.source,this.nextStencilID+t.length>256&&this.clearStencil();let r=this.context;r.setColorMode(en.disabled),r.setDepthMode(q.disabled);let i={};for(let e of t)i[e.key]=this.nextStencilID++;this._renderTileMasks(i,t,n,!0),this._renderTileMasks(i,t,n,!1),this._tileClippingMaskIDs=i}_renderTileMasks(e,t,n,r){let i=this.context,a=i.gl,o=this.style.projection,s=this.transform,c=this.useProgram(`clippingMask`);for(let l of t){let t=e[l.key],u=this.style.map.terrain&&this.style.map.terrain.getTerrainData(l),d=o.getMeshFromTileID(this.context,l.canonical,r,!0,`stencil`),f=s.getProjectionData({overscaledTileID:l,applyGlobeMatrix:!n,applyTerrainMatrix:!0});c.draw(i,a.TRIANGLES,q.disabled,new J({func:a.ALWAYS,mask:0},t,255,a.KEEP,a.KEEP,a.REPLACE),en.disabled,n?K.disabled:K.backCCW,null,u,f,`$clipping`,d.vertexBuffer,d.indexBuffer,d.segments)}}_renderTilesDepthBuffer(){let e=this.context,t=e.gl,n=this.style.projection,r=this.transform,i=this.useProgram(`depth`),a=this.getDepthModeFor3D(),o=Ue(r,{tileSize:r.tileSize});for(let s of o){let o=this.style.map.terrain&&this.style.map.terrain.getTerrainData(s),c=n.getMeshFromTileID(this.context,s.canonical,!0,!0,`raster`),l=r.getProjectionData({overscaledTileID:s,applyGlobeMatrix:!0,applyTerrainMatrix:!0});i.draw(e,t.TRIANGLES,a,J.disabled,en.disabled,K.backCCW,null,o,l,`$clipping`,c.vertexBuffer,c.indexBuffer,c.segments)}}stencilModeFor3D(){this.currentStencilSource=void 0,this.nextStencilID+1>256&&this.clearStencil();let e=this.nextStencilID++,t=this.context.gl;return new J({func:t.NOTEQUAL,mask:255},e,255,t.KEEP,t.KEEP,t.REPLACE)}stencilModeForClipping(e){let t=this.context.gl;return new J({func:t.EQUAL,mask:255},this._tileClippingMaskIDs[e.key],0,t.KEEP,t.KEEP,t.REPLACE)}getStencilConfigForOverlapAndUpdateStencilID(e){let t=this.context.gl,n=e.sort(((e,t)=>t.overscaledZ-e.overscaledZ)),r=n[n.length-1].overscaledZ,i=n[0].overscaledZ-r+1;if(i>1){this.currentStencilSource=void 0,this.nextStencilID+i>256&&this.clearStencil();let e={};for(let n=0;n<i;n++)e[n+r]=new J({func:t.GEQUAL,mask:255},n+this.nextStencilID,255,t.KEEP,t.KEEP,t.REPLACE);return this.nextStencilID+=i,[e,n]}return[{[r]:J.disabled},n]}stencilConfigForOverlapTwoPass(e){let t=this.context.gl,n=e.sort(((e,t)=>t.overscaledZ-e.overscaledZ)),r=n[n.length-1].overscaledZ,i=n[0].overscaledZ-r+1;if(this.clearStencil(),i>1){let e={},a={};for(let n=0;n<i;n++)e[n+r]=new J({func:t.GREATER,mask:255},i+1+n,255,t.KEEP,t.KEEP,t.REPLACE),a[n+r]=new J({func:t.GREATER,mask:255},1+n,255,t.KEEP,t.KEEP,t.REPLACE);return this.nextStencilID=2*i+1,[e,a,n]}return this.nextStencilID=3,[{[r]:new J({func:t.GREATER,mask:255},2,255,t.KEEP,t.KEEP,t.REPLACE)},{[r]:new J({func:t.GREATER,mask:255},1,255,t.KEEP,t.KEEP,t.REPLACE)},n]}colorModeForRenderPass(){let e=this.context.gl;if(this._showOverdrawInspector){let n=1/8;return new en([e.CONSTANT_COLOR,e.ONE],new t.bn(n,n,n,0),[!0,!0,!0,!0])}return this.renderPass===`opaque`?en.unblended:en.alphaBlended}getDepthModeForSublayer(e,t,n){if(!this.opaquePassEnabledForLayer())return q.disabled;let r=1-((1+this.currentLayer)*this.numSublayers+e)*this.depthEpsilon;return new q(n||this.context.gl.LEQUAL,t,[r,r])}getDepthModeFor3D(){return new q(this.context.gl.LEQUAL,q.ReadWrite,this.depthRangeFor3D)}opaquePassEnabledForLayer(){return this.currentLayer<this.opaquePassCutoff}render(e,n){var r;this.style=e,this.options=n,this.lineAtlas=e.lineAtlas,this.imageManager=e.imageManager,this.glyphManager=e.glyphManager,this.symbolFadeChange=e.placement.symbolFadeChange(l()),this.imageManager.beginFrame();let i=this.style._order,a=this.style.tileManagers,o={},s={},c={},u={isRenderingToTexture:!1,isRenderingGlobe:e.projection?.transitionState>0};for(let e in a){let t=a[e];t.used&&t.prepare(this.context),o[e]=t.getVisibleCoordinates(!1),s[e]=o[e].slice().reverse(),c[e]=t.getVisibleCoordinates(!0).reverse()}this.opaquePassCutoff=1/0;for(let e=0;e<i.length;e++)if(this.style._layers[i[e]].is3D()){this.opaquePassCutoff=e;break}this.maybeDrawDepthAndCoords(!1),this.renderToTexture&&(this.renderToTexture.prepareForRender(this.style,this.transform.zoom),this.opaquePassCutoff=0),this.renderPass=`offscreen`;for(let e of i){let t=this.style._layers[e];if(!t.hasOffscreenPass()||t.isHidden(this.transform.zoom))continue;let n=s[t.source];(t.type===`custom`||n.length)&&this.renderLayer(this,a[t.source],t,n,u)}if((r=this.style.projection)==null||r.updateGPUdependent({context:this.context,useProgram:e=>this.useProgram(e)}),this.context.viewport.set([0,0,this.width,this.height]),this.context.bindFramebuffer.set(null),this.context.clear({color:n.showOverdrawInspector?t.bn.black:t.bn.transparent,depth:1}),this.clearStencil(),this.style.sky&&function(e,t){let n=e.context,r=n.gl,i=((e,t,n)=>{let r=Math.cos(t.rollInRadians),i=Math.sin(t.rollInRadians),a=Fe(t),o=t.getProjectionData({overscaledTileID:null,applyGlobeMatrix:!0,applyTerrainMatrix:!0}).projectionTransition;return{u_sky_color:e.properties.get(`sky-color`),u_horizon_color:e.properties.get(`horizon-color`),u_horizon:[(t.width/2-a*i)*n,(t.height/2+a*r)*n],u_horizon_normal:[-i,r],u_sky_horizon_blend:e.properties.get(`sky-horizon-blend`)*t.height/2*n,u_sky_blend:o}})(t,e.style.map.transform,e.pixelRatio),a=new q(r.LEQUAL,q.ReadWrite,[0,1]),o=J.disabled,s=e.colorModeForRenderPass(),c=e.useProgram(`sky`),l=Ui(n,t);c.draw(n,r.TRIANGLES,a,o,s,K.disabled,i,null,void 0,`sky`,l.vertexBuffer,l.indexBuffer,l.segments)}(this,this.style.sky),this._showOverdrawInspector=n.showOverdrawInspector,this.depthRangeFor3D=[0,1-(e._order.length+2)*this.numSublayers*this.depthEpsilon],!this.renderToTexture)for(this.renderPass=`opaque`,this.currentLayer=i.length-1;this.currentLayer>=0;this.currentLayer--){let e=this.style._layers[i[this.currentLayer]],t=a[e.source],n=o[e.source];this._renderTileClippingMasks(e,n,!1),this.renderLayer(this,t,e,n,u)}this.renderPass=`translucent`;let d=!1;for(this.currentLayer=0;this.currentLayer<i.length;this.currentLayer++){let e=this.style._layers[i[this.currentLayer]],t=a[e.source];if(this.renderToTexture&&this.renderToTexture.renderLayer(e,u))continue;this.opaquePassEnabledForLayer()||d||(d=!0,u.isRenderingGlobe&&!this.style.map.terrain&&this._renderTilesDepthBuffer());let n=(e.type===`symbol`?c:s)[e.source];this._renderTileClippingMasks(e,o[e.source],!!this.renderToTexture),this.renderLayer(this,t,e,n,u)}if(u.isRenderingGlobe&&function(e,n,r){let i=e.context,a=i.gl,o=e.useProgram(`atmosphere`),s=new q(a.LEQUAL,q.ReadOnly,[0,1]),c=e.transform,l=function(e,n){let r=e.properties.get(`position`),i=[-r.x,-r.y,-r.z],a=t.ao(new Float64Array(16));return e.properties.get(`anchor`)===`map`&&(t.be(a,a,n.rollInRadians),t.bf(a,a,-n.pitchInRadians),t.be(a,a,n.bearingInRadians),t.bf(a,a,n.center.lat*Math.PI/180),t.bH(a,a,-n.center.lng*Math.PI/180)),t.ce(i,i,a),i}(r,e.transform),u=c.getProjectionData({overscaledTileID:null,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),d=n.properties.get(`atmosphere-blend`)*u.projectionTransition;if(d===0)return;let f=gn(c.worldSize,c.center.lat),p=c.inverseProjectionMatrix,m=new Float64Array(4);m[3]=1,t.aE(m,m,c.modelViewProjectionMatrix),m[0]/=m[3],m[1]/=m[3],m[2]/=m[3],m[3]=1,t.aE(m,m,p),m[0]/=m[3],m[1]/=m[3],m[2]/=m[3],m[3]=1;let h=((e,t,n,r,i)=>({u_sun_pos:e,u_atmosphere_blend:t,u_globe_position:n,u_globe_radius:r,u_inv_proj_matrix:i}))(l,d,[m[0],m[1],m[2]],f,p),g=Ui(i,n);o.draw(i,a.TRIANGLES,s,J.disabled,en.alphaBlended,K.disabled,h,null,null,`atmosphere`,g.vertexBuffer,g.indexBuffer,g.segments)}(this,this.style.sky,this.style.light),this.options.showTileBoundaries){let e=function(e,t){let n=null,r=Object.values(e._layers).flatMap((n=>n.source&&!n.isHidden(t)?[e.tileManagers[n.source]]:[])),i=r.filter((e=>e.getSource().type===`vector`)),a=r.filter((e=>e.getSource().type!==`vector`)),o=e=>{(!n||n.getSource().maxzoom<e.getSource().maxzoom)&&(n=e)};return i.forEach((e=>o(e))),n||a.forEach((e=>o(e))),n}(this.style,this.transform.zoom);e&&function(e,t,n){for(let r=0;r<n.length;r++)Vi(e,t,n[r])}(this,e,e.getVisibleCoordinates())}this.options.showPadding&&function(e){let t=e.transform.padding;Ri(e,e.transform.height-(t.top||0),3,Ni),Ri(e,t.bottom||0,3,Pi),zi(e,t.left||0,3,Fi),zi(e,e.transform.width-(t.right||0),3,Ii);let n=e.transform.centerPoint;(function(e,t,n,r){Bi(e,t-1,n-10,2,20,r),Bi(e,t-10,n-1,20,2,r)})(e,n.x,e.transform.height-n.y,Li)}(this),this.context.setDefault()}maybeDrawDepthAndCoords(e){if(!this.style||!this.style.map||!this.style.map.terrain)return;let n=this.terrainFacilitator.matrix,r=this.transform.modelViewProjectionMatrix,i=this.terrainFacilitator.dirty;i||=e?!t.ch(n,r):!t.ci(n,r),i||=this.style.map.terrain.tileManager.anyTilesAfterTime(this.terrainFacilitator.renderTime),i&&(t.cj(n,r),this.terrainFacilitator.renderTime=Date.now(),this.terrainFacilitator.dirty=!1,function(e,n){let r=e.context,i=r.gl,a=e.transform,o=en.unblended,s=new q(i.LEQUAL,q.ReadWrite,[0,1]),c=n.tileManager.getRenderableTiles(),l=e.useProgram(`terrainDepth`);r.bindFramebuffer.set(n.getFramebuffer(`depth`).framebuffer),r.viewport.set([0,0,e.width/devicePixelRatio,e.height/devicePixelRatio]),r.clear({color:t.bn.transparent,depth:1});for(let e of c){let t=n.getTerrainMesh(e.tileID),c=n.getTerrainData(e.tileID),u=a.getProjectionData({overscaledTileID:e.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0}),d={u_ele_delta:n.getMeshFrameDelta(a.zoom)};l.draw(r,i.TRIANGLES,s,J.disabled,o,K.backCCW,d,c,u,`terrain`,t.vertexBuffer,t.indexBuffer,t.segments)}r.bindFramebuffer.set(null),r.viewport.set([0,0,e.width,e.height])}(this,this.style.map.terrain),function(e,n){let r=e.context,i=r.gl,a=e.transform,o=en.unblended,s=new q(i.LEQUAL,q.ReadWrite,[0,1]),c=n.getCoordsTexture(),l=n.tileManager.getRenderableTiles(),u=e.useProgram(`terrainCoords`);r.bindFramebuffer.set(n.getFramebuffer(`coords`).framebuffer),r.viewport.set([0,0,e.width/devicePixelRatio,e.height/devicePixelRatio]),r.clear({color:t.bn.transparent,depth:1}),n.coordsIndex=[];for(let e of l){let t=n.getTerrainMesh(e.tileID),l=n.getTerrainData(e.tileID);r.activeTexture.set(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,c.texture);let d={u_terrain_coords_id:(255-n.coordsIndex.length)/255,u_texture:0,u_ele_delta:n.getMeshFrameDelta(a.zoom)},f=a.getProjectionData({overscaledTileID:e.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0});u.draw(r,i.TRIANGLES,s,J.disabled,o,K.backCCW,d,l,f,`terrain`,t.vertexBuffer,t.indexBuffer,t.segments),n.coordsIndex.push(e.tileID.key)}r.bindFramebuffer.set(null),r.viewport.set([0,0,e.width,e.height])}(this,this.style.map.terrain))}renderLayer(e,n,r,i,a){r.isHidden(this.transform.zoom)||(r.type===`background`||r.type===`custom`||(i||[]).length)&&(this.id=r.id,t.aQ(r)?function(e,n,r,i,a,o){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:s}=o,c=J.disabled,l=e.colorModeForRenderPass();(r._unevaluatedLayout.hasValue(`text-variable-anchor`)||r._unevaluatedLayout.hasValue(`text-variable-anchor-offset`))&&function(e,n,r,i,a,o,s,c,l){let u=n.transform,d=n.style.map.terrain,f=a===`map`,p=o===`map`;for(let a of e){let e=i.getTile(a),o=e.getBucket(r);if(!o||!o.text||!o.text.segments.get().length)continue;let m=t.av(o.textSizeData,u.zoom),h=t.aK(e,1,n.transform.zoom),g=B(f,n.transform,h),_=r.layout.get(`icon-text-fit`)!==`none`&&o.hasIconData();if(m){let n=2**(u.zoom-e.tileID.overscaledZ),r=d?(e,t)=>d.getElevation(a,e,t):null;fi(o,f,p,l,u,g,n,m,_,t.aL(u,e,s,c),a.toUnwrapped(),r)}}}(i,e,r,n,r.layout.get(`text-rotation-alignment`),r.layout.get(`text-pitch-alignment`),r.paint.get(`text-translate`),r.paint.get(`text-translate-anchor`),a),r.paint.get(`icon-opacity`).constantOr(1)!==0&&mi(e,n,r,i,!1,r.paint.get(`icon-translate`),r.paint.get(`icon-translate-anchor`),r.layout.get(`icon-rotation-alignment`),r.layout.get(`icon-pitch-alignment`),r.layout.get(`icon-keep-upright`),c,l,s),r.paint.get(`text-opacity`).constantOr(1)!==0&&mi(e,n,r,i,!0,r.paint.get(`text-translate`),r.paint.get(`text-translate-anchor`),r.layout.get(`text-rotation-alignment`),r.layout.get(`text-pitch-alignment`),r.layout.get(`text-keep-upright`),c,l,s),n.map.showCollisionBoxes&&(ci(e,n,r,i,!0),ci(e,n,r,i,!1))}(e,n,r,i,this.style.placement.variableOffsets,a):t.ck(r)?function(e,n,r,i,a){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:o}=a,s=r.paint.get(`circle-opacity`),c=r.paint.get(`circle-stroke-width`),l=r.paint.get(`circle-stroke-opacity`),u=!r.layout.get(`circle-sort-key`).isConstant();if(s.constantOr(1)===0&&(c.constantOr(1)===0||l.constantOr(1)===0))return;let d=e.context,f=d.gl,p=e.transform,m=e.getDepthModeForSublayer(0,q.ReadOnly),h=J.disabled,g=e.colorModeForRenderPass(),_=[],v=p.getCircleRadiusCorrection();for(let a=0;a<i.length;a++){let s=i[a],c=n.getTile(s),l=c.getBucket(r);if(!l)continue;let d=r.paint.get(`circle-translate`),f=r.paint.get(`circle-translate-anchor`),m=t.aL(p,c,d,f),h=l.programConfigurations.get(r.id),g=e.useProgram(`circle`,h),y=l.layoutVertexBuffer,b=l.indexBuffer,x=e.style.map.terrain&&e.style.map.terrain.getTerrainData(s),S={programConfiguration:h,program:g,layoutVertexBuffer:y,indexBuffer:b,uniformValues:Jn(e,c,r,m,v),terrainData:x,projectionData:p.getProjectionData({overscaledTileID:s,applyGlobeMatrix:!o,applyTerrainMatrix:!0})};if(u){let e=l.segments.get();for(let n of e)_.push({segments:new t.aV([n]),sortKey:n.sortKey,state:S})}else _.push({segments:l.segments,sortKey:0,state:S})}u&&_.sort(((e,t)=>e.sortKey-t.sortKey));for(let t of _){let{programConfiguration:n,program:i,layoutVertexBuffer:a,indexBuffer:o,uniformValues:s,terrainData:c,projectionData:l}=t.state;i.draw(d,f.TRIANGLES,m,h,g,K.backCCW,s,c,l,r.id,a,o,t.segments,r.paint,e.transform.zoom,n)}}(e,n,r,i,a):t.cl(r)?function(e,n,r,i,a){if(r.paint.get(`heatmap-opacity`)===0)return;let o=e.context,{isRenderingToTexture:s,isRenderingGlobe:c}=a;if(e.style.map.terrain){for(let t of i){let i=n.getTile(t);n.hasRenderableParent(t)||(e.renderPass===`offscreen`?gi(e,i,r,t,c):e.renderPass===`translucent`&&_i(e,r,t,s,c))}o.viewport.set([0,0,e.width,e.height])}else e.renderPass===`offscreen`?function(e,n,r,i){let a=e.context,o=a.gl,s=e.transform,c=J.disabled,l=new en([o.ONE,o.ONE],t.bn.transparent,[!0,!0,!0,!0]);(function(e,n,r){let i=e.gl;e.activeTexture.set(i.TEXTURE1),e.viewport.set([0,0,n.width/4,n.height/4]);let a=r.heatmapFbos.get(t.cb);a?(i.bindTexture(i.TEXTURE_2D,a.colorAttachment.get()),e.bindFramebuffer.set(a.framebuffer)):(a=vi(e,n.width/4,n.height/4),r.heatmapFbos.set(t.cb,a))})(a,e,r),a.clear({color:t.bn.transparent});for(let t=0;t<i.length;t++){let u=i[t];if(n.hasRenderableParent(u))continue;let d=n.getTile(u),f=d.getBucket(r);if(!f)continue;let p=f.programConfigurations.get(r.id),m=e.useProgram(`heatmap`,p),h=s.getProjectionData({overscaledTileID:u,applyGlobeMatrix:!0,applyTerrainMatrix:!1}),g=s.getCircleRadiusCorrection();m.draw(a,o.TRIANGLES,q.disabled,c,l,K.backCCW,Qn(d,s.zoom,r.paint.get(`heatmap-intensity`),g),null,h,r.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,r.paint,s.zoom,p)}a.viewport.set([0,0,e.width,e.height])}(e,n,r,i):e.renderPass===`translucent`&&function(e,n){let r=e.context,i=r.gl;r.setColorMode(e.colorModeForRenderPass());let a=n.heatmapFbos.get(t.cb);a&&(r.activeTexture.set(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,a.colorAttachment.get()),r.activeTexture.set(i.TEXTURE1),yi(r,n).bind(i.LINEAR,i.CLAMP_TO_EDGE),e.useProgram(`heatmapTexture`).draw(r,i.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,$n(e,n,0,1),null,null,n.id,e.viewportBuffer,e.quadTriangleIndexBuffer,e.viewportSegments,n.paint,e.transform.zoom))}(e,r)}(e,n,r,i,a):t.cm(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:a}=i,o=n.paint.get(`line-opacity`),s=n.paint.get(`line-width`);if(o.constantOr(1)===0||s.constantOr(1)===0)return;let c=e.getDepthModeForSublayer(0,q.ReadOnly),l=e.colorModeForRenderPass(),u=n.paint.get(`line-dasharray`),d=u.constantOr(1),f=n.paint.get(`line-pattern`),p=f.constantOr(1),m=n.paint.get(`line-gradient`),h=n.getCrossfadeParameters(),g;g=p?`linePattern`:d&&m?`lineGradientSDF`:d?`lineSDF`:m?`lineGradient`:`line`;let _=e.context,v=_.gl,y=e.transform,b=!0;for(let i of r){let r=t.getTile(i);if(p&&!r.patternsLoaded())continue;let o=r.getBucket(n);if(!o)continue;let s=o.programConfigurations.get(n.id),x=e.context.program.get(),S=e.useProgram(g,s),C=b||S.program!==x,w=e.style.map.terrain&&e.style.map.terrain.getTerrainData(i),T=f.constantOr(null),E=u&&u.constantOr(null);if(T&&r.imageAtlas){let e=r.imageAtlas,t=e.patternPositions[T.to.toString()],n=e.patternPositions[T.from.toString()];t&&n&&s.setConstantPatternPositions(t,n)}else if(E){let t=n.layout.get(`line-cap`)===`round`,r=e.lineAtlas.getDash(E.to,t),i=e.lineAtlas.getDash(E.from,t);s.setConstantDashPositions(r,i)}let D=y.getProjectionData({overscaledTileID:i,applyGlobeMatrix:!a,applyTerrainMatrix:!0}),O=y.getPixelScale(),k;p?(k=or(e,r,n,O,h),xi(_,v,r,s,h)):d&&m?(k=cr(e,r,n,O,h,o.lineClipsArray.length),wi(e,t,_,v,n,o,i,s,h)):d?(k=sr(e,r,n,O,h),Si(e,_,v,s,C,h)):m?(k=ar(e,r,n,O,o.lineClipsArray.length),Ci(e,t,_,v,n,o,i)):k=ir(e,r,n,O);let A=e.stencilModeForClipping(i);S.draw(_,v.TRIANGLES,c,A,l,K.disabled,k,w,D,n.id,o.layoutVertexBuffer,o.indexBuffer,o.segments,n.paint,e.transform.zoom,s,o.layoutVertexBuffer2),b=!1}}(e,n,r,i,a):t.cn(r)?function(e,n,r,i,a){let o=r.paint.get(`fill-color`),s=r.paint.get(`fill-opacity`);if(s.constantOr(1)===0)return;let{isRenderingToTexture:c}=a,l=e.colorModeForRenderPass(),u=r.paint.get(`fill-pattern`),d=e.opaquePassEnabledForLayer()&&!u.constantOr(1)&&o.constantOr(t.bn.transparent).a===1&&s.constantOr(0)===1?`opaque`:`translucent`;e.renderPass===d&&Ei(e,n,r,i,e.getDepthModeForSublayer(1,e.renderPass===`opaque`?q.ReadWrite:q.ReadOnly),l,!1,c),e.renderPass===`translucent`&&r.paint.get(`fill-antialias`)&&Ei(e,n,r,i,e.getDepthModeForSublayer(r.getPaintProperty(`fill-outline-color`)?2:0,q.ReadOnly),l,!0,c)}(e,n,r,i,a):t.co(r)?function(e,t,n,r,i){let a=n.paint.get(`fill-extrusion-opacity`);if(a===0)return;let{isRenderingToTexture:o}=i;if(e.renderPass===`translucent`){let i=new q(e.context.gl.LEQUAL,q.ReadWrite,e.depthRangeFor3D);if(a!==1||n.paint.get(`fill-extrusion-pattern`).constantOr(1))Di(e,t,n,r,i,J.disabled,en.disabled,o),Di(e,t,n,r,i,e.stencilModeFor3D(),e.colorModeForRenderPass(),o);else{let a=e.colorModeForRenderPass();Di(e,t,n,r,i,J.disabled,a,o)}}}(e,n,r,i,a):t.cp(r)?function(e,n,r,i,a){if(e.renderPass!==`offscreen`&&e.renderPass!==`translucent`)return;let{isRenderingToTexture:o}=a,s=e.context,c=e.style.projection.useSubdivision,l=e.getDepthModeForSublayer(0,q.ReadOnly),u=e.colorModeForRenderPass();if(e.renderPass===`offscreen`)(function(e,n,r,i,a,o,s){let c=e.context,l=c.gl,u=i.paint.get(`resampling`)===`nearest`?l.NEAREST:l.LINEAR;for(let d of r){let r=n.getTile(d),f=r.dem;if(!f||!f.data||!r.needsHillshadePrepare)continue;let p=f.dim,m=f.stride,h=f.getPixels();if(c.activeTexture.set(l.TEXTURE1),c.pixelStoreUnpackPremultiplyAlpha.set(!1),r.demTexture=r.demTexture||e.getTileTexture(m),r.demTexture){let e=r.demTexture;e.update(h,{premultiply:!1}),e.bind(l.NEAREST,l.CLAMP_TO_EDGE)}else r.demTexture=new t.T(c,h,l.RGBA,{premultiply:!1}),r.demTexture.bind(l.NEAREST,l.CLAMP_TO_EDGE);c.activeTexture.set(l.TEXTURE0);let g=r.fbo;if(!g){let e=new t.T(c,{width:p,height:p,data:null},l.RGBA);e.bind(u,l.CLAMP_TO_EDGE),g=r.fbo=c.createFramebuffer(p,p,!0,!1),g.colorAttachment.set(e.texture)}c.bindFramebuffer.set(g.framebuffer),c.viewport.set([0,0,p,p]),e.useProgram(`hillshadePrepare`).draw(c,l.TRIANGLES,a,o,s,K.disabled,tr(r.tileID,f),null,null,i.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments),r.needsHillshadePrepare=!1}})(e,n,i,r,l,J.disabled,u),s.viewport.set([0,0,e.width,e.height]);else if(e.renderPass===`translucent`)if(c){let[t,a,s]=e.stencilConfigForOverlapTwoPass(i);Oi(e,n,r,s,t,l,u,!1,o),Oi(e,n,r,s,a,l,u,!0,o)}else{let[t,a]=e.getStencilConfigForOverlapAndUpdateStencilID(i);Oi(e,n,r,a,t,l,u,!1,o)}}(e,n,r,i,a):t.cq(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`||!r.length)return;let{isRenderingToTexture:a}=i,o=e.style.projection.useSubdivision,s=e.getDepthModeForSublayer(0,q.ReadOnly),c=e.colorModeForRenderPass();if(o){let[i,o,l]=e.stencilConfigForOverlapTwoPass(r);ki(e,t,n,l,i,s,c,!1,a),ki(e,t,n,l,o,s,c,!0,a)}else{let[i,o]=e.getStencilConfigForOverlapAndUpdateStencilID(r);ki(e,t,n,o,i,s,c,!1,a)}}(e,n,r,i,a):t.bS(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`||n.paint.get(`raster-opacity`)===0||!r.length)return;let{isRenderingToTexture:a}=i,o=t.getSource(),s=e.style.projection.useSubdivision;if(o instanceof ye)ji(e,t,n,r,null,!1,!1,o.tileCoords,o.flippedWindingOrder,a);else if(s){let[i,o,s]=e.stencilConfigForOverlapTwoPass(r);ji(e,t,n,s,i,!1,!0,Ai,!1,a),ji(e,t,n,s,o,!0,!0,Ai,!1,a)}else{let[i,o]=e.getStencilConfigForOverlapAndUpdateStencilID(r);ji(e,t,n,o,i,!1,!0,Ai,!1,a)}}(e,n,r,i,a):t.cr(r)?function(e,t,n,r,i){let a=n.paint.get(`background-color`),o=n.paint.get(`background-opacity`);if(o===0)return;let{isRenderingToTexture:s}=i,c=e.context,l=c.gl,u=e.style.projection,d=e.transform,f=d.tileSize,p=n.paint.get(`background-pattern`);if(e.isPatternMissing(p))return;let m=!p&&a.a===1&&o===1&&e.opaquePassEnabledForLayer()?`opaque`:`translucent`;if(e.renderPass!==m)return;let h=J.disabled,g=e.getDepthModeForSublayer(0,m===`opaque`?q.ReadWrite:q.ReadOnly),_=e.colorModeForRenderPass(),v=e.useProgram(p?`backgroundPattern`:`background`),y=r||Ue(d,{tileSize:f,terrain:e.style.map.terrain});p&&(c.activeTexture.set(l.TEXTURE0),e.imageManager.bind(e.context));let b=n.getCrossfadeParameters();for(let t of y){let r=d.getProjectionData({overscaledTileID:t,applyGlobeMatrix:!s,applyTerrainMatrix:!0}),i=p?_r(o,e,p,{tileID:t,tileSize:f},b):gr(o,a),m=e.style.map.terrain&&e.style.map.terrain.getTerrainData(t),y=u.getMeshFromTileID(c,t.canonical,!1,!0,`raster`);v.draw(c,l.TRIANGLES,g,h,_,K.backCCW,i,m,r,n.id,y.vertexBuffer,y.indexBuffer,y.segments)}}(e,0,r,i,a):t.cs(r)&&function(e,t,n,r){let{isRenderingGlobe:i}=r,a=e.context,o=n.implementation,s=e.style.projection,c=e.transform,l=c.getProjectionDataForCustomLayer(i),u={farZ:c.farZ,nearZ:c.nearZ,fov:c.fov*Math.PI/180,modelViewProjectionMatrix:c.modelViewProjectionMatrix,projectionMatrix:c.projectionMatrix,shaderData:{variantName:s.shaderVariantName,vertexShaderPrelude:`const float PI = 3.141592653589793;\nuniform mat4 u_projection_matrix;\n${s.shaderPreludeCode.vertexSource}`,define:s.shaderDefine},defaultProjectionData:l},d=o.renderingMode?o.renderingMode:`2d`;if(e.renderPass===`offscreen`){let t=o.prerender;t&&(e.setCustomLayerDefaults(),a.setColorMode(e.colorModeForRenderPass()),t.call(o,a.gl,u),a.setDirty(),e.setBaseState())}else if(e.renderPass===`translucent`){e.setCustomLayerDefaults(),a.setColorMode(e.colorModeForRenderPass()),a.setStencilMode(J.disabled);let t=d===`3d`?e.getDepthModeFor3D():e.getDepthModeForSublayer(0,q.ReadOnly);a.setDepthMode(t),o.render(a.gl,u),a.setDirty(),e.setBaseState(),a.bindFramebuffer.set(null)}}(e,0,r,a))}saveTileTexture(e){let t=this._tileTextures[e.size[0]];t?t.length<Wi.MAX_TEXTURE_POOL_SIZE_PER_BUCKET?t.push(e):e.destroy():this._tileTextures[e.size[0]]=[e]}getTileTexture(e){let t=this._tileTextures[e];return t&&t.length>0?t.pop():null}isPatternMissing(e){if(!e)return!1;if(!e.from||!e.to)return!0;let t=this.imageManager.getPattern(e.from.toString()),n=this.imageManager.getPattern(e.to.toString());return!t||!n}useProgram(e,t,n=!1,r=[]){this.cache=this.cache||{};let i=!!this.style.map.terrain,a=this.style.projection,o=n?It.projectionMercator:a.shaderPreludeCode,s=n?zt:a.shaderDefine,c=e+(t?t.cacheKey:``)+`/${n?Bt:a.shaderVariantName}`+(this._showOverdrawInspector?`/overdraw`:``)+(i?`/terrain`:``)+(r?`/${r.join(`/`)}`:``);return this.cache[c]||(this.cache[c]=new Vn(this.context,It[e],t,yr[e],this._showOverdrawInspector,i,o,s,r)),this.cache[c]}setCustomLayerDefaults(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()}setBaseState(){let e=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(e.FUNC_ADD)}initDebugOverlayCanvas(){this.debugOverlayCanvas??(this.debugOverlayCanvas=document.createElement(`canvas`),this.debugOverlayCanvas.width=512,this.debugOverlayCanvas.height=512,this.debugOverlayTexture=new t.T(this.context,this.debugOverlayCanvas,this.context.gl.RGBA))}destroy(){var e,t;if(this._tileTextures){for(let e in this._tileTextures){let t=this._tileTextures[e];if(t)for(let e of t)e.destroy()}this._tileTextures={}}if(this.tileExtentBuffer&&this.tileExtentBuffer.destroy(),this.debugBuffer&&this.debugBuffer.destroy(),this.rasterBoundsBuffer&&this.rasterBoundsBuffer.destroy(),this.rasterBoundsBufferPosOnly&&this.rasterBoundsBufferPosOnly.destroy(),this.viewportBuffer&&this.viewportBuffer.destroy(),this.tileBorderIndexBuffer&&this.tileBorderIndexBuffer.destroy(),this.quadTriangleIndexBuffer&&this.quadTriangleIndexBuffer.destroy(),this.tileExtentMesh&&((e=this.tileExtentMesh.vertexBuffer)==null||e.destroy()),this.tileExtentMesh&&((t=this.tileExtentMesh.indexBuffer)==null||t.destroy()),this.debugOverlayTexture&&this.debugOverlayTexture.destroy(),this.cache){for(let e in this.cache){let t=this.cache[e];t&&t.program&&this.context.gl.deleteProgram(t.program)}this.cache={}}this.context&&this.context.setDefault()}overLimit(){let{drawingBufferWidth:e,drawingBufferHeight:t}=this.context.gl;return this.width!==e||this.height!==t}}function Gi(e,t){let n,r=!1,i=null,a=null,o=()=>{i=null,r&&=(e.apply(a,n),i=setTimeout(o,t),!1)};return(...e)=>(r=!0,a=this,n=e,i||o(),i)}Wi.MAX_TEXTURE_POOL_SIZE_PER_BUCKET=50;class Ki{constructor(e){this._getCurrentHash=()=>{let e=window.location.hash.replace(`#`,``);if(this._hashName){let t;return e.split(`&`).map((e=>e.split(`=`))).forEach((e=>{e[0]===this._hashName&&(t=e)})),(t&&t[1]||``).split(`/`)}return e.split(`/`)},this._onHashChange=()=>{let e=this._getCurrentHash();if(!this._isValidHash(e))return!1;let t=this._map.dragRotate.isEnabled()&&this._map.touchZoomRotate.isEnabled()?+(e[3]||0):this._map.getBearing();return this._map.jumpTo({center:[+e[2],+e[1]],zoom:+e[0],bearing:t,pitch:+(e[4]||0)}),!0},this._updateHashUnthrottled=()=>{let e=window.location.href.replace(/(#.*)?$/,this.getHashString());window.history.replaceState(window.history.state,null,e)},this._removeHash=()=>{let e=this._getCurrentHash();if(e.length===0)return;let t=e.join(`/`),n=t;n.split(`&`).length>0&&(n=n.split(`&`)[0]),this._hashName&&(n=`${this._hashName}=${t}`);let r=window.location.hash.replace(n,``);r.startsWith(`#&`)?r=r.slice(0,1)+r.slice(2):r===`#`&&(r=``);let i=window.location.href.replace(/(#.+)?$/,r);i=i.replace(`&&`,`&`),window.history.replaceState(window.history.state,null,i)},this._updateHash=Gi(this._updateHashUnthrottled,300),this._hashName=e&&encodeURIComponent(e)}addTo(e){return this._map=e,addEventListener(`hashchange`,this._onHashChange,!1),this._map.on(`moveend`,this._updateHash),this}remove(){return removeEventListener(`hashchange`,this._onHashChange,!1),this._map.off(`moveend`,this._updateHash),clearTimeout(this._updateHash()),this._removeHash(),delete this._map,this}getHashString(e){let t=this._map.getCenter(),n=Math.round(100*this._map.getZoom())/100,r=10**Math.ceil((n*Math.LN2+Math.log(512/360/.5))/Math.LN10),i=Math.round(t.lng*r)/r,a=Math.round(t.lat*r)/r,o=this._map.getBearing(),s=this._map.getPitch(),c=``;if(c+=e?`/${i}/${a}/${n}`:`${n}/${a}/${i}`,(o||s)&&(c+=`/`+Math.round(10*o)/10),s&&(c+=`/${Math.round(s)}`),this._hashName){let e=this._hashName,t=!1,n=window.location.hash.slice(1).split(`&`).map((n=>{let r=n.split(`=`)[0];return r===e?(t=!0,`${r}=${c}`):n})).filter((e=>e));return t||n.push(`${e}=${c}`),`#${n.join(`&`)}`}return`#${c}`}_isValidHash(e){if(e.length<3||e.some(isNaN))return!1;try{new t.V(+e[2],+e[1])}catch{return!1}let n=+e[0],r=+(e[3]||0),i=+(e[4]||0);return n>=this._map.getMinZoom()&&n<=this._map.getMaxZoom()&&r>=-180&&r<=180&&i>=this._map.getMinPitch()&&i<=this._map.getMaxPitch()}}let qi={linearity:.3,easing:t.ct(0,0,.3,1)},Ji=t.e({deceleration:2500,maxSpeed:1400},qi),Yi=t.e({deceleration:20,maxSpeed:1400},qi),Xi=t.e({deceleration:1e3,maxSpeed:360},qi),Zi=t.e({deceleration:1e3,maxSpeed:90},qi),Qi=t.e({deceleration:1e3,maxSpeed:360},qi);class $i{constructor(e){this._map=e,this.clear()}clear(){this._inertiaBuffer=[]}record(e){this._drainInertiaBuffer(),this._inertiaBuffer.push({time:l(),settings:e})}_drainInertiaBuffer(){let e=this._inertiaBuffer,t=l();for(;e.length>0&&t-e[0].time>160;)e.shift()}_onMoveEnd(e){if(this._drainInertiaBuffer(),this._inertiaBuffer.length<2)return;let n={zoom:0,bearing:0,pitch:0,roll:0,pan:new t.P(0,0),pinchAround:void 0,around:void 0};for(let{settings:e}of this._inertiaBuffer)n.zoom+=e.zoomDelta||0,n.bearing+=e.bearingDelta||0,n.pitch+=e.pitchDelta||0,n.roll+=e.rollDelta||0,e.panDelta&&n.pan._add(e.panDelta),e.around&&(n.around=e.around),e.pinchAround&&(n.pinchAround=e.pinchAround);let r=this._inertiaBuffer[this._inertiaBuffer.length-1].time-this._inertiaBuffer[0].time,i={};if(n.pan.mag()){let a=ta(n.pan.mag(),r,t.e({},Ji,e||{})),o=n.pan.mult(a.amount/n.pan.mag()),s=this._map.cameraHelper.handlePanInertia(o,this._map.transform);i.center=s.easingCenter,i.offset=s.easingOffset,ea(i,a)}if(n.zoom){let e=ta(n.zoom,r,Yi);i.zoom=t.cu(this._map.transform.zoom+e.amount,this._map.getZoomSnap(),e.amount),ea(i,e)}if(n.bearing){let e=ta(n.bearing,r,Xi);i.bearing=this._map.transform.bearing+t.ak(e.amount,-179,179),ea(i,e)}if(n.pitch){let e=ta(n.pitch,r,Zi);i.pitch=this._map.transform.pitch+e.amount,ea(i,e)}if(n.roll){let e=ta(n.roll,r,Qi);i.roll=this._map.transform.roll+t.ak(e.amount,-179,179),ea(i,e)}if(i.zoom||i.bearing){let e=n.pinchAround===void 0?n.around:n.pinchAround;i.around=e?this._map.unproject(e):this._map.getCenter()}return this.clear(),t.e(i,{noMoveStart:!0})}}function ea(e,t){(!e.duration||e.duration<t.duration)&&(e.duration=t.duration,e.easing=t.easing)}function ta(e,n,r){let{maxSpeed:i,linearity:a,deceleration:o}=r,s=t.ak(e*a/(n/1e3),-i,i),c=Math.abs(s)/(o*a);return{easing:r.easing,duration:1e3*c,amount:c/2*s}}class na extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,n,r,i={}){r=r instanceof MouseEvent?r:new MouseEvent(e,r);let a=u.mousePos(n.getCanvas(),r),o=n.unproject(a);super(e,t.e({point:a,lngLat:o,originalEvent:r},i)),this._defaultPrevented=!1,this.target=n}}class ra extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,n,r){let i=e===`touchend`?r.changedTouches:r.touches,a=u.touchPos(n.getCanvasContainer(),i),o=a.map((e=>n.unproject(e))),s=a.reduce(((e,t,n,r)=>e.add(t.div(r.length))),new t.P(0,0));super(e,{points:a,point:s,lngLats:o,lngLat:n.unproject(s),originalEvent:r}),this._defaultPrevented=!1}}class ia extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,t,n){super(e,{originalEvent:n}),this._defaultPrevented=!1}}class aa{constructor(e,t){this._map=e,this._clickTolerance=t.clickTolerance}reset(){delete this._mousedownPos}wheel(e){return this._firePreventable(new ia(e.type,this._map,e))}mousedown(e,t){return this._mousedownPos=t,this._firePreventable(new na(e.type,this._map,e))}mouseup(e){this._map.fire(new na(e.type,this._map,e))}click(e,t){this._mousedownPos&&this._mousedownPos.dist(t)>=this._clickTolerance||this._map.fire(new na(e.type,this._map,e))}dblclick(e){return this._firePreventable(new na(e.type,this._map,e))}mouseover(e){this._map.fire(new na(e.type,this._map,e))}mouseout(e){this._map.fire(new na(e.type,this._map,e))}touchstart(e){return this._firePreventable(new ra(e.type,this._map,e))}touchmove(e){this._map.fire(new ra(e.type,this._map,e))}touchend(e){this._map.fire(new ra(e.type,this._map,e))}touchcancel(e){this._map.fire(new ra(e.type,this._map,e))}_firePreventable(e){if(this._map.fire(e),e.defaultPrevented)return{}}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class oa{constructor(e){this._map=e}reset(){this._delayContextMenu=!1,this._ignoreContextMenu=!0,delete this._contextMenuEvent}mousemove(e){this._map.fire(new na(e.type,this._map,e))}mousedown(){this._delayContextMenu=!0,this._ignoreContextMenu=!1}mouseup(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new na(`contextmenu`,this._map,this._contextMenuEvent)),delete this._contextMenuEvent)}contextmenu(e){this._delayContextMenu?this._contextMenuEvent=e:this._ignoreContextMenu||this._map.fire(new na(e.type,this._map,e)),this._map.listens(`contextmenu`)&&e.preventDefault()}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class sa{constructor(e){this._map=e}get transform(){return this._map._requestedCameraState||this._map.transform}get center(){return{lng:this.transform.center.lng,lat:this.transform.center.lat}}get zoom(){return this.transform.zoom}get pitch(){return this.transform.pitch}get bearing(){return this.transform.bearing}unproject(e){return this.transform.screenPointToLocation(t.P.convert(e),this._map.terrain)}}class ca{constructor(e,t){this._map=e,this._tr=new sa(e),this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=t.clickTolerance||1,t.boxZoom&&typeof t.boxZoom==`object`&&(this._boxZoomEnd=t.boxZoom.boxZoomEnd)}isEnabled(){return!!this._enabled}isActive(){return!!this._active}enable(){this.isEnabled()||(this._enabled=!0)}disable(){this.isEnabled()&&(this._enabled=!1)}mousedown(e,t){this.isEnabled()&&e.shiftKey&&e.button===0&&(u.disableDrag(),this._startPos=this._lastPos=t,this._active=!0)}mousemoveWindow(e,t){if(!this._active)return;let n=t;if(this._lastPos.equals(n)||!this._box&&n.dist(this._startPos)<this._clickTolerance)return;let r=this._startPos;this._lastPos=n,this._box||(this._box=u.create(`div`,`maplibregl-boxzoom`,this._container),this._container.classList.add(`maplibregl-crosshair`),this._fireEvent(`boxzoomstart`,e));let i=Math.min(r.x,n.x),a=Math.max(r.x,n.x),o=Math.min(r.y,n.y),s=Math.max(r.y,n.y);this._box.style.transform=`translate(${i}px,${o}px)`,this._box.style.width=a-i+`px`,this._box.style.height=s-o+`px`}mouseupWindow(e,n){if(!this._active||e.button!==0)return;let r=this._startPos,i=n;if(this.reset(),u.suppressClick(),r.x!==i.x||r.y!==i.y)return this._map.fire(new t.l(`boxzoomend`,{originalEvent:e})),this._boxZoomEnd?void this._boxZoomEnd(this._map,r,i,e):{cameraAnimation:e=>e.fitScreenCoordinates(r,i,this._tr.bearing,{linear:!0})};this._fireEvent(`boxzoomcancel`,e)}keydown(e){this._active&&e.keyCode===27&&(this.reset(),this._fireEvent(`boxzoomcancel`,e))}reset(){this._active=!1,this._container.classList.remove(`maplibregl-crosshair`),this._box&&=(this._box.remove(),null),u.enableDrag(),delete this._startPos,delete this._lastPos}_fireEvent(e,n){return this._map.fire(new t.l(e,{originalEvent:n}))}}function la(e,t){if(e.length!==t.length)throw Error(`The number of touches and points are not equal - touches ${e.length}, points ${t.length}`);let n={};for(let r=0;r<e.length;r++)n[e[r].identifier]=t[r];return n}class ua{constructor(e){this.reset(),this.numTouches=e.numTouches}reset(){delete this.centroid,delete this.startTime,delete this.touches,this.aborted=!1}touchstart(e,n,r){(this.centroid||r.length>this.numTouches)&&(this.aborted=!0),this.aborted||(this.startTime===void 0&&(this.startTime=e.timeStamp),r.length===this.numTouches&&(this.centroid=function(e){let n=new t.P(0,0);for(let t of e)n._add(t);return n.div(e.length)}(n),this.touches=la(r,n)))}touchmove(e,t,n){if(this.aborted||!this.centroid)return;let r=la(n,t);for(let e in this.touches){let t=r[e];(!t||t.dist(this.touches[e])>30)&&(this.aborted=!0)}}touchend(e,t,n){if((!this.centroid||e.timeStamp-this.startTime>500)&&(this.aborted=!0),n.length===0){let e=!this.aborted&&this.centroid;if(this.reset(),e)return e}}}class da{constructor(e){this.singleTap=new ua(e),this.numTaps=e.numTaps,this.reset()}reset(){this.lastTime=1/0,delete this.lastTap,this.count=0,this.singleTap.reset()}touchstart(e,t,n){this.singleTap.touchstart(e,t,n)}touchmove(e,t,n){this.singleTap.touchmove(e,t,n)}touchend(e,t,n){let r=this.singleTap.touchend(e,t,n);if(r){let t=e.timeStamp-this.lastTime<500,n=!this.lastTap||this.lastTap.dist(r)<30;if(t&&n||this.reset(),this.count++,this.lastTime=e.timeStamp,this.lastTap=r,this.count===this.numTaps)return this.reset(),r}}}class fa{constructor(e){this._tr=new sa(e),this._zoomIn=new da({numTouches:1,numTaps:2}),this._zoomOut=new da({numTouches:2,numTaps:1}),this.reset()}reset(){this._active=!1,this._zoomIn.reset(),this._zoomOut.reset()}touchstart(e,t,n){this._zoomIn.touchstart(e,t,n),this._zoomOut.touchstart(e,t,n)}touchmove(e,t,n){this._zoomIn.touchmove(e,t,n),this._zoomOut.touchmove(e,t,n)}touchend(e,n,r){let i=this._zoomIn.touchend(e,n,r),a=this._zoomOut.touchend(e,n,r),o=this._tr;return i?(this._active=!0,e.preventDefault(),setTimeout((()=>this.reset()),0),{cameraAnimation:n=>n.easeTo({duration:300,zoom:t.cu(o.zoom+1,n.getZoomSnap()),around:o.unproject(i)},{originalEvent:e})}):a?(this._active=!0,e.preventDefault(),setTimeout((()=>this.reset()),0),{cameraAnimation:n=>n.easeTo({duration:300,zoom:t.cu(o.zoom-1,n.getZoomSnap()),around:o.unproject(a)},{originalEvent:e})}):void 0}touchcancel(){this.reset()}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class X{constructor(e){this._enabled=!!e.enable,this._moveStateManager=e.moveStateManager,this._clickTolerance=e.clickTolerance||1,this._moveFunction=e.move,this._activateOnStart=!!e.activateOnStart,e.assignEvents(this),this.reset()}reset(e){this._active=!1,this._moved=!1,delete this._lastPoint,this._moveStateManager.endMove(e)}_move(...e){let t=this._moveFunction(...e);if(t.bearingDelta||t.pitchDelta||t.rollDelta||t.around||t.panDelta)return this._active=!0,t}dragStart(e,t){this.isEnabled()&&!this._lastPoint&&this._moveStateManager.isValidStartEvent(e)&&(this._moveStateManager.startMove(e),this._lastPoint=Array.isArray(t)?t[0]:t,this._activateOnStart&&this._lastPoint&&(this._active=!0))}dragMove(e,t){if(!this.isEnabled())return;let n=this._lastPoint;if(!n)return;if(e.preventDefault(),!this._moveStateManager.isValidMoveEvent(e))return void this.reset(e);let r=Array.isArray(t)?t[0]:t;return!this._moved&&r.dist(n)<this._clickTolerance?void 0:(this._moved=!0,this._lastPoint=r,this._move(n,r))}dragEnd(e){this.isEnabled()&&this._lastPoint&&this._moveStateManager.isValidEndEvent(e)&&(this._moved&&u.suppressClick(),this.reset(e))}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}getClickTolerance(){return this._clickTolerance}}let pa={0:1,2:2};class ma{constructor(e){this._correctEvent=e.checkCorrectEvent}startMove(e){this._eventButton=e.button}endMove(e){delete this._eventButton}isValidStartEvent(e){return this._correctEvent(e)}isValidMoveEvent(e){return!function(e,t){let n=pa[t];return e.buttons===void 0||(e.buttons&n)!==n}(e,this._eventButton)}isValidEndEvent(e){return e.button===this._eventButton}}class ha{constructor(){this._firstTouch=void 0}_isOneFingerTouch(e){return e.targetTouches.length===1}_isSameTouchEvent(e){return e.targetTouches[0].identifier===this._firstTouch}startMove(e){this._firstTouch=e.targetTouches[0].identifier}endMove(e){delete this._firstTouch}isValidStartEvent(e){return this._isOneFingerTouch(e)}isValidMoveEvent(e){return this._isOneFingerTouch(e)&&this._isSameTouchEvent(e)}isValidEndEvent(e){return this._isOneFingerTouch(e)&&this._isSameTouchEvent(e)}}class ga{constructor(e=new ma({checkCorrectEvent:()=>!0}),t=new ha){this.mouseMoveStateManager=e,this.oneFingerTouchMoveStateManager=t}_executeRelevantHandler(e,t,n){return e instanceof MouseEvent?t(e):typeof TouchEvent<`u`&&e instanceof TouchEvent?n(e):void 0}startMove(e){this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.startMove(e)),(e=>this.oneFingerTouchMoveStateManager.startMove(e)))}endMove(e){this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.endMove(e)),(e=>this.oneFingerTouchMoveStateManager.endMove(e)))}isValidStartEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidStartEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidStartEvent(e)))}isValidMoveEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidMoveEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidMoveEvent(e)))}isValidEndEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidEndEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidEndEvent(e)))}}let _a=e=>{e.mousedown=e.dragStart,e.mousemoveWindow=e.dragMove,e.mouseup=e.dragEnd,e.contextmenu=e=>{e.preventDefault()}};class va{constructor(e,t){this._clickTolerance=e.clickTolerance||1,this._map=t,this.reset()}reset(){this._active=!1,this._touches={},this._sum=new t.P(0,0)}_shouldBePrevented(e){return e<(this._map.cooperativeGestures.isEnabled()?2:1)}touchstart(e,t,n){return this._calculateTransform(e,t,n)}touchmove(e,t,n){if(this._active){if(!this._shouldBePrevented(n.length))return e.preventDefault(),this._calculateTransform(e,t,n);this._map.cooperativeGestures.notifyGestureBlocked(`touch_pan`,e)}}touchend(e,t,n){this._calculateTransform(e,t,n),this._active&&this._shouldBePrevented(n.length)&&this.reset()}touchcancel(){this.reset()}_calculateTransform(e,n,r){r.length>0&&(this._active=!0);let i=la(r,n),a=new t.P(0,0),o=new t.P(0,0),s=0;for(let e in i){let t=i[e],n=this._touches[e];n&&(a._add(t),o._add(t.sub(n)),s++,i[e]=t)}if(this._touches=i,this._shouldBePrevented(s)||!o.mag())return;let c=o.div(s);return this._sum._add(c),this._sum.mag()<this._clickTolerance?void 0:{around:a.div(s),panDelta:c}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class ya{constructor(){this.reset()}reset(){this._active=!1,delete this._firstTwoTouches}touchstart(e,t,n){this._firstTwoTouches||n.length<2||(this._firstTwoTouches=[n[0].identifier,n[1].identifier],this._start([t[0],t[1]]))}touchmove(e,t,n){if(!this._firstTwoTouches)return;e.preventDefault();let[r,i]=this._firstTwoTouches,a=ba(n,t,r),o=ba(n,t,i);if(!a||!o)return;let s=this._aroundCenter?null:a.add(o).div(2);return this._move([a,o],s,e)}touchend(e,t,n){if(!this._firstTwoTouches)return;let[r,i]=this._firstTwoTouches,a=ba(n,t,r),o=ba(n,t,i);a&&o||(this._active&&u.suppressClick(),this.reset())}touchcancel(){this.reset()}enable(e){this._enabled=!0,this._aroundCenter=!!e&&e.around===`center`}disable(){this._enabled=!1,this.reset()}isEnabled(){return!!this._enabled}isActive(){return!!this._active}}function ba(e,t,n){for(let r=0;r<e.length;r++)if(e[r].identifier===n)return t[r]}function xa(e,t){return Math.log(e/t)/Math.LN2}class Sa extends ya{reset(){super.reset(),delete this._distance,delete this._startDistance}_start(e){this._startDistance=this._distance=e[0].dist(e[1])}_move(e,t){let n=this._distance;if(this._distance=e[0].dist(e[1]),this._active||!(Math.abs(xa(this._distance,this._startDistance))<.1))return this._active=!0,{zoomDelta:xa(this._distance,n),pinchAround:t}}}function Ca(e,t){return 180*e.angleWith(t)/Math.PI}class wa extends ya{reset(){super.reset(),delete this._minDiameter,delete this._startVector,delete this._vector}_start(e){this._startVector=this._vector=e[0].sub(e[1]),this._minDiameter=e[0].dist(e[1])}_move(e,t,n){let r=this._vector;if(this._vector=e[0].sub(e[1]),this._active||!this._isBelowThreshold(this._vector))return this._active=!0,{bearingDelta:Ca(this._vector,r),pinchAround:t}}_isBelowThreshold(e){this._minDiameter=Math.min(this._minDiameter,e.mag());let t=25/(Math.PI*this._minDiameter)*360,n=Ca(e,this._startVector);return Math.abs(n)<t}}function Ta(e){return Math.abs(e.y)>Math.abs(e.x)}class Ea extends ya{constructor(e){super(),this._currentTouchCount=0,this._map=e}reset(){super.reset(),this._valid=void 0,delete this._firstMove,delete this._lastPoints}touchstart(e,t,n){super.touchstart(e,t,n),this._currentTouchCount=n.length}_start(e){this._lastPoints=e,Ta(e[0].sub(e[1]))&&(this._valid=!1)}_move(e,t,n){if(this._map.cooperativeGestures.isEnabled()&&this._currentTouchCount<3)return;let r=e[0].sub(this._lastPoints[0]),i=e[1].sub(this._lastPoints[1]);return this._valid=this.gestureBeginsVertically(r,i,n.timeStamp),this._valid?(this._lastPoints=e,this._active=!0,{pitchDelta:(r.y+i.y)/2*-.5}):void 0}gestureBeginsVertically(e,t,n){if(this._valid!==void 0)return this._valid;let r=e.mag()>=2,i=t.mag()>=2;if(!r&&!i)return;if(!r||!i)return this._firstMove===void 0&&(this._firstMove=n),n-this._firstMove<100&&void 0;let a=e.y>0==t.y>0;return Ta(e)&&Ta(t)&&a}}let Da={panStep:100,bearingStep:15,pitchStep:10};class Oa{constructor(e){this._tr=new sa(e);let t=Da;this._panStep=t.panStep,this._bearingStep=t.bearingStep,this._pitchStep=t.pitchStep,this._rotationDisabled=!1}reset(){this._active=!1}keydown(e){if(e.altKey||e.ctrlKey||e.metaKey)return;let n=0,r=0,i=0,a=0,o=0;switch(e.keyCode){case 61:case 107:case 171:case 187:n=1;break;case 189:case 109:case 173:n=-1;break;case 37:e.shiftKey?r=-1:(e.preventDefault(),a=-1);break;case 39:e.shiftKey?r=1:(e.preventDefault(),a=1);break;case 38:e.shiftKey?i=1:(e.preventDefault(),o=-1);break;case 40:e.shiftKey?i=-1:(e.preventDefault(),o=1);break;default:return}return this._rotationDisabled&&(r=0,i=0),{cameraAnimation:s=>{let c=this._tr;s.easeTo({duration:300,easeId:`keyboardHandler`,easing:ka,zoom:n?t.cu(c.zoom+n*(e.shiftKey?2:1),s.getZoomSnap()):c.zoom,bearing:c.bearing+r*this._bearingStep,pitch:c.pitch+i*this._pitchStep,offset:[-a*this._panStep,-o*this._panStep],center:c.center},{originalEvent:e})}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}disableRotation(){this._rotationDisabled=!0}enableRotation(){this._rotationDisabled=!1}}function ka(e){return e*(2-e)}let Aa=4.000244140625;class ja{constructor(e,t){this._onTimeout=e=>{this._type=`wheel`,this._delta-=this._lastValue,this._active||this._start(e)},this._map=e,this._tr=new sa(e),this._triggerRenderFrame=t,this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=.0022222222222222222}setZoomRate(e){this._defaultZoomRate=e}setWheelZoomRate(e){this._wheelZoomRate=e}isEnabled(){return!!this._enabled}isActive(){return!!this._active||this._finishTimeout!==void 0}isZooming(){return!!this._zooming}enable(e){this.isEnabled()||(this._enabled=!0,this._aroundCenter=!!e&&e.around===`center`)}disable(){this.isEnabled()&&(this._enabled=!1)}_shouldBePrevented(e){return!!this._map.cooperativeGestures.isEnabled()&&!(e.ctrlKey||this._map.cooperativeGestures.isBypassed(e))}wheel(e){if(!this.isEnabled())return;if(this._shouldBePrevented(e))return void this._map.cooperativeGestures.notifyGestureBlocked(`wheel_zoom`,e);let t=e.deltaMode===WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=l(),r=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,t!==0&&t%Aa==0?this._type=`wheel`:t!==0&&Math.abs(t)<4?this._type=`trackpad`:r>400?(this._type=null,this._lastValue=t,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(r*t)<200?`trackpad`:`wheel`,this._timeout&&(clearTimeout(this._timeout),this._timeout=null,t+=this._lastValue)),e.shiftKey&&t&&(t/=4),this._type&&(this._lastWheelEvent=e,this._delta-=t,this._active||this._start(e)),e.preventDefault()}_start(e){if(!this._delta)return;this._frameId&&=null,this._active=!0,this.isZooming()||(this._zooming=!0),this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout);let n=u.mousePos(this._map.getCanvas(),e),r=this._tr;this._aroundPoint=this._aroundCenter?r.transform.locationToScreenPoint(t.V.convert(r.center)):n,this._frameId||(this._frameId=!0,this._triggerRenderFrame())}renderFrame(){if(!this._frameId||(this._frameId=null,!this.isActive()))return;let e=this._tr.transform;if(typeof this._lastExpectedZoom==`number`){let t=e.zoom-this._lastExpectedZoom;typeof this._startZoom==`number`&&(this._startZoom+=t),typeof this._targetZoom==`number`&&(this._targetZoom+=t)}if(this._delta!==0){let n=this._type===`wheel`&&Math.abs(this._delta)>Aa?this._wheelZoomRate:this._defaultZoomRate,r=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&r!==0&&(r=1/r);let i=typeof this._targetZoom==`number`?t.an(this._targetZoom):e.scale,a=e.applyConstrain(e.getCameraLngLat(),t.aq(i*r)).zoom,o=this._map.getZoomSnap();if(this._type===`wheel`&&o>0){let n=t.cu(e.zoom,o);this._targetZoom=t.cu(a,o,a-n)}else this._targetZoom=a;this._type===`wheel`&&(this._startZoom=e.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}let n=typeof this._targetZoom==`number`?this._targetZoom:e.zoom,r=this._startZoom,i=this._easing,a,o=!1;if(this._type===`wheel`&&r&&i){let e=l()-this._lastWheelEventTime,s=Math.min((e+5)/200,1),c=i(s);a=t.G.number(r,n,c),s<1?this._frameId||=!0:o=!0}else a=n,o=!0;return this._active=!0,o&&(this._active=!1,this._finishTimeout=setTimeout((()=>{this._zooming=!1,this._triggerRenderFrame(),delete this._targetZoom,delete this._lastExpectedZoom,delete this._finishTimeout}),200)),this._lastExpectedZoom=a,{noInertia:!0,needsRenderFrame:!o,zoomDelta:a-e.zoom,around:this._aroundPoint,originalEvent:this._lastWheelEvent}}_smoothOutEasing(e){let n=t.cw;if(this._prevEase){let e=this._prevEase,r=(l()-e.start)/e.duration,i=e.easing(r+.01)-e.easing(r),a=.27/Math.sqrt(i*i+1e-4)*.01,o=Math.sqrt(.0729-a*a);n=t.ct(a,o,.25,1)}return this._prevEase={start:l(),duration:e,easing:n},n}reset(){this._active=!1,this._zooming=!1,delete this._targetZoom,delete this._lastExpectedZoom,this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout)}}class Ma{constructor(e,t){this._clickZoom=e,this._tapZoom=t}enable(){this._clickZoom.enable(),this._tapZoom.enable()}disable(){this._clickZoom.disable(),this._tapZoom.disable()}isEnabled(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()}isActive(){return this._clickZoom.isActive()||this._tapZoom.isActive()}}class Na{constructor(e){this._tr=new sa(e),this.reset()}reset(){this._active=!1}dblclick(e,n){return e.preventDefault(),{cameraAnimation:r=>{r.easeTo({duration:300,zoom:t.cu(this._tr.zoom+(e.shiftKey?-1:1),r.getZoomSnap()),around:this._tr.unproject(n)},{originalEvent:e})}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class Pa{constructor(){this._tap=new da({numTouches:1,numTaps:1}),this.reset()}reset(){this._active=!1,delete this._swipePoint,delete this._swipeTouch,delete this._tapTime,delete this._tapPoint,this._tap.reset()}touchstart(e,t,n){if(!this._swipePoint)if(this._tapTime){let r=t[0],i=e.timeStamp-this._tapTime<500,a=this._tapPoint.dist(r)<30;i&&a?n.length>0&&(this._swipePoint=r,this._swipeTouch=n[0].identifier):this.reset()}else this._tap.touchstart(e,t,n)}touchmove(e,t,n){if(this._tapTime){if(this._swipePoint){if(n[0].identifier!==this._swipeTouch)return;let r=t[0],i=r.y-this._swipePoint.y;return this._swipePoint=r,e.preventDefault(),this._active=!0,{zoomDelta:i/128}}}else this._tap.touchmove(e,t,n)}touchend(e,t,n){if(this._tapTime)this._swipePoint&&n.length===0&&this.reset();else{let r=this._tap.touchend(e,t,n);r&&(this._tapTime=e.timeStamp,this._tapPoint=r)}}touchcancel(){this.reset()}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class Fa{constructor(e,t,n){this._el=e,this._mousePan=t,this._touchPan=n}enable(e){this._inertiaOptions=e||{},this._mousePan.enable(),this._touchPan.enable(),this._el.classList.add(`maplibregl-touch-drag-pan`)}disable(){this._mousePan.disable(),this._touchPan.disable(),this._el.classList.remove(`maplibregl-touch-drag-pan`)}isEnabled(){return this._mousePan.isEnabled()&&this._touchPan.isEnabled()}isActive(){return this._mousePan.isActive()||this._touchPan.isActive()}}class Ia{constructor(e,t,n,r){this._pitchWithRotate=e.pitchWithRotate,this._rollEnabled=e.rollEnabled,this._mouseRotate=t,this._mousePitch=n,this._mouseRoll=r}enable(){this._mouseRotate.enable(),this._pitchWithRotate&&this._mousePitch.enable(),this._rollEnabled&&this._mouseRoll.enable()}disable(){this._mouseRotate.disable(),this._mousePitch.disable(),this._mouseRoll.disable()}isEnabled(){return this._mouseRotate.isEnabled()&&(!this._pitchWithRotate||this._mousePitch.isEnabled())&&(!this._rollEnabled||this._mouseRoll.isEnabled())}isActive(){return this._mouseRotate.isActive()||this._mousePitch.isActive()||this._mouseRoll.isActive()}}class La{constructor(e,t,n,r){this._el=e,this._touchZoom=t,this._touchRotate=n,this._tapDragZoom=r,this._rotationDisabled=!1,this._enabled=!0}enable(e){this._touchZoom.enable(e),this._rotationDisabled||this._touchRotate.enable(e),this._tapDragZoom.enable(),this._el.classList.add(`maplibregl-touch-zoom-rotate`)}disable(){this._touchZoom.disable(),this._touchRotate.disable(),this._tapDragZoom.disable(),this._el.classList.remove(`maplibregl-touch-zoom-rotate`)}isEnabled(){return this._touchZoom.isEnabled()&&(this._rotationDisabled||this._touchRotate.isEnabled())&&this._tapDragZoom.isEnabled()}isActive(){return this._touchZoom.isActive()||this._touchRotate.isActive()||this._tapDragZoom.isActive()}disableRotation(){this._rotationDisabled=!0,this._touchRotate.disable()}enableRotation(){this._rotationDisabled=!1,this._touchZoom.isEnabled()&&this._touchRotate.enable()}}class Ra{constructor(e,t){this._bypassKey=navigator.userAgent.indexOf(`Mac`)===-1?`ctrlKey`:`metaKey`,this._map=e,this._options=t,this._enabled=!1}isActive(){return!1}reset(){}_setupUI(){if(this._container)return;let e=this._map.getCanvasContainer();e.classList.add(`maplibregl-cooperative-gestures`),this._container=u.create(`div`,`maplibregl-cooperative-gesture-screen`,e);let t=this._map._getUIString(`CooperativeGesturesHandler.WindowsHelpText`);this._bypassKey===`metaKey`&&(t=this._map._getUIString(`CooperativeGesturesHandler.MacHelpText`));let n=this._map._getUIString(`CooperativeGesturesHandler.MobileHelpText`),r=document.createElement(`div`);r.className=`maplibregl-desktop-message`,r.textContent=t,this._container.appendChild(r);let i=document.createElement(`div`);i.className=`maplibregl-mobile-message`,i.textContent=n,this._container.appendChild(i),this._container.setAttribute(`aria-hidden`,`true`)}_destroyUI(){this._container&&(this._container.remove(),this._map.getCanvasContainer().classList.remove(`maplibregl-cooperative-gestures`)),delete this._container}enable(){this._setupUI(),this._enabled=!0}disable(){this._enabled=!1,this._destroyUI()}isEnabled(){return this._enabled}isBypassed(e){return e[this._bypassKey]}notifyGestureBlocked(e,n){this._enabled&&(this._map.fire(new t.l(`cooperativegestureprevented`,{gestureType:e,originalEvent:n})),this._container.classList.add(`maplibregl-show`),setTimeout((()=>{this._container.classList.remove(`maplibregl-show`)}),100))}}let za=e=>e.zoom||e.drag||e.roll||e.pitch||e.rotate;class Ba extends t.l{}function Va(e){return e.panDelta&&e.panDelta.mag()||e.zoomDelta||e.bearingDelta||e.pitchDelta||e.rollDelta}class Ha{get _ownerDocument(){return this._el?.ownerDocument||document}get _ownerWindow(){return this._el?.ownerDocument?.defaultView||window}constructor(e,n){this.handleWindowEvent=e=>{this.handleEvent(e,`${e.type}Window`)},this.handleEvent=(e,n)=>{if(e.type===`blur`)return void this.stop(!0);this._updatingCamera=!0;let r=e.type===`renderFrame`?void 0:e,i={needsRenderFrame:!1},a={},o={};for(let{handlerName:s,handler:c,allowed:l}of this._handlers){if(!c.isEnabled())continue;let d;if(this._blockedByActive(o,l,s))c.reset();else if(c[n||e.type]){if(t.cx(e,n||e.type)){let t=u.mousePos(this._map.getCanvas(),e);d=c[n||e.type](e,t)}else if(t.cy(e,n||e.type)){let t=this._getMapTouches(e.touches),r=u.touchPos(this._map.getCanvas(),t);d=c[n||e.type](e,r,t)}else t.cz(n||e.type)||(d=c[n||e.type](e));this.mergeHandlerResult(i,a,d,s,r),d&&d.needsRenderFrame&&this._triggerRenderFrame()}(d||c.isActive())&&(o[s]=c)}let s={};for(let e in this._previousActiveHandlers)o[e]||(s[e]=r);this._previousActiveHandlers=o,(Object.keys(s).length||Va(i))&&(this._changes.push([i,a,s]),this._triggerRenderFrame()),(Object.keys(o).length||Va(i))&&this._map._stop(!0),this._updatingCamera=!1;let{cameraAnimation:c}=i;c&&(this._inertia.clear(),this._fireEvents({},{},!0),this._changes=[],c(this._map))},this._map=e,this._el=this._map.getCanvasContainer(),this._handlers=[],this._handlersById={},this._changes=[],this._inertia=new $i(e),this._bearingSnap=n.bearingSnap,this._previousActiveHandlers={},this._eventsInProgress={},this._addDefaultHandlers(n);let r=this._el;this._listeners=[[r,`touchstart`,{passive:!0}],[r,`touchmove`,{passive:!1}],[r,`touchend`,void 0],[r,`touchcancel`,void 0],[r,`mousedown`,void 0],[r,`mousemove`,void 0],[r,`mouseup`,void 0],[this._ownerDocument,`mousemove`,{capture:!0}],[this._ownerDocument,`mouseup`,void 0],[r,`mouseover`,void 0],[r,`mouseout`,void 0],[r,`dblclick`,void 0],[r,`click`,void 0],[r,`keydown`,{capture:!1}],[r,`keyup`,void 0],[r,`wheel`,{passive:!1}],[r,`contextmenu`,void 0],[this._ownerWindow,`blur`,void 0]];for(let[e,t,n]of this._listeners)e.addEventListener(t,e===this._ownerDocument?this.handleWindowEvent:this.handleEvent,n)}destroy(){for(let[e,t,n]of this._listeners)e.removeEventListener(t,e===this._ownerDocument?this.handleWindowEvent:this.handleEvent,n)}_addDefaultHandlers(e){let n=this._map,r=n.getCanvasContainer();this._add(`mapEvent`,new aa(n,e));let i=n.boxZoom=new ca(n,e);this._add(`boxZoom`,i),e.interactive&&e.boxZoom&&i.enable();let a=n.cooperativeGestures=new Ra(n,e.cooperativeGestures);this._add(`cooperativeGestures`,a),e.cooperativeGestures&&a.enable();let o=new fa(n),s=new Na(n);n.doubleClickZoom=new Ma(s,o),this._add(`tapZoom`,o),this._add(`clickZoom`,s),e.interactive&&e.doubleClickZoom&&n.doubleClickZoom.enable();let c=new Pa;this._add(`tapDragZoom`,c);let l=n.touchPitch=new Ea(n);this._add(`touchPitch`,l),e.interactive&&e.touchPitch&&n.touchPitch.enable(e.touchPitch);let u=()=>n.project(n.getCenter()),d=function({enable:e,clickTolerance:n,aroundCenter:r=!0,minPixelCenterThreshold:i=100,rotateDegreesPerPixelMoved:a=.8},o){return new X({clickTolerance:n,move:(e,n)=>{let s=o();if(r&&Math.abs(s.y-e.y)>i)return{bearingDelta:t.cv(new t.P(e.x,n.y),n,s)};let c=(n.x-e.x)*a;return r&&n.y<s.y&&(c=-c),{bearingDelta:c}},moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&e.ctrlKey||e.button===2&&!e.ctrlKey}),enable:e,assignEvents:_a})}(e,u),f=function({enable:e,clickTolerance:t,pitchDegreesPerPixelMoved:n=-.5}){return new X({clickTolerance:t,move:(e,t)=>({pitchDelta:(t.y-e.y)*n}),moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&e.ctrlKey||e.button===2}),enable:e,assignEvents:_a})}(e),p=function({enable:e,clickTolerance:t,rollDegreesPerPixelMoved:n=.3},r){return new X({clickTolerance:t,move:(e,t)=>{let i=r(),a=(t.x-e.x)*n;return t.y<i.y&&(a=-a),{rollDelta:a}},moveStateManager:new ma({checkCorrectEvent:e=>e.button===2&&e.ctrlKey}),enable:e,assignEvents:_a})}(e,u);n.dragRotate=new Ia(e,d,f,p),this._add(`mouseRotate`,d,[`mousePitch`]),this._add(`mousePitch`,f,[`mouseRotate`,`mouseRoll`]),this._add(`mouseRoll`,p,[`mousePitch`]),e.interactive&&e.dragRotate&&n.dragRotate.enable();let m=function({enable:e,clickTolerance:t}){return new X({clickTolerance:t,move:(e,t)=>({around:t,panDelta:t.sub(e)}),activateOnStart:!0,moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&!e.ctrlKey}),enable:e,assignEvents:_a})}(e),h=new va(e,n);n.dragPan=new Fa(r,m,h),this._add(`mousePan`,m),this._add(`touchPan`,h,[`touchZoom`,`touchRotate`]),e.interactive&&e.dragPan&&n.dragPan.enable(e.dragPan);let g=new wa,_=new Sa;n.touchZoomRotate=new La(r,_,g,c),this._add(`touchRotate`,g,[`touchPan`,`touchZoom`]),this._add(`touchZoom`,_,[`touchPan`,`touchRotate`]),e.interactive&&e.touchZoomRotate&&n.touchZoomRotate.enable(e.touchZoomRotate),this._add(`blockableMapEvent`,new oa(n));let v=n.scrollZoom=new ja(n,(()=>this._triggerRenderFrame()));this._add(`scrollZoom`,v,[`mousePan`]),e.interactive&&e.scrollZoom&&n.scrollZoom.enable(e.scrollZoom);let y=n.keyboard=new Oa(n);this._add(`keyboard`,y),e.interactive&&e.keyboard&&n.keyboard.enable()}_add(e,t,n){this._handlers.push({handlerName:e,handler:t,allowed:n}),this._handlersById[e]=t}stop(e){if(!this._updatingCamera){for(let{handler:e}of this._handlers)e.reset();this._inertia.clear(),this._fireEvents({},{},e),this._changes=[]}}isActive(){for(let{handler:e}of this._handlers)if(e.isActive())return!0;return!1}isZooming(){return!!this._eventsInProgress.zoom||this._map.scrollZoom.isZooming()}isRotating(){return!!this._eventsInProgress.rotate}isMoving(){return!!za(this._eventsInProgress)||this.isZooming()}_blockedByActive(e,t,n){for(let r in e)if(r!==n&&(!t||t.indexOf(r)<0))return!0;return!1}_getMapTouches(e){let t=[];for(let n of e)this._el.contains(n.target)&&t.push(n);return t}mergeHandlerResult(e,n,r,i,a){if(!r)return;t.e(e,r);let o={handlerName:i,originalEvent:r.originalEvent||a};r.zoomDelta!==void 0&&(n.zoom=o),r.panDelta!==void 0&&(n.drag=o),r.rollDelta!==void 0&&(n.roll=o),r.pitchDelta!==void 0&&(n.pitch=o),r.bearingDelta!==void 0&&(n.rotate=o)}_applyChanges(){let e={},n={},r={};for(let[i,a,o]of this._changes)i.panDelta&&(e.panDelta=(e.panDelta||new t.P(0,0))._add(i.panDelta)),i.zoomDelta&&(e.zoomDelta=(e.zoomDelta||0)+i.zoomDelta),i.bearingDelta&&(e.bearingDelta=(e.bearingDelta||0)+i.bearingDelta),i.pitchDelta&&(e.pitchDelta=(e.pitchDelta||0)+i.pitchDelta),i.rollDelta&&(e.rollDelta=(e.rollDelta||0)+i.rollDelta),i.around!==void 0&&(e.around=i.around),i.pinchAround!==void 0&&(e.pinchAround=i.pinchAround),i.noInertia&&(e.noInertia=i.noInertia),t.e(n,a),t.e(r,o);this._updateMapTransform(e,n,r),this._changes=[]}_updateMapTransform(e,t,n){let r=this._map,i=r._getTransformForUpdate(),a=r.terrain;if(!(Va(e)||a&&this._terrainMovement))return this._fireEvents(t,n,!0);r._stop(!0);let{panDelta:o,zoomDelta:s,bearingDelta:c,pitchDelta:l,rollDelta:u,around:d,pinchAround:f}=e;f!==void 0&&(d=f),d||=r.transform.centerPoint,a&&!i.isPointOnMapSurface(d)&&(d=i.centerPoint);let p={panDelta:o,zoomDelta:s,rollDelta:u,pitchDelta:l,bearingDelta:c,around:d};this._map.cameraHelper.useGlobeControls&&!i.isPointOnMapSurface(d)&&(d=i.centerPoint);let m=d.distSqr(i.centerPoint)<.01?i.center:i.screenPointToLocation(o?d.sub(o):d);this._handleMapControls({terrain:a,tr:i,deltasForHelper:p,preZoomAroundLoc:m,combinedEventsInProgress:t,panDelta:o}),r._applyUpdatedTransform(i),this._map._update(),e.noInertia||this._inertia.record(e),this._fireEvents(t,n,!0)}_handleMapControls({terrain:e,tr:t,deltasForHelper:n,preZoomAroundLoc:r,combinedEventsInProgress:i,panDelta:a}){let o=this._map.cameraHelper;if(o.handleMapControlsRollPitchBearingZoom(n,t),e)return o.useGlobeControls?(this._terrainMovement||!i.drag&&!i.zoom||(this._terrainMovement=!0,this._map._elevationFreeze=!0),void o.handleMapControlsPan(n,t,r)):this._terrainMovement||!i.drag&&!i.zoom?void(i.drag&&this._terrainMovement&&a?t.setCenter(t.screenPointToLocation(t.centerPoint.sub(a))):o.handleMapControlsPan(n,t,r)):(this._terrainMovement=!0,this._map._elevationFreeze=!0,void o.handleMapControlsPan(n,t,r));o.handleMapControlsPan(n,t,r)}_fireEvents(e,n,r){let i=za(this._eventsInProgress),a=za(e),o={};for(let t in e){let{originalEvent:n}=e[t];this._eventsInProgress[t]||(o[`${t}start`]=n),this._eventsInProgress[t]=e[t]}!i&&a&&this._fireEvent(`movestart`,a.originalEvent);for(let e in o)this._fireEvent(e,o[e]);a&&this._fireEvent(`move`,a.originalEvent);for(let t in e){let{originalEvent:n}=e[t];this._fireEvent(t,n)}let c={},l;for(let e in this._eventsInProgress){let{handlerName:t,originalEvent:r}=this._eventsInProgress[e];this._handlersById[t].isActive()||(delete this._eventsInProgress[e],l=n[t]||r,c[`${e}end`]=l)}for(let e in c)this._fireEvent(e,c[e]);let u=za(this._eventsInProgress),d=(i||a)&&!u;if(d&&this._terrainMovement){this._map._elevationFreeze=!1,this._terrainMovement=!1;let e=this._map._getTransformForUpdate();this._map.getCenterClampedToGround()&&e.recalculateZoomAndCenter(this._map.terrain),this._map._applyUpdatedTransform(e)}if(r&&d){this._updatingCamera=!0;let e=this._inertia._onMoveEnd(this._map.dragPan._inertiaOptions),n=e=>e!==0&&-this._bearingSnap<e&&e<this._bearingSnap;!e||!e.essential&&s.prefersReducedMotion?(this._map.fire(new t.l(`moveend`,{originalEvent:l})),n(this._map.getBearing())&&this._map.resetNorth()):(n(e.bearing||this._map.getBearing())&&(e.bearing=0),e.freezeElevation=!0,this._map.easeTo(e,{originalEvent:l})),this._updatingCamera=!1}}_fireEvent(e,n){this._map.fire(new t.l(e,n?{originalEvent:n}:{}))}_requestFrame(){return this._map.triggerRepaint(),this._map._renderTaskQueue.add((e=>{delete this._frameId,this.handleEvent(new Ba(`renderFrame`,{timeStamp:e})),this._applyChanges()}))}_triggerRenderFrame(){this._frameId===void 0&&(this._frameId=this._requestFrame())}}class Ua extends t.E{constructor(e,t,n){super(),this._renderFrameCallback=()=>{let e=Math.min((l()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1&&this._easeFrameId?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},this._moving=!1,this._zooming=!1,this.transform=e,this._bearingSnap=n.bearingSnap,this._zoomSnap=n.zoomSnap,this.cameraHelper=t,this.on(`moveend`,(()=>{delete this._requestedCameraState}))}migrateProjection(e,t){e.apply(this.transform,!0),this.transform=e,this.cameraHelper=t}getCenter(){return new t.V(this.transform.center.lng,this.transform.center.lat)}setCenter(e,t){return this.jumpTo({center:e},t)}getCenterElevation(){return this.transform.elevation}setCenterElevation(e,t){return this.jumpTo({elevation:e},t),this}getCenterClampedToGround(){return this._centerClampedToGround}setCenterClampedToGround(e){this._centerClampedToGround=e}panBy(e,n,r){return e=t.P.convert(e).mult(-1),this.panTo(this.transform.center,t.e({offset:e},n),r)}panTo(e,n,r){return this.easeTo(t.e({center:e},n),r)}getZoom(){return this.transform.zoom}setZoom(e,t){return this.jumpTo({zoom:e},t),this}zoomTo(e,n,r){return this.easeTo(t.e({zoom:e},n),r)}zoomIn(e,n){return this.zoomTo(t.cu(this.getZoom()+1,this._zoomSnap),e,n),this}zoomOut(e,n){return this.zoomTo(t.cu(this.getZoom()-1,this._zoomSnap),e,n),this}getVerticalFieldOfView(){return this.transform.fov}setVerticalFieldOfView(e,n){return e!=this.transform.fov&&(this.transform.setFov(e),this.fire(new t.l(`movestart`,n)).fire(new t.l(`move`,n)).fire(new t.l(`moveend`,n))),this}getBearing(){return this.transform.bearing}setZoomSnap(e){return this._zoomSnap=e,this}getZoomSnap(){return this._zoomSnap}setBearing(e,t){return this.jumpTo({bearing:e},t),this}getPadding(){return this.transform.padding}setPadding(e,t){return this.jumpTo({padding:e},t),this}rotateTo(e,n,r){return this.easeTo(t.e({bearing:e},n),r)}resetNorth(e,n){return this.rotateTo(0,t.e({duration:1e3},e),n),this}resetNorthPitch(e,n){return this.easeTo(t.e({bearing:0,pitch:0,roll:0,duration:1e3},e),n),this}snapToNorth(e,t){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(e,t):this}getPitch(){return this.transform.pitch}setPitch(e,t){return this.jumpTo({pitch:e},t),this}getRoll(){return this.transform.roll}setRoll(e,t){return this.jumpTo({roll:e},t),this}cameraForBounds(e,t){e=N.convert(e).adjustAntiMeridian();let n=t&&t.bearing||0;return this._cameraForBoxAndBearing(e.getNorthWest(),e.getSouthEast(),n,t)}_cameraForBoxAndBearing(e,n,r,i){let a={top:0,bottom:0,right:0,left:0};if(typeof(i=t.e({padding:a,offset:[0,0],maxZoom:this.transform.maxZoom},i)).padding==`number`){let e=i.padding;i.padding={top:e,bottom:e,right:e,left:e}}let o=t.e(a,i.padding);i.padding=o;let s=this.transform,c=new N(e,n);return this.cameraHelper.cameraForBoxAndBearing(i,o,c,r,s)}fitBounds(e,t,n){return this._fitInternal(this.cameraForBounds(e,t),t,n)}fitScreenCoordinates(e,n,r,i,a){return this._fitInternal(this._cameraForBoxAndBearing(this.transform.screenPointToLocation(t.P.convert(e)),this.transform.screenPointToLocation(t.P.convert(n)),r,i),i,a)}_fitInternal(e,n,r){return e?(delete(n=t.e(e,n)).padding,n.linear?this.easeTo(n,r):this.flyTo(n,r)):this}jumpTo(e,n){this.stop();let r=this._getTransformForUpdate(),i=!1,a=!1,o=!1,s=r.zoom;this.terrain&&r.setElevation(this.terrain.getElevationForLngLatZoom(e.center?t.V.convert(e.center):r.center,e.zoom||r.tileZoom)),this.cameraHelper.handleJumpToCenterZoom(r,e);let c=r.zoom!==s;return`elevation`in e&&r.elevation!==+e.elevation&&r.setElevation(+e.elevation),`bearing`in e&&r.bearing!==+e.bearing&&(i=!0,r.setBearing(+e.bearing)),`pitch`in e&&r.pitch!==+e.pitch&&(a=!0,r.setPitch(+e.pitch)),`roll`in e&&r.roll!==+e.roll&&(o=!0,r.setRoll(+e.roll)),e.padding==null||r.isPaddingEqual(e.padding)||r.setPadding(e.padding),this._applyUpdatedTransform(r),this.fire(new t.l(`movestart`,n)).fire(new t.l(`move`,n)),c&&this.fire(new t.l(`zoomstart`,n)).fire(new t.l(`zoom`,n)).fire(new t.l(`zoomend`,n)),i&&this.fire(new t.l(`rotatestart`,n)).fire(new t.l(`rotate`,n)).fire(new t.l(`rotateend`,n)),a&&this.fire(new t.l(`pitchstart`,n)).fire(new t.l(`pitch`,n)).fire(new t.l(`pitchend`,n)),o&&this.fire(new t.l(`rollstart`,n)).fire(new t.l(`roll`,n)).fire(new t.l(`rollend`,n)),this.fire(new t.l(`moveend`,n))}calculateCameraOptionsFromTo(e,n,r,i=0){let a=t.a6.fromLngLat(e,n),o=t.a6.fromLngLat(r,i),s=o.x-a.x,c=o.y-a.y,l=o.z-a.z,u=Math.hypot(s,c,l);if(u===0)throw Error(`Can't calculate camera options with same From and To`);let d=Math.hypot(s,c),f=t.aq(this.transform.cameraToCenterDistance/u/this.transform.tileSize),p=180*Math.atan2(s,-c)/Math.PI,m=180*Math.acos(d/u)/Math.PI;return m=l<0?90-m:90+m,{center:o.toLngLat(),elevation:i,zoom:f,pitch:m,bearing:p}}calculateCameraOptionsFromCameraLngLatAltRotation(e,t,n,r,i){let a=this.transform.calculateCenterFromCameraLngLatAlt(e,t,n,r);return{center:a.center,elevation:a.elevation,zoom:a.zoom,bearing:n,pitch:r,roll:i}}easeTo(e,n){this._stop(!1,e.easeId),(!1===(e=t.e({offset:[0,0],duration:500,easing:t.cw},e)).animate||!e.essential&&s.prefersReducedMotion)&&(e.duration=0);let r=this._getTransformForUpdate(),i=this.getBearing(),a=r.pitch,o=r.roll,c=`bearing`in e?this._normalizeBearing(e.bearing,i):i,l=`pitch`in e?+e.pitch:a,u=`roll`in e?this._normalizeBearing(e.roll,o):o,d=`padding`in e?e.padding:r.padding,f=t.P.convert(e.offset),p,m;e.around&&(p=t.V.convert(e.around),m=r.locationToScreenPoint(p));let h={moving:this._moving,zooming:this._zooming,rotating:this._rotating,pitching:this._pitching,rolling:this._rolling},g=this.cameraHelper.handleEaseTo(r,{bearing:c,pitch:l,roll:u,padding:d,around:p,aroundPoint:m,offsetAsPoint:f,offset:e.offset,zoom:e.zoom,center:e.center});return this._rotating=this._rotating||i!==c,this._pitching=this._pitching||l!==a,this._rolling=this._rolling||u!==o,this._padding=!r.isPaddingEqual(d),this._zooming=this._zooming||g.isZooming,this._easeId=e.easeId,this._prepareEase(n,e.noMoveStart,h),this.terrain&&this._prepareElevation(g.elevationCenter),this._ease((t=>{g.easeFunc(t),this.terrain&&!e.freezeElevation&&this._updateElevation(t),this._applyUpdatedTransform(r),this._fireMoveEvents(n)}),(t=>{this.terrain&&e.freezeElevation&&this._finalizeElevation(),this._afterEase(n,t)}),e),this}_prepareEase(e,n,r={}){this._moving=!0,n||r.moving||this.fire(new t.l(`movestart`,e)),this._zooming&&!r.zooming&&this.fire(new t.l(`zoomstart`,e)),this._rotating&&!r.rotating&&this.fire(new t.l(`rotatestart`,e)),this._pitching&&!r.pitching&&this.fire(new t.l(`pitchstart`,e)),this._rolling&&!r.rolling&&this.fire(new t.l(`rollstart`,e))}_prepareElevation(e){this._elevationCenter=e,this._elevationStart=this.transform.elevation,this._elevationTarget=this.terrain.getElevationForLngLatZoom(e,this.transform.tileZoom),this._elevationFreeze=!0}_updateElevation(e){this._elevationStart!==void 0&&this._elevationCenter!==void 0||this._prepareElevation(this.transform.center),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this._elevationCenter,this.transform.tileZoom));let n=this.terrain.getElevationForLngLatZoom(this._elevationCenter,this.transform.tileZoom);if(e<1&&n!==this._elevationTarget){let t=this._elevationTarget-this._elevationStart;this._elevationStart+=e*(t-(n-(t*e+this._elevationStart))/(1-e)),this._elevationTarget=n}this.transform.setElevation(t.G.number(this._elevationStart,this._elevationTarget,e))}_finalizeElevation(){this._elevationFreeze=!1,this.getCenterClampedToGround()&&this.transform.recalculateZoomAndCenter(this.terrain)}_getTransformForUpdate(){return this.transformCameraUpdate||this.terrain?(this._requestedCameraState||=this.transform.clone(),this._requestedCameraState):this.transform}_elevateCameraIfInsideTerrain(e){if(!this.terrain&&e.elevation>=0&&e.pitch<=90)return{};let t=e.getCameraLngLat(),n=e.getCameraAltitude(),r=this.terrain?this.terrain.getElevationForLngLatZoom(t,e.zoom):0;if(n<r){let n=this.calculateCameraOptionsFromTo(t,r,e.center,e.elevation);return{pitch:n.pitch,zoom:n.zoom}}return{}}_applyUpdatedTransform(e){let t=[];if(t.push((e=>this._elevateCameraIfInsideTerrain(e))),this.transformCameraUpdate&&t.push((e=>this.transformCameraUpdate(e))),!t.length)return;let n=e.clone();for(let e of t){let t=n.clone(),{center:r,zoom:i,roll:a,pitch:o,bearing:s,elevation:c}=e(t);r&&t.setCenter(r),c!==void 0&&t.setElevation(c),i!==void 0&&t.setZoom(i),a!==void 0&&t.setRoll(a),o!==void 0&&t.setPitch(o),s!==void 0&&t.setBearing(s),n.apply(t,!1)}this.transform.apply(n,!1)}_fireMoveEvents(e){this.fire(new t.l(`move`,e)),this._zooming&&this.fire(new t.l(`zoom`,e)),this._rotating&&this.fire(new t.l(`rotate`,e)),this._pitching&&this.fire(new t.l(`pitch`,e)),this._rolling&&this.fire(new t.l(`roll`,e))}_afterEase(e,n){if(this._easeId&&n&&this._easeId===n)return;delete this._easeId;let r=this._zooming,i=this._rotating,a=this._pitching,o=this._rolling;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._rolling=!1,this._padding=!1,r&&this.fire(new t.l(`zoomend`,e)),i&&this.fire(new t.l(`rotateend`,e)),a&&this.fire(new t.l(`pitchend`,e)),o&&this.fire(new t.l(`rollend`,e)),this.fire(new t.l(`moveend`,e))}flyTo(e,n){if(!e.essential&&s.prefersReducedMotion){let r=t.U(e,[`center`,`zoom`,`bearing`,`pitch`,`roll`,`elevation`,`padding`]);return this.jumpTo(r,n)}this.stop(),e=t.e({offset:[0,0],speed:1.2,curve:1.42,easing:t.cw},e);let r=this._getTransformForUpdate(),i=r.bearing,a=r.pitch,o=r.roll,c=r.padding,l=`bearing`in e?this._normalizeBearing(e.bearing,i):i,u=`pitch`in e?+e.pitch:a,d=`roll`in e?this._normalizeBearing(e.roll,o):o,f=`padding`in e?e.padding:r.padding,p=t.P.convert(e.offset),m=r.centerPoint.add(p),h=r.screenPointToLocation(m),g=this.cameraHelper.handleFlyTo(r,{bearing:l,pitch:u,roll:d,padding:f,locationAtOffset:h,offsetAsPoint:p,center:e.center,minZoom:e.minZoom,zoom:e.zoom}),_=e.curve,v=Math.max(r.width,r.height),y=v/g.scaleOfZoom,b=g.pixelPathLength;typeof g.scaleOfMinZoom==`number`&&(_=Math.sqrt(v/g.scaleOfMinZoom/b*2));let x=_*_;function S(e){let t=(y*y-v*v+(e?-1:1)*x*x*b*b)/(2*(e?y:v)*x*b);return Math.log(Math.sqrt(t*t+1)-t)}function C(e){return(Math.exp(e)-Math.exp(-e))/2}function w(e){return(Math.exp(e)+Math.exp(-e))/2}let T=S(!1),E=function(e){return w(T)/w(T+_*e)},D=function(e){return v*((w(T)*(C(t=T+_*e)/w(t))-C(T))/x)/b;var t},O=(S(!0)-T)/_;if(Math.abs(b)<2e-6||!isFinite(O)){if(Math.abs(v-y)<1e-6)return this.easeTo(e,n);let t=y<v?-1:1;O=Math.abs(Math.log(y/v))/_,D=()=>0,E=e=>Math.exp(t*_*e)}return e.duration=`duration`in e?+e.duration:1e3*O/(`screenSpeed`in e?+e.screenSpeed/_:+e.speed),e.maxDuration&&e.duration>e.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=i!==l,this._pitching=u!==a,this._rolling=d!==o,this._padding=!r.isPaddingEqual(f),this._prepareEase(n,!1),this.terrain&&this._prepareElevation(g.targetCenter),this._ease((s=>{let h=s*O,_=1/E(h),v=D(h);this._rotating&&r.setBearing(t.G.number(i,l,s)),this._pitching&&r.setPitch(t.G.number(a,u,s)),this._rolling&&r.setRoll(t.G.number(o,d,s)),this._padding&&(r.interpolatePadding(c,f,s),m=r.centerPoint.add(p)),g.easeFunc(s,_,v,m),this.terrain&&!e.freezeElevation&&this._updateElevation(s),this._applyUpdatedTransform(r),this._fireMoveEvents(n)}),(()=>{this.terrain&&e.freezeElevation&&this._finalizeElevation(),this._afterEase(n)}),e),this}isEasing(){return!!this._easeFrameId}stop(){return this._stop()}_stop(e,t){var n;if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){let e=this._onEaseEnd;delete this._onEaseEnd,e.call(this,t)}return e||(n=this.handlers)==null||n.stop(!1),this}_ease(e,t,n){!1===n.animate||n.duration===0?(e(1),t()):(this._easeStart=l(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=t,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))}_normalizeBearing(e,n){e=t.W(e,-180,180);let r=Math.abs(e-n);return Math.abs(e-360-n)<r&&(e-=360),Math.abs(e+360-n)<r&&(e+=360),e}queryTerrainElevation(e){return this.terrain?this.terrain.getElevationForLngLat(t.V.convert(e),this.transform):null}}let Z={compact:!0,customAttribution:`<a href="https://maplibre.org/" target="_blank">MapLibre</a>`};class Q{constructor(e=Z){this._toggleAttribution=()=>{this._container.classList.contains(`maplibregl-compact`)&&(this._container.classList.contains(`maplibregl-compact-show`)?(this._container.setAttribute(`open`,``),this._container.classList.remove(`maplibregl-compact-show`)):(this._container.classList.add(`maplibregl-compact-show`),this._container.removeAttribute(`open`)))},this._updateData=e=>{!e||e.sourceDataType!==`metadata`&&e.sourceDataType!==`visibility`&&e.dataType!==`style`&&e.type!==`terrain`||this._updateAttributions()},this._updateCompact=()=>{this._map.getCanvasContainer().offsetWidth<=640||this._compact?!1===this._compact?this._container.setAttribute(`open`,``):this._container.classList.contains(`maplibregl-compact`)||this._container.classList.contains(`maplibregl-attrib-empty`)||(this._container.setAttribute(`open`,``),this._container.classList.add(`maplibregl-compact`,`maplibregl-compact-show`)):(this._container.setAttribute(`open`,``),this._container.classList.contains(`maplibregl-compact`)&&this._container.classList.remove(`maplibregl-compact`,`maplibregl-compact-show`))},this._updateCompactMinimize=()=>{this._container.classList.contains(`maplibregl-compact`)&&this._container.classList.contains(`maplibregl-compact-show`)&&this._container.classList.remove(`maplibregl-compact-show`)},this.options=e}getDefaultPosition(){return`bottom-right`}onAdd(e){return this._map=e,this._compact=this.options.compact,this._container=u.create(`details`,`maplibregl-ctrl maplibregl-ctrl-attrib`),this._compactButton=u.create(`summary`,`maplibregl-ctrl-attrib-button`,this._container),this._compactButton.addEventListener(`click`,this._toggleAttribution),this._setElementTitle(this._compactButton,`ToggleAttribution`),this._innerContainer=u.create(`div`,`maplibregl-ctrl-attrib-inner`,this._container),this._updateAttributions(),this._updateCompact(),this._map.on(`styledata`,this._updateData),this._map.on(`sourcedata`,this._updateData),this._map.on(`terrain`,this._updateData),this._map.on(`resize`,this._updateCompact),this._map.on(`drag`,this._updateCompactMinimize),this._container}onRemove(){this._container.remove(),this._map.off(`styledata`,this._updateData),this._map.off(`sourcedata`,this._updateData),this._map.off(`terrain`,this._updateData),this._map.off(`resize`,this._updateCompact),this._map.off(`drag`,this._updateCompactMinimize),this._map=void 0,this._compact=void 0,this._attribHTML=void 0}_setElementTitle(e,t){let n=this._map._getUIString(`AttributionControl.${t}`);e.title=n,e.setAttribute(`aria-label`,n)}_updateAttributions(){if(!this._map.style)return;let e=[];if(this.options.customAttribution&&(Array.isArray(this.options.customAttribution)?e=e.concat(this.options.customAttribution.map((e=>typeof e==`string`?e:``))):typeof this.options.customAttribution==`string`&&e.push(this.options.customAttribution)),this._map.style.stylesheet){let e=this._map.style.stylesheet;this.styleOwner=e.owner,this.styleId=e.id}let t=this._map.style.tileManagers;for(let n in t){let r=t[n];if(r.used||r.usedForTerrain){let t=r.getSource();t.attribution&&e.indexOf(t.attribution)<0&&e.push(t.attribution)}}e=e.filter((e=>String(e).trim())),e.sort(((e,t)=>e.length-t.length)),e=e.filter(((t,n)=>{for(let r=n+1;r<e.length;r++)if(e[r].indexOf(t)>=0)return!1;return!0}));let n=e.join(` | `);n!==this._attribHTML&&(this._attribHTML=n,e.length?(this._innerContainer.innerHTML=u.sanitize(n),this._container.classList.remove(`maplibregl-attrib-empty`)):this._container.classList.add(`maplibregl-attrib-empty`),this._updateCompact(),this._editLink=null)}}class Wa{constructor(e={}){this._updateCompact=()=>{let e=this._container.children;if(e.length){let t=e[0];this._map.getCanvasContainer().offsetWidth<=640||this._compact?!1!==this._compact&&t.classList.add(`maplibregl-compact`):t.classList.remove(`maplibregl-compact`)}},this.options=e}getDefaultPosition(){return`bottom-left`}onAdd(e){this._map=e,this._compact=this.options&&this.options.compact,this._container=u.create(`div`,`maplibregl-ctrl`);let t=u.create(`a`,`maplibregl-ctrl-logo`);return t.target=`_blank`,t.rel=`noopener nofollow`,t.href=`https://maplibre.org/`,t.setAttribute(`aria-label`,this._map._getUIString(`LogoControl.Title`)),t.setAttribute(`rel`,`noopener nofollow`),this._container.appendChild(t),this._container.style.display=`block`,this._map.on(`resize`,this._updateCompact),this._updateCompact(),this._container}onRemove(){this._container.remove(),this._map.off(`resize`,this._updateCompact),this._map=void 0,this._compact=void 0}}class Ga{constructor(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1}add(e){let t=++this._id;return this._queue.push({callback:e,id:t,cancelled:!1}),t}remove(e){let t=this._currentlyRunning,n=t?this._queue.concat(t):this._queue;for(let t of n)if(t.id===e)return void(t.cancelled=!0)}run(e=0){if(this._currentlyRunning)throw Error(`Attempting to run(), but is already running.`);let t=this._currentlyRunning=this._queue;this._queue=[];for(let n of t)if(!n.cancelled&&(n.callback(e),this._cleared))break;this._cleared=!1,this._currentlyRunning=!1}clear(){this._currentlyRunning&&(this._cleared=!0),this._queue=[]}}var Ka=t.aS([{name:`a_pos3d`,type:`Int16`,components:3}]);class qa extends t.E{constructor(e){super(),this._lastTilesetChange=l(),this.tileManager=e,this._tiles={},this._renderableTilesKeys=[],this._sourceTileCache={},this.minzoom=0,this.maxzoom=22,this.deltaZoom=1,this.tileSize=e._source.tileSize*2**this.deltaZoom,e.usedForTerrain=!0,e.tileSize=this.tileSize}destruct(){this.tileManager.usedForTerrain=!1,this.tileManager.tileSize=null}getSource(){return this.tileManager._source}update(e,n){this.tileManager.update(e,n),this._renderableTilesKeys=[];let r={};for(let i of Ue(e,{tileSize:this.tileSize,minzoom:this.minzoom,maxzoom:this.maxzoom,reparseOverscaled:!1,terrain:n,calculateTileZoom:this.tileManager._source.calculateTileZoom}))r[i.key]=!0,this._renderableTilesKeys.push(i.key),this._tiles[i.key]||(i.terrainRttPosMatrix32f=new Float64Array(16),t.c5(i.terrainRttPosMatrix32f,0,t.a5,t.a5,0,0,1),this._tiles[i.key]=new Ae(i,this.tileSize),this._lastTilesetChange=l());for(let e in this._tiles)r[e]||delete this._tiles[e]}freeRtt(e){for(let t in this._tiles){let n=this._tiles[t];(!e||n.tileID.equals(e)||n.tileID.isChildOf(e)||e.isChildOf(n.tileID))&&(n.rtt=[])}}getRenderableTiles(){return this._renderableTilesKeys.map((e=>this.getTileByID(e)))}getTileByID(e){return this._tiles[e]}getTerrainCoords(e,t){return t?this._getTerrainCoordsForTileRanges(e,t):this._getTerrainCoordsForRegularTile(e)}_getTerrainCoordsForRegularTile(e){let n={};for(let r of this._renderableTilesKeys){let i=this._tiles[r].tileID,a=e.clone(),o=t.bi();if(i.canonical.equals(e.canonical))t.c5(o,0,t.a5,t.a5,0,0,1);else if(i.canonical.isChildOf(e.canonical)){let n=i.canonical.z-e.canonical.z,r=i.canonical.x-(i.canonical.x>>n<<n),a=i.canonical.y-(i.canonical.y>>n<<n),s=t.a5>>n;t.c5(o,0,s,s,0,0,1),t.O(o,o,[-r*s,-a*s,0])}else{if(!e.canonical.isChildOf(i.canonical))continue;{let n=e.canonical.z-i.canonical.z,r=e.canonical.x-(e.canonical.x>>n<<n),a=e.canonical.y-(e.canonical.y>>n<<n),s=t.a5>>n;t.c5(o,0,t.a5,t.a5,0,0,1),t.O(o,o,[r*s,a*s,0]),t.Q(o,o,[1/2**n,1/2**n,0])}}a.terrainRttPosMatrix32f=new Float32Array(o),n[r]=a}return n}_getTerrainCoordsForTileRanges(e,n){let r={};for(let i of this._renderableTilesKeys){let a=this._tiles[i].tileID;if(!this._isWithinTileRanges(a,n))continue;let o=e.clone(),s=t.bi();if(a.canonical.z===e.canonical.z){let n=e.canonical.x-a.canonical.x+e.wrap*(1<<e.canonical.z),r=e.canonical.y-a.canonical.y;t.c5(s,0,t.a5,t.a5,0,0,1),t.O(s,s,[n*t.a5,r*t.a5,0])}else if(a.canonical.z>e.canonical.z){let n=a.canonical.z-e.canonical.z,r=a.canonical.x-(a.canonical.x>>n<<n)+e.wrap*(1<<a.canonical.z),i=a.canonical.y-(a.canonical.y>>n<<n),o=e.canonical.x-(a.canonical.x>>n),c=e.canonical.y-(a.canonical.y>>n),l=t.a5>>n;t.c5(s,0,l,l,0,0,1),t.O(s,s,[-r*l+o*t.a5,-i*l+c*t.a5,0])}else{let n=e.canonical.z-a.canonical.z,r=e.canonical.x-(e.canonical.x>>n<<n)+e.wrap*(1<<e.canonical.z),i=e.canonical.y-(e.canonical.y>>n<<n),o=(e.canonical.x>>n)-a.canonical.x,c=(e.canonical.y>>n)-a.canonical.y,l=t.a5<<n;t.c5(s,0,l,l,0,0,1),t.O(s,s,[r*t.a5+o*l,i*t.a5+c*l,0])}o.terrainRttPosMatrix32f=new Float32Array(s),r[i]=o}return r}getSourceTile(e,t){let n=this.tileManager._source,r=e.overscaledZ-this.deltaZoom;if(r>n.maxzoom&&(r=n.maxzoom),r<n.minzoom)return;this._sourceTileCache[e.key]||(this._sourceTileCache[e.key]=e.scaledTo(r).key);let i=this.findTileInCaches(this._sourceTileCache[e.key]);if(!i?.dem&&t)for(;r>=n.minzoom&&!i?.dem;)i=this.findTileInCaches(e.scaledTo(r--).key);return i}findTileInCaches(e){let t=this.tileManager.getTileByID(e);return t||(t=this.tileManager._outOfViewCache.getByKey(e),t)}anyTilesAfterTime(e=Date.now()){return this._lastTilesetChange>=e}_isWithinTileRanges(e,t){let n=t[e.canonical.z];return!!n&&(e.wrap>n.minWrap||e.wrap<n.maxWrap||e.canonical.x>=n.minTileXWrapped&&e.canonical.x<=n.maxTileXWrapped&&e.canonical.y>=n.minTileY&&e.canonical.y<=n.maxTileY)}}class Ja{constructor(e,t,n){this._meshCache={},this.painter=e,this.tileManager=new qa(t),this.options=n,this.exaggeration=typeof n.exaggeration==`number`?n.exaggeration:1,this.qualityFactor=2,this.meshSize=128,this._demMatrixCache={},this.coordsIndex=[],this._coordsTextureSize=1024}destroy(){this._fbo&&=(this._fbo.destroy(),null),this._fboCoordsTexture&&=(this._fboCoordsTexture.destroy(),null),this._fboDepthTexture&&=(this._fboDepthTexture.destroy(),null),this._emptyDemTexture&&=(this._emptyDemTexture.destroy(),null),this._emptyDepthTexture&&=(this._emptyDepthTexture.destroy(),null),this._coordsTexture&&=(this._coordsTexture.destroy(),null);for(let e in this._meshCache)this._meshCache[e].destroy();this._meshCache={},this.tileManager.destruct()}getDEMElevation(e,n,r,i=t.a5){let a=e.normalizeCoordinates(n,r,i);if(!a)return 0;let o=this.getTerrainData(a.tileID),s=o.tile?.dem;if(!s)return 0;let c=t.cA([],[a.x/i*t.a5,a.y/i*t.a5],o.u_terrain_matrix),l=[c[0]*s.dim,c[1]*s.dim],u=Math.floor(l[0]),d=Math.floor(l[1]),f=l[0]-u,p=l[1]-d;return s.get(u,d)*(1-f)*(1-p)+s.get(u+1,d)*f*(1-p)+s.get(u,d+1)*(1-f)*p+s.get(u+1,d+1)*f*p}getElevationForLngLatZoom(e,n){if(!t.cB(n,e.wrap()))return 0;let{tileID:r,mercatorX:i,mercatorY:a}=this._getOverscaledTileIDFromLngLatZoom(e,n);return this.getElevation(r,i%t.a5,a%t.a5,t.a5)}getElevationForLngLat(e,t){let n=Ue(t,{maxzoom:this.tileManager.maxzoom,minzoom:this.tileManager.minzoom,tileSize:512,terrain:this}),r=0;for(let e of n)e.canonical.z>r&&(r=Math.min(e.canonical.z,this.tileManager.maxzoom));return this.getElevationForLngLatZoom(e,r)}getElevation(e,n,r,i=t.a5){return this.getDEMElevation(e,n,r,i)*this.exaggeration}getTerrainData(e){if(!this._emptyDemTexture){let e=this.painter.context,n=new t.R({width:1,height:1},new Uint8Array(4));this._emptyDepthTexture=new t.T(e,n,e.gl.RGBA,{premultiply:!1}),this._emptyDemUnpack=[0,0,0,0],this._emptyDemTexture=new t.T(e,new t.R({width:1,height:1}),e.gl.RGBA,{premultiply:!1}),this._emptyDemTexture.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),this._emptyDemMatrix=t.ao([])}let n=this.tileManager.getSourceTile(e,!0);if(n&&n.dem&&(!n.demTexture||n.needsTerrainPrepare)){let e=this.painter.context;n.demTexture=this.painter.getTileTexture(n.dem.stride),n.demTexture?n.demTexture.update(n.dem.getPixels(),{premultiply:!1}):n.demTexture=new t.T(e,n.dem.getPixels(),e.gl.RGBA,{premultiply:!1}),n.demTexture.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),n.needsTerrainPrepare=!1}let r=n&&n.toString()+n.tileID.key+e.key;if(r&&!this._demMatrixCache[r]){let r=this.tileManager.getSource().maxzoom,i=e.canonical.z-n.tileID.canonical.z;e.overscaledZ>e.canonical.z&&(e.canonical.z>=r?i=e.canonical.z-r:t.w(`cannot calculate elevation if elevation maxzoom > source.maxzoom`));let a=e.canonical.x-(e.canonical.x>>i<<i),o=e.canonical.y-(e.canonical.y>>i<<i),s=t.cC(new Float64Array(16),[1/(t.a5<<i),1/(t.a5<<i),0]);t.O(s,s,[a*t.a5,o*t.a5,0]),this._demMatrixCache[e.key]={matrix:s,coord:e}}return{u_depth:2,u_terrain:3,u_terrain_dim:n&&n.dem&&n.dem.dim||1,u_terrain_matrix:r?this._demMatrixCache[e.key].matrix:this._emptyDemMatrix,u_terrain_unpack:n&&n.dem&&n.dem.getUnpackVector()||this._emptyDemUnpack,u_terrain_exaggeration:this.exaggeration,texture:(n&&n.demTexture||this._emptyDemTexture).texture,depthTexture:(this._fboDepthTexture||this._emptyDepthTexture).texture,tile:n}}getFramebuffer(e){let n=this.painter,r=n.width/devicePixelRatio,i=n.height/devicePixelRatio;return!this._fbo||this._fbo.width===r&&this._fbo.height===i||(this._fbo.destroy(),this._fboCoordsTexture.destroy(),this._fboDepthTexture.destroy(),delete this._fbo,delete this._fboDepthTexture,delete this._fboCoordsTexture),this._fboCoordsTexture||(this._fboCoordsTexture=new t.T(n.context,{width:r,height:i,data:null},n.context.gl.RGBA,{premultiply:!1}),this._fboCoordsTexture.bind(n.context.gl.NEAREST,n.context.gl.CLAMP_TO_EDGE)),this._fboDepthTexture||(this._fboDepthTexture=new t.T(n.context,{width:r,height:i,data:null},n.context.gl.RGBA,{premultiply:!1}),this._fboDepthTexture.bind(n.context.gl.NEAREST,n.context.gl.CLAMP_TO_EDGE)),this._fbo||(this._fbo=n.context.createFramebuffer(r,i,!0,!1),this._fbo.depthAttachment.set(n.context.createRenderbuffer(n.context.gl.DEPTH_COMPONENT16,r,i))),this._fbo.colorAttachment.set(e===`coords`?this._fboCoordsTexture.texture:this._fboDepthTexture.texture),this._fbo}getCoordsTexture(){let e=this.painter.context;if(this._coordsTexture)return this._coordsTexture;let n=new Uint8Array(this._coordsTextureSize*this._coordsTextureSize*4);for(let e=0,t=0;e<this._coordsTextureSize;e++)for(let r=0;r<this._coordsTextureSize;r++,t+=4)n[t+0]=255&r,n[t+1]=255&e,n[t+2]=r>>8<<4|e>>8,n[t+3]=0;let r=new t.R({width:this._coordsTextureSize,height:this._coordsTextureSize},new Uint8Array(n.buffer)),i=new t.T(e,r,e.gl.RGBA,{premultiply:!1});return i.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),this._coordsTexture=i,i}pointCoordinate(e){this.painter.maybeDrawDepthAndCoords(!0);let n=new Uint8Array(4),r=this.painter.context,i=r.gl,a=Math.round(e.x*this.painter.pixelRatio/devicePixelRatio),o=Math.round(e.y*this.painter.pixelRatio/devicePixelRatio),s=Math.round(this.painter.height/devicePixelRatio);r.bindFramebuffer.set(this.getFramebuffer(`coords`).framebuffer),i.readPixels(a,s-o-1,1,1,i.RGBA,i.UNSIGNED_BYTE,n),r.bindFramebuffer.set(null);let c=n[0]+(n[2]>>4<<8),l=n[1]+((15&n[2])<<8),u=this.coordsIndex[255-n[3]],d=u&&this.tileManager.getTileByID(u);if(!d)return null;let f=this._coordsTextureSize,p=(1<<d.tileID.canonical.z)*f;return new t.a6((d.tileID.canonical.x*f+c)/p+d.tileID.wrap,(d.tileID.canonical.y*f+l)/p,this.getElevation(d.tileID,c,l,f))}depthAtPoint(e){let t=new Uint8Array(4),n=this.painter.context,r=n.gl;return n.bindFramebuffer.set(this.getFramebuffer(`depth`).framebuffer),r.readPixels(e.x,this.painter.height/devicePixelRatio-e.y-1,1,1,r.RGBA,r.UNSIGNED_BYTE,t),n.bindFramebuffer.set(null),(t[0]/16777216+t[1]/65536+t[2]/256+t[3])/256}getTerrainMesh(e){let n=this.painter.style.projection?.transitionState>0,r=n&&e.canonical.y===0,i=n&&e.canonical.y===(1<<e.canonical.z)-1,a=`m_${r?`n`:``}_${i?`s`:``}`;if(this._meshCache[a])return this._meshCache[a];let o=this.painter.context,s=new t.cD,c=new t.aW,l=this.meshSize,u=t.a5/l,d=l*l;for(let e=0;e<=l;e++)for(let t=0;t<=l;t++)s.emplaceBack(t*u,e*u,0);for(let e=0;e<d;e+=l+1)for(let t=0;t<l;t++)c.emplaceBack(t+e,l+t+e+1,l+t+e+2),c.emplaceBack(t+e,l+t+e+2,t+e+1);let f=s.length,p=f+(l+1),m=(l+1)*l,h=r?t.bp:0,g=+!r,_=i?t.bq:t.a5,v=+!i;for(let e=0;e<=l;e++)s.emplaceBack(e*u,h,g);for(let e=0;e<=l;e++)s.emplaceBack(e*u,_,v);for(let e=0;e<l;e++)c.emplaceBack(m+e,p+e,p+e+1),c.emplaceBack(m+e,p+e+1,m+e+1),c.emplaceBack(0+e,f+e+1,f+e),c.emplaceBack(0+e,0+e+1,f+e+1);let y=s.length,b=y+2*(l+1);for(let e of[0,1])for(let n=0;n<=l;n++)for(let r of[0,1])s.emplaceBack(e*t.a5,n*u,r);for(let e=0;e<2*l;e+=2)c.emplaceBack(y+e,y+e+1,y+e+3),c.emplaceBack(y+e,y+e+3,y+e+2),c.emplaceBack(b+e,b+e+3,b+e+1),c.emplaceBack(b+e,b+e+2,b+e+3);let x=new Lt(o.createVertexBuffer(s,Ka.members),o.createIndexBuffer(c),t.aV.simpleSegment(0,0,s.length,c.length));return this._meshCache[a]=x,x}getMeshFrameDelta(e){return 2*Math.PI*t.bC/2**Math.max(e,0)/5}getMinTileElevationForLngLatZoom(e,n){if(!t.cB(n,e.wrap()))return 0;let{tileID:r}=this._getOverscaledTileIDFromLngLatZoom(e,n);return this.getMinMaxElevation(r).minElevation??0}getMinMaxElevation(e){let t=this.getTerrainData(e).tile,n={minElevation:null,maxElevation:null};return t&&t.dem&&(n.minElevation=t.dem.min*this.exaggeration,n.maxElevation=t.dem.max*this.exaggeration),n}_getOverscaledTileIDFromLngLatZoom(e,n){let r=t.a6.fromLngLat(e.wrap()),i=(1<<n)*t.a5,a=r.x*i,o=r.y*i,s=Math.floor(a/t.a5),c=Math.floor(o/t.a5);return{tileID:new t.a2(n,0,n,s,c),mercatorX:a,mercatorY:o}}}class Ya{constructor(e,t,n){this._context=e,this._size=t,this._tileSize=n,this._objects=[],this._recentlyUsed=[],this._stamp=0}destruct(){for(let e of this._objects)e.texture.destroy(),e.fbo.destroy()}_createObject(e){let n=this._context.createFramebuffer(this._tileSize,this._tileSize,!0,!0),r=new t.T(this._context,{width:this._tileSize,height:this._tileSize,data:null},this._context.gl.RGBA);return r.bind(this._context.gl.LINEAR,this._context.gl.CLAMP_TO_EDGE),this._context.extTextureFilterAnisotropic&&this._context.gl.texParameterf(this._context.gl.TEXTURE_2D,this._context.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,this._context.extTextureFilterAnisotropicMax),n.depthAttachment.set(this._context.createRenderbuffer(this._context.gl.DEPTH_STENCIL,this._tileSize,this._tileSize)),n.colorAttachment.set(r.texture),{id:e,fbo:n,texture:r,stamp:-1,inUse:!1}}getObjectForId(e){return this._objects[e]}useObject(e){e.inUse=!0,this._recentlyUsed=this._recentlyUsed.filter((t=>e.id!==t)),this._recentlyUsed.push(e.id)}stampObject(e){e.stamp=++this._stamp}getOrCreateFreeObject(){for(let e of this._recentlyUsed)if(!this._objects[e].inUse)return this._objects[e];if(this._objects.length>=this._size)throw Error(`No free RenderPool available, call freeAllObjects() required!`);let e=this._createObject(this._objects.length);return this._objects.push(e),e}freeObject(e){e.inUse=!1}freeAllObjects(){for(let e of this._objects)this.freeObject(e)}isFull(){return!(this._objects.length<this._size)&&!1===this._objects.some((e=>!e.inUse))}}let Xa={background:!0,fill:!0,line:!0,raster:!0,hillshade:!0,"color-relief":!0};class Za{constructor(e,t){this.painter=e,this.terrain=t,this.pool=new Ya(e.context,30,t.tileManager.tileSize*t.qualityFactor)}destruct(){this.pool.destruct()}getTexture(e){return this.pool.getObjectForId(e.rtt[this._stacks.length-1].id).texture}prepareForRender(e,t){this._stacks=[],this._prevType=null,this._rttTiles=[],this._renderableTiles=this.terrain.tileManager.getRenderableTiles(),this._renderableLayerIds=e._order.filter((n=>!e._layers[n].isHidden(t))),this._coordsAscending={};for(let t in e.tileManagers){this._coordsAscending[t]={};let n=e.tileManagers[t].getVisibleCoordinates(),r=e.tileManagers[t].getSource(),i=r instanceof ye?r.terrainTileRanges:null;for(let e of n){let n=this.terrain.tileManager.getTerrainCoords(e,i);for(let e in n)this._coordsAscending[t][e]||(this._coordsAscending[t][e]=[]),this._coordsAscending[t][e].push(n[e])}}this._rttFingerprints={};for(let t of e._order){let n=e._layers[t],r=n.source;if(Xa[n.type]&&!this._rttFingerprints[r]){this._rttFingerprints[r]={};let t=e.tileManagers[r]?.getState().revision??0;for(let e in this._coordsAscending[r])this._rttFingerprints[r][e]=`${this._coordsAscending[r][e].map((e=>e.key)).sort().join()}#${t}`}}for(let e of this._renderableTiles)for(let t in this._rttFingerprints){let n=this._rttFingerprints[t][e.tileID.key];n&&n!==e.rttFingerprint[t]&&(e.rtt=[])}}renderLayer(e,n){if(e.isHidden(this.painter.transform.zoom))return!1;let r=Object.assign(Object.assign({},n),{isRenderingToTexture:!0}),i=e.type,a=this.painter,o=this._renderableLayerIds[this._renderableLayerIds.length-1]===e.id;if(Xa[i]&&(this._prevType&&Xa[this._prevType]||this._stacks.push([]),this._prevType=i,this._stacks[this._stacks.length-1].push(e.id),!o))return!0;if(Xa[this._prevType]||Xa[i]&&o){this._prevType=i;let e=this._stacks.length-1,n=this._stacks[e]||[];for(let i of this._renderableTiles){if(this.pool.isFull()&&(Hi(this.painter,this.terrain,this._rttTiles,r),this._rttTiles=[],this.pool.freeAllObjects()),this._rttTiles.push(i),i.rtt[e]){let t=this.pool.getObjectForId(i.rtt[e].id);if(t.stamp===i.rtt[e].stamp){this.pool.useObject(t);continue}}let o=this.pool.getOrCreateFreeObject();this.pool.useObject(o),this.pool.stampObject(o),i.rtt[e]={id:o.id,stamp:o.stamp},a.context.bindFramebuffer.set(o.fbo.framebuffer),a.context.clear({color:t.bn.transparent,stencil:0}),a.currentStencilSource=void 0;for(let e=0;e<n.length;e++){let t=a.style._layers[n[e]],s=t.source?this._coordsAscending[t.source][i.tileID.key]:[i.tileID];a.context.viewport.set([0,0,o.fbo.width,o.fbo.height]),a._renderTileClippingMasks(t,s,!0),a.renderLayer(a,a.style.tileManagers[t.source],t,s,r),t.source&&(i.rttFingerprint[t.source]=this._rttFingerprints[t.source][i.tileID.key])}}return Hi(this.painter,this.terrain,this._rttTiles,r),this._rttTiles=[],this.pool.freeAllObjects(),Xa[i]}return!1}}let Qa={"AttributionControl.ToggleAttribution":`Toggle attribution`,"AttributionControl.MapFeedback":`Map feedback`,"FullscreenControl.Enter":`Enter fullscreen`,"FullscreenControl.Exit":`Exit fullscreen`,"GeolocateControl.FindMyLocation":`Find my location`,"GeolocateControl.LocationNotAvailable":`Location not available`,"LogoControl.Title":`MapLibre logo`,"Map.Title":`Map`,"Marker.Title":`Map marker`,"NavigationControl.ResetBearing":`Drag to rotate map, click to reset north`,"NavigationControl.ZoomIn":`Zoom in`,"NavigationControl.ZoomOut":`Zoom out`,"Popup.Close":`Close popup`,"ScaleControl.Feet":`ft`,"ScaleControl.Meters":`m`,"ScaleControl.Kilometers":`km`,"ScaleControl.Miles":`mi`,"ScaleControl.NauticalMiles":`nm`,"GlobeControl.Enable":`Enable globe`,"GlobeControl.Disable":`Disable globe`,"TerrainControl.Enable":`Enable terrain`,"TerrainControl.Disable":`Disable terrain`,"CooperativeGesturesHandler.WindowsHelpText":`Use Ctrl + scroll to zoom the map`,"CooperativeGesturesHandler.MacHelpText":`Use ⌘ + scroll to zoom the map`,"CooperativeGesturesHandler.MobileHelpText":`Use two fingers to move the map`},$a=n,eo={hash:!1,interactive:!0,bearingSnap:7,zoomSnap:0,attributionControl:Z,maplibreLogo:!1,refreshExpiredTiles:!0,canvasContextAttributes:{antialias:!1,preserveDrawingBuffer:!1,powerPreference:`high-performance`,failIfMajorPerformanceCaveat:!1,desynchronized:!1,contextType:void 0},scrollZoom:!0,minZoom:-2,maxZoom:22,minPitch:0,maxPitch:60,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,touchPitch:!0,cooperativeGestures:!1,trackResize:!0,center:[0,0],elevation:0,zoom:0,bearing:0,pitch:0,roll:0,renderWorldCopies:!0,maxTileCacheSize:null,maxTileCacheZoomLevels:t.c.MAX_TILE_CACHE_ZOOM_LEVELS,transformRequest:null,transformCameraUpdate:null,transformConstrain:null,fadeDuration:300,crossSourceCollisions:!0,clickTolerance:3,localIdeographFontFamily:`sans-serif`,pitchWithRotate:!0,rollEnabled:!1,reduceMotion:void 0,validateStyle:!0,maxCanvasSize:[4096,4096],cancelPendingTileRequestsWhileZooming:!0,centerClampedToGround:!0,experimentalZoomLevelsToOverscale:void 0,anisotropicFilterPitch:20},to=class extends Ua{get _ownerWindow(){return this._container?.ownerDocument?.defaultView||window}constructor(e){t.cE.mark(t.cF.create);let n=Object.assign(Object.assign(Object.assign({},eo),e),{canvasContextAttributes:Object.assign(Object.assign({},eo.canvasContextAttributes),e.canvasContextAttributes)});if(n.minZoom!=null&&n.maxZoom!=null&&n.minZoom>n.maxZoom)throw Error(`maxZoom must be greater than or equal to minZoom`);if(n.minPitch!=null&&n.maxPitch!=null&&n.minPitch>n.maxPitch)throw Error(`maxPitch must be greater than or equal to minPitch`);if(n.minPitch!=null&&n.minPitch<0)throw Error(`minPitch must be greater than or equal to 0`);if(n.maxPitch!=null&&n.maxPitch>180)throw Error(`maxPitch must be less than or equal to 180`);let r=new Yt,i=new $t;n.minZoom!==void 0&&r.setMinZoom(n.minZoom),n.maxZoom!==void 0&&r.setMaxZoom(n.maxZoom),n.minPitch!==void 0&&r.setMinPitch(n.minPitch),n.maxPitch!==void 0&&r.setMaxPitch(n.maxPitch),n.renderWorldCopies!==void 0&&r.setRenderWorldCopies(n.renderWorldCopies),n.transformConstrain!==null&&r.setConstrainOverride(n.transformConstrain),super(r,i,{bearingSnap:n.bearingSnap,zoomSnap:n.zoomSnap}),this._idleTriggered=!1,this._crossFadingFactor=1,this._renderTaskQueue=new Ga,this._controls=[],this._mapId=t.ac(),this._lostContextStyle={style:null,images:null},this._contextLost=e=>{if(e.preventDefault(),this._frameRequest&&=(this._frameRequest.abort(),null),this.painter.destroy(),this._lostContextStyle=this._getStyleAndImages(),this.style){for(let e of Object.values(this.style._layers))if(e.type===`custom`&&console.warn(`Custom layer with id '${e.id}' cannot be restored after WebGL context loss. You will need to re-add it manually after context restoration.`),e._listeners)for(let[t]of Object.entries(e._listeners))console.warn(`Custom layer with id '${e.id}' had event listeners for event '${t}' which cannot be restored after WebGL context loss. You will need to re-add them manually after context restoration.`);this.style.destroy(),this.style=null,this.fire(new t.l(`webglcontextlost`,{originalEvent:e}))}else this.fire(new t.l(`webglcontextlost`,{originalEvent:e}))},this._contextRestored=e=>{this._lostContextStyle.style&&this.setStyle(this._lostContextStyle.style,{diff:!1}),this._lostContextStyle.images&&(this.style.imageManager.images=this._lostContextStyle.images),this._lostContextStyle={style:null,images:null},this._setupPainter(),this.resize(),this._update(),this._resizeInternal(),this.fire(new t.l(`webglcontextrestored`,{originalEvent:e}))},this._onMapScroll=e=>{if(e.target===this._container)return this._container.scrollTop=0,this._container.scrollLeft=0,!1},this._onWindowOnline=()=>{this._update()},this._interactive=n.interactive,this._maxTileCacheSize=n.maxTileCacheSize,this._maxTileCacheZoomLevels=n.maxTileCacheZoomLevels,this._canvasContextAttributes=Object.assign({},n.canvasContextAttributes),this._trackResize=!0===n.trackResize,this._bearingSnap=n.bearingSnap,this._zoomSnap=n.zoomSnap,this._centerClampedToGround=n.centerClampedToGround,this._refreshExpiredTiles=!0===n.refreshExpiredTiles,this._fadeDuration=n.fadeDuration,this._crossSourceCollisions=!0===n.crossSourceCollisions,this._collectResourceTiming=!0===n.collectResourceTiming,this._locale=Object.assign(Object.assign({},Qa),n.locale),this._clickTolerance=n.clickTolerance,this._overridePixelRatio=n.pixelRatio,this._maxCanvasSize=n.maxCanvasSize,this._zoomLevelsToOverscale=n.experimentalZoomLevelsToOverscale,this.transformCameraUpdate=n.transformCameraUpdate,this.transformConstrain=n.transformConstrain,this.cancelPendingTileRequestsWhileZooming=!0===n.cancelPendingTileRequestsWhileZooming,this.setAnisotropicFilterPitch(n.anisotropicFilterPitch),n.reduceMotion!==void 0&&(s.prefersReducedMotion=n.reduceMotion),this._imageQueueHandle=d.addThrottleControl((()=>this.isMoving())),this._requestManager=new f(n.transformRequest),this._container=this._resolveContainer(n.container),n.maxBounds&&this.setMaxBounds(n.maxBounds),this._setupContainer(),this._setupPainter(),this.on(`move`,(()=>this._update(!1))),this.on(`moveend`,(()=>this._update(!1))),this.on(`zoom`,(()=>this._update(!0))),this.on(`terrain`,(()=>{this.painter.terrainFacilitator.dirty=!0,this._update(!0)})),this.once(`idle`,(()=>{this._idleTriggered=!0})),typeof window<`u`&&(this._ownerWindow.addEventListener(`online`,this._onWindowOnline,!1),this._setupResizeObserver()),this.handlers=new Ha(this,n),this._hash=n.hash&&new Ki(typeof n.hash==`string`&&n.hash||void 0).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:n.center,elevation:n.elevation,zoom:n.zoom,bearing:n.bearing,pitch:n.pitch,roll:n.roll}),n.bounds&&(this.resize(),this.fitBounds(n.bounds,t.e({},n.fitBoundsOptions,{duration:0}))));let a=typeof n.style==`string`||n.style?.projection?.type!==`globe`;this.resize(null,a),this._localIdeographFontFamily=n.localIdeographFontFamily,this._validateStyle=n.validateStyle,n.style&&this.setStyle(n.style,{localIdeographFontFamily:n.localIdeographFontFamily}),n.attributionControl&&this.addControl(new Q(typeof n.attributionControl==`boolean`?void 0:n.attributionControl)),n.maplibreLogo&&this.addControl(new Wa,n.logoPosition),this.on(`style.load`,(()=>{if(a||this._resizeTransform(),this.transform.unmodified){let e=t.U(this.style.stylesheet,[`center`,`zoom`,`bearing`,`pitch`,`roll`]);this.jumpTo(e)}})),this.on(`data`,(e=>{this._update(e.dataType===`style`),this.fire(new t.l(`${e.dataType}data`,e))})),this.on(`dataloading`,(e=>{this.fire(new t.l(`${e.dataType}dataloading`,e))})),this.on(`dataabort`,(e=>{this.fire(new t.l(`sourcedataabort`,e))}))}_getMapId(){return this._mapId}setGlobalStateProperty(e,t){return this.style.setGlobalStateProperty(e,t),this._update(!0)}getGlobalState(){return this.style.getGlobalState()}addControl(e,n){if(n===void 0&&(n=e.getDefaultPosition?e.getDefaultPosition():`top-right`),!e||!e.onAdd)return this.fire(new t.k(Error(`Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.`)));let r=e.onAdd(this);this._controls.push(e);let i=this._controlPositions[n];return n.indexOf(`bottom`)===-1?i.appendChild(r):i.insertBefore(r,i.firstChild),this}removeControl(e){if(!e||!e.onRemove)return this.fire(new t.k(Error(`Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.`)));let n=this._controls.indexOf(e);return n>-1&&this._controls.splice(n,1),e.onRemove(this),this}hasControl(e){return this._controls.indexOf(e)>-1}coveringTiles(e){return Ue(this.transform,e)}calculateCameraOptionsFromTo(e,t,n,r){return r==null&&this.terrain&&(r=this.terrain.getElevationForLngLat(n,this.transform)),super.calculateCameraOptionsFromTo(e,t,n,r)}resize(e,n=!0){if(this._lostContextStyle.style!==null)return this;this._resizeInternal(n);let r=!this._moving;return r&&(this.stop(),this.fire(new t.l(`movestart`,e)).fire(new t.l(`move`,e))),this.fire(new t.l(`resize`,e)),r&&this.fire(new t.l(`moveend`,e)),this}_resizeInternal(e=!0){let[t,n]=this._containerDimensions(),r=this._getClampedPixelRatio(t,n);if(this._resizeCanvas(t,n,r),this.painter.resize(t,n,r),this.painter.overLimit()){let e=this.painter.context.gl;this._maxCanvasSize=[e.drawingBufferWidth,e.drawingBufferHeight];let r=this._getClampedPixelRatio(t,n);this._resizeCanvas(t,n,r),this.painter.resize(t,n,r)}this._resizeTransform(e)}_resizeTransform(e=!0){var t;let[n,r]=this._containerDimensions();this.transform.resize(n,r,e),(t=this._requestedCameraState)==null||t.resize(n,r,e)}_getClampedPixelRatio(e,t){let{0:n,1:r}=this._maxCanvasSize,i=this.getPixelRatio(),a=e*i,o=t*i;return Math.min(a>n?n/a:1,o>r?r/o:1)*i}getPixelRatio(){return this._overridePixelRatio??devicePixelRatio}setPixelRatio(e){this._overridePixelRatio=e,this.resize()}getBounds(){return this.transform.getBounds()}getMaxBounds(){return this.transform.getMaxBounds()}setMaxBounds(e){return this.transform.setMaxBounds(N.convert(e)),this._update()}setMinZoom(e){if((e??=-2)>=-2&&e<=this.transform.maxZoom){let n=this.transform.zoom,r=this._getTransformForUpdate();return r.setMinZoom(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.zoom&&this.fire(new t.l(`zoomstart`)).fire(new t.l(`zoom`)).fire(new t.l(`zoomend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`minZoom must be between -2 and the current maxZoom, inclusive`)}getMinZoom(){return this.transform.minZoom}setMaxZoom(e){if((e??=22)>=this.transform.minZoom){let n=this.transform.zoom,r=this._getTransformForUpdate();return r.setMaxZoom(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.zoom&&this.fire(new t.l(`zoomstart`)).fire(new t.l(`zoom`)).fire(new t.l(`zoomend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`maxZoom must be greater than the current minZoom`)}getMaxZoom(){return this.transform.maxZoom}setMinPitch(e){if((e??=0)<0)throw Error(`minPitch must be greater than or equal to 0`);if(e>=0&&e<=this.transform.maxPitch){let n=this.transform.pitch,r=this._getTransformForUpdate();return r.setMinPitch(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.pitch&&this.fire(new t.l(`pitchstart`)).fire(new t.l(`pitch`)).fire(new t.l(`pitchend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`minPitch must be between 0 and the current maxPitch, inclusive`)}getMinPitch(){return this.transform.minPitch}setMaxPitch(e){if((e??=60)>180)throw Error(`maxPitch must be less than or equal to 180`);if(e>=this.transform.minPitch){let n=this.transform.pitch,r=this._getTransformForUpdate();return r.setMaxPitch(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.pitch&&this.fire(new t.l(`pitchstart`)).fire(new t.l(`pitch`)).fire(new t.l(`pitchend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`maxPitch must be greater than the current minPitch`)}getMaxPitch(){return this.transform.maxPitch}getAnisotropicFilterPitch(){return this._anisotropicFilterPitch}setAnisotropicFilterPitch(e){if((e??=20)>180)throw Error(`anisotropicFilterPitch must be less than or equal to 180`);if(e<0)throw Error(`anisotropicFilterPitch must be greater than or equal to 0`);return this._anisotropicFilterPitch=e,this._update()}getRenderWorldCopies(){return this.transform.renderWorldCopies}setRenderWorldCopies(e){return this.transform.setRenderWorldCopies(e),this._update()}setTransformConstrain(e){return this.transform.setConstrainOverride(e),this._update()}project(e){return this.transform.locationToScreenPoint(t.V.convert(e),this.style&&this.terrain)}unproject(e){return this.transform.screenPointToLocation(t.P.convert(e),this.terrain)}isMoving(){return this._moving||this.handlers?.isMoving()}isZooming(){return this._zooming||this.handlers?.isZooming()}isRotating(){return this._rotating||this.handlers?.isRotating()}_createDelegatedListener(e,t,n){if(e===`mouseenter`||e===`mouseover`){let r=!1;return{layers:t,listener:n,delegates:{mousemove:i=>{let a=t.filter((e=>this.getLayer(e))),o=a.length===0?[]:this.queryRenderedFeatures(i.point,{layers:a});o.length?r||(r=!0,n.call(this,new na(e,this,i.originalEvent,{features:o}))):r=!1},mouseout:()=>{r=!1}}}}if(e===`mouseleave`||e===`mouseout`){let r=!1;return{layers:t,listener:n,delegates:{mousemove:i=>{let a=t.filter((e=>this.getLayer(e)));(a.length===0?[]:this.queryRenderedFeatures(i.point,{layers:a})).length?r=!0:r&&(r=!1,n.call(this,new na(e,this,i.originalEvent)))},mouseout:t=>{r&&(r=!1,n.call(this,new na(e,this,t.originalEvent)))}}}}{let r=e=>{let r=t.filter((e=>this.getLayer(e))),i=r.length===0?[]:this.queryRenderedFeatures(e.point,{layers:r});i.length&&(e.features=i,n.call(this,e),delete e.features)};return{layers:t,listener:n,delegates:{[e]:r}}}}_saveDelegatedListener(e,t){this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[e]=this._delegatedListeners[e]||[],this._delegatedListeners[e].push(t)}_removeDelegatedListener(e,t,n){if(!this._delegatedListeners||!this._delegatedListeners[e])return;let r=this._delegatedListeners[e];for(let e=0;e<r.length;e++){let i=r[e];if(i.listener===n&&i.layers.length===t.length&&i.layers.every((e=>t.includes(e)))){for(let e in i.delegates)this.off(e,i.delegates[e]);r.splice(e,1);return}}}on(e,t,n){if(n===void 0)return super.on(e,t);let r=typeof t==`string`?[t]:t,i=this._createDelegatedListener(e,r,n);this._saveDelegatedListener(e,i);for(let e in i.delegates)this.on(e,i.delegates[e]);return{unsubscribe:()=>{this._removeDelegatedListener(e,r,n)}}}once(e,t,n){if(n===void 0)return super.once(e,t);let r=typeof t==`string`?[t]:t,i=this._createDelegatedListener(e,r,n);for(let t in i.delegates){let a=i.delegates[t];i.delegates[t]=(...t)=>{this._removeDelegatedListener(e,r,n),a(...t)}}this._saveDelegatedListener(e,i);for(let e in i.delegates)this.once(e,i.delegates[e]);return this}off(e,t,n){return n===void 0?super.off(e,t):(this._removeDelegatedListener(e,typeof t==`string`?[t]:t,n),this)}queryRenderedFeatures(e,n){if(!this.style)return[];let r,i=e instanceof t.P||Array.isArray(e),a=i?e:[[0,0],[this.transform.width,this.transform.height]];if(n=n||(i?{}:e)||{},a instanceof t.P||typeof a[0]==`number`)r=[t.P.convert(a)];else{let e=t.P.convert(a[0]),n=t.P.convert(a[1]);r=[e,new t.P(n.x,e.y),n,new t.P(e.x,n.y),e]}return this.style.queryRenderedFeatures(r,n,this.transform)}querySourceFeatures(e,t){return this.style.querySourceFeatures(e,t)}setStyle(e,n){return!1!==(n=t.e({},{localIdeographFontFamily:this._localIdeographFontFamily,validate:this._validateStyle},n)).diff&&n.localIdeographFontFamily===this._localIdeographFontFamily&&this.style&&e?(this._diffStyle(e,n),this):(this._localIdeographFontFamily=n.localIdeographFontFamily,this._updateStyle(e,n))}setTransformRequest(e){return this._requestManager.setTransformRequest(e),this}_getUIString(e){let t=this._locale[e];if(t==null)throw Error(`Missing UI string '${e}'`);return t}_updateStyle(e,t){var n;if(t.transformStyle&&this.style&&!this.style._loaded)return void this.style.once(`style.load`,(()=>this._updateStyle(e,t)));let r=this.style&&t.transformStyle?this.style.serialize():void 0;return this.style&&(this.style.setEventedParent(null),this.style._remove(!e)),e?(this.style=new Fn(this,t||{}),this.style.setEventedParent(this,{style:this.style}),typeof e==`string`?this.style.loadURL(e,t,r):this.style.loadJSON(e,t,r),this):((n=this.style?.projection)==null||n.destroy(),delete this.style,this)}_lazyInitEmptyStyle(){this.style||(this.style=new Fn(this,{}),this.style.setEventedParent(this,{style:this.style}),this.style.loadEmpty())}_diffStyle(e,n){return t._(this,void 0,void 0,(function*(){if(typeof e==`string`){let r=e,i=yield this._requestManager.transformRequest(r,`Style`);try{let e=yield t.j(i,new AbortController);this._updateDiff(e.data,n)}catch(e){e&&this.fire(new t.k(e))}}else typeof e==`object`&&this._updateDiff(e,n)}))}_updateDiff(e,n){try{this.style.setState(e,n)&&this._update(!0)}catch(r){t.w(`Unable to perform style diff: ${r.message||r.error||r}. Rebuilding the style from scratch.`),this._updateStyle(e,n)}}getStyle(){if(this.style)return this.style.serialize()}_getStyleAndImages(){return this.style?{style:this.style.serialize(),images:this.style.imageManager.cloneImages()}:{style:null,images:{}}}isStyleLoaded(){return this.style?this.style.loaded():t.w(`There is no style added to the map.`)}addSource(e,t){return this._lazyInitEmptyStyle(),this.style.addSource(e,t),this._update(!0)}isSourceLoaded(e){let n=this.style&&this.style.tileManagers[e];if(n!==void 0)return n.loaded();this.fire(new t.k(Error(`There is no tile manager with ID '${e}'`)))}setTerrain(e){if(this.style._checkLoaded(),this._terrainDataCallback&&this.style.off(`data`,this._terrainDataCallback),e){let n=this.style.tileManagers[e.source];if(!n)throw Error(`cannot load terrain, because there exists no source with ID: ${e.source}`);this.terrain===null&&n.reload();for(let n in this.style._layers){let r=this.style._layers[n];r.type===`hillshade`&&r.source===e.source&&t.w(`You are using the same source for a hillshade layer and for 3D terrain. Please consider using two separate sources to improve rendering quality.`),r.type===`color-relief`&&r.source===e.source&&t.w(`You are using the same source for a color-relief layer and for 3D terrain. Please consider using two separate sources to improve rendering quality.`)}this.terrain=new Ja(this.painter,n,e),this.painter.renderToTexture=new Za(this.painter,this.terrain),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this._terrainDataCallback=t=>{t.dataType===`style`?this.terrain.tileManager.freeRtt():t.dataType===`source`&&t.tile&&(t.sourceId!==e.source||this._elevationFreeze||(this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this._centerClampedToGround&&this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom))),t.source?.type===`image`?this.terrain.tileManager.freeRtt():this.terrain.tileManager.freeRtt(t.tile.tileID))},this.style.on(`data`,this._terrainDataCallback)}else this.terrain&&this.terrain.destroy(),this.terrain=null,this.painter.renderToTexture&&this.painter.renderToTexture.destruct(),this.painter.renderToTexture=null,this.transform.setMinElevationForCurrentTile(0),this._centerClampedToGround&&this.transform.setElevation(0);return this.fire(new t.l(`terrain`,{terrain:e})),this}getTerrain(){return this.terrain?.options??null}areTilesLoaded(){let e=this.style&&this.style.tileManagers;for(let t of Object.values(e))if(!t.areTilesLoaded())return!1;return!0}removeSource(e){return this.style.removeSource(e),this._update(!0)}getSource(e){return this.style.getSource(e)}setSourceTileLodParams(e,t,n){if(n){let r=this.getSource(n);if(!r)throw Error(`There is no source with ID "${n}", cannot set LOD parameters`);r.calculateTileZoom=Be(Math.max(1,e),Math.max(1,t))}else for(let n in this.style.tileManagers)this.style.tileManagers[n].getSource().calculateTileZoom=Be(Math.max(1,e),Math.max(1,t));return this._update(!0),this}refreshTiles(e,n){let r=this.style.tileManagers[e];if(!r)throw Error(`There is no tile manager with ID "${e}", cannot refresh tile`);n===void 0?r.reload(!0):r.refreshTiles(n.map((e=>new t.a9(e.z,e.x,e.y))))}addImage(e,n,r={}){let{pixelRatio:i=1,sdf:a=!1,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d}=r;if(this._lazyInitEmptyStyle(),!(n instanceof HTMLImageElement||t.b(n))){if(n.width===void 0||n.height===void 0)return this.fire(new t.k(Error("Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`")));{let{width:r,height:s,data:f}=n,p=n;return this.style.addImage(e,{data:new t.R({width:r,height:s},new Uint8Array(f)),pixelRatio:i,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d,sdf:a,version:0,userImage:p}),p.onAdd&&p.onAdd(this,e),this}}{let{width:r,height:f,data:p}=s.getImageData(n);this.style.addImage(e,{data:new t.R({width:r,height:f},p),pixelRatio:i,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d,sdf:a,version:0})}}updateImage(e,n){let r=this.style.getImage(e);if(!r)return this.fire(new t.k(Error("The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.")));let{width:i,height:a,data:o}=n instanceof HTMLImageElement||t.b(n)?s.getImageData(n):n;if(i===void 0||a===void 0)return this.fire(new t.k(Error("Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`")));if(i!==r.data.width||a!==r.data.height)return this.fire(new t.k(Error(`The width and height of the updated image must be that same as the previous version of the image`)));let c=!(n instanceof HTMLImageElement||t.b(n));return r.data.replace(o,c),this.style.updateImage(e,r),this}getImage(e){return this.style.getImage(e)}hasImage(e){return e?!!this.style.getImage(e):(this.fire(new t.k(Error(`Missing required image id`))),!1)}removeImage(e){this.style.removeImage(e)}loadImage(e){return t._(this,void 0,void 0,(function*(){return d.getImage(yield this._requestManager.transformRequest(e,`Image`),new AbortController)}))}listImages(){return this.style.listImages()}addLayer(e,t){return this._lazyInitEmptyStyle(),this.style.addLayer(e,t),this._update(!0)}moveLayer(e,t){return this.style.moveLayer(e,t),this._update(!0)}removeLayer(e){return this.style.removeLayer(e),this._update(!0)}getLayer(e){return this.style.getLayer(e)}getLayersOrder(){return this.style.getLayersOrder()}setLayerZoomRange(e,t,n){return this.style.setLayerZoomRange(e,t,n),this._update(!0)}setFilter(e,t,n={}){return this.style.setFilter(e,t,n),this._update(!0)}getFilter(e){return this.style.getFilter(e)}setPaintProperty(e,t,n,r={}){return this.style.setPaintProperty(e,t,n,r),this._update(!0)}getPaintProperty(e,t){return this.style.getPaintProperty(e,t)}setLayoutProperty(e,t,n,r={}){return this.style.setLayoutProperty(e,t,n,r),this._update(!0)}getLayoutProperty(e,t){return this.style.getLayoutProperty(e,t)}setGlyphs(e,t={}){return this._lazyInitEmptyStyle(),this.style.setGlyphs(e,t),this._update(!0)}getGlyphs(){return this.style.getGlyphsUrl()}addSprite(e,t,n={}){return this._lazyInitEmptyStyle(),this.style.addSprite(e,t,n,(e=>{e||this._update(!0)})),this}removeSprite(e){return this._lazyInitEmptyStyle(),this.style.removeSprite(e),this._update(!0)}getSprite(){return this.style.getSprite()}setSprite(e,t={}){return this._lazyInitEmptyStyle(),this.style.setSprite(e,t,(e=>{e||this._update(!0)})),this}setLight(e,t={}){return this._lazyInitEmptyStyle(),this.style.setLight(e,t),this._update(!0)}getLight(){return this.style.getLight()}setSky(e,t={}){return this._lazyInitEmptyStyle(),this.style.setSky(e,t),this._update(!0)}getSky(){return this.style.getSky()}setFeatureState(e,t){return this.style.setFeatureState(e,t),this._update()}removeFeatureState(e,t){return this.style.removeFeatureState(e,t),this._update()}getFeatureState(e){return this.style.getFeatureState(e)}getContainer(){return this._container}getCanvasContainer(){return this._canvasContainer}getCanvas(){return this._canvas}_containerDimensions(){let e=0,t=0;return this._container&&(e=this._container.clientWidth||400,t=this._container.clientHeight||300),[e,t]}_setupResizeObserver(){let e=!1,t=Gi((e=>{this._trackResize&&!this._removed&&(this.resize(e),this.redraw())}),50),n=this._ownerWindow.ResizeObserver??ResizeObserver;this._resizeObserver=new n((n=>{e?t(n):e=!0})),this._resizeObserver.observe(this._container)}_resolveContainer(e){if(typeof e==`string`){let t=document.getElementById(e);if(!t)throw Error(`Container '${e}' not found.`);return t}if(e instanceof HTMLElement||e&&typeof e==`object`&&e.nodeType===1)return e;throw Error(`Invalid type: 'container' must be a String or HTMLElement.`)}_setupContainer(){let e=this._container;e.classList.add(`maplibregl-map`);let t=this._canvasContainer=u.create(`div`,`maplibregl-canvas-container`,e);this._interactive&&t.classList.add(`maplibregl-interactive`),this._canvas=u.create(`canvas`,`maplibregl-canvas`,t),this._canvas.addEventListener(`webglcontextlost`,this._contextLost,!1),this._canvas.addEventListener(`webglcontextrestored`,this._contextRestored,!1),this._canvas.setAttribute(`tabindex`,this._interactive?`0`:`-1`),this._canvas.setAttribute(`aria-label`,this._getUIString(`Map.Title`)),this._canvas.setAttribute(`role`,`region`);let n=this._containerDimensions(),r=this._getClampedPixelRatio(n[0],n[1]);this._resizeCanvas(n[0],n[1],r);let i=this._controlContainer=u.create(`div`,`maplibregl-control-container`,e),a=this._controlPositions={};[`top-left`,`top-right`,`bottom-left`,`bottom-right`].forEach((e=>{a[e]=u.create(`div`,`maplibregl-ctrl-${e} `,i)})),this._container.addEventListener(`scroll`,this._onMapScroll,!1)}_resizeCanvas(e,t,n){this._canvas.width=Math.floor(n*e),this._canvas.height=Math.floor(n*t),this._canvas.style.width=`${e}px`,this._canvas.style.height=`${t}px`}_setupPainter(){let e=Object.assign(Object.assign({},this._canvasContextAttributes),{alpha:!0,depth:!0,stencil:!0,premultipliedAlpha:!0}),t=null;this._canvas.addEventListener(`webglcontextcreationerror`,(n=>{t={requestedAttributes:e},n&&(t.statusMessage=n.statusMessage,t.type=n.type)}),{once:!0});let n=null;if(n=this._canvasContextAttributes.contextType?this._canvas.getContext(this._canvasContextAttributes.contextType,e):this._canvas.getContext(`webgl2`,e)||this._canvas.getContext(`webgl`,e),!n){let e=`Failed to initialize WebGL`;throw t?(t.message=e,Error(JSON.stringify(t))):Error(e)}this.painter=new Wi(n,this.transform)}migrateProjection(e,n){super.migrateProjection(e,n),this.painter.transform=e,this.fire(new t.l(`projectiontransition`,{newProjection:this.style.projection.name}))}loaded(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()}_update(e){return this.style&&this.style._loaded?(this._styleDirty=this._styleDirty||e,this._sourcesDirty=!0,this.triggerRepaint(),this):this}_requestRenderFrame(e){return this._update(),this._renderTaskQueue.add(e)}_cancelRenderFrame(e){this._renderTaskQueue.remove(e)}_render(e){var n;let r=this._idleTriggered?this._fadeDuration:0,i=this.style.projection?.transitionState>0;if(this.painter.context.setDirty(),this.painter.setBaseState(),this._renderTaskQueue.run(e),this._removed)return;let a=!1;if(this.style&&this._styleDirty){this._styleDirty=!1;let e=this.transform.zoom,n=l();this.style.zoomHistory.update(e,n);let i=new t.H(e,{now:n,fadeDuration:r,zoomHistory:this.style.zoomHistory,transition:this.style.getTransition()}),o=i.crossFadingFactor();o===1&&o===this._crossFadingFactor||(a=!0,this._crossFadingFactor=o),this.style.update(i)}let o=this.style.projection?.transitionState>0!==i;(n=this.style.projection)==null||n.setErrorQueryLatitudeDegrees(this.transform.center.lat),this.transform.setTransitionState(this.style.projection?.transitionState,this.style.projection?.latitudeErrorCorrectionRadians),this.style&&(this._sourcesDirty||o)&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this.terrain?(this.terrain.tileManager.update(this.transform,this.terrain),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),!this._elevationFreeze&&this._centerClampedToGround&&this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom))):(this.transform.setMinElevationForCurrentTile(0),this._centerClampedToGround&&this.transform.setElevation(0)),this._placementDirty=this.style&&this.style._updatePlacement(this.transform,this.showCollisionBoxes,r,this._crossSourceCollisions,o),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:r,showPadding:this.showPadding,anisotropicFilterPitch:this.getAnisotropicFilterPitch()}),this.fire(new t.l(`render`)),this.loaded()&&!this._loaded&&(this._loaded=!0,t.cE.mark(t.cF.load),this.fire(new t.l(`load`))),this.style&&(this.style.hasTransitions()||a)&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles();let s=this._sourcesDirty||this._styleDirty||this._placementDirty;return s||this._repaint?this.triggerRepaint():!this.isMoving()&&this.loaded()&&this.fire(new t.l(`idle`)),!this._loaded||this._fullyLoaded||s||(this._fullyLoaded=!0,t.cE.mark(t.cF.fullLoad)),this}redraw(){return this.style&&(this._frameRequest&&=(this._frameRequest.abort(),null),this._render(0)),this}remove(){var e;this._hash&&this._hash.remove();for(let e of this._controls)e.onRemove(this);this._controls=[],this._frameRequest&&=(this._frameRequest.abort(),null),this._renderTaskQueue.clear(),this.painter.destroy(),this.handlers.destroy(),delete this.handlers,this.setStyle(null),typeof window<`u`&&this._ownerWindow.removeEventListener(`online`,this._onWindowOnline,!1),d.removeThrottleControl(this._imageQueueHandle),(e=this._resizeObserver)==null||e.disconnect();let n=this.painter.context.gl.getExtension(`WEBGL_lose_context`);n!=null&&n.loseContext&&n.loseContext(),this._canvas.removeEventListener(`webglcontextrestored`,this._contextRestored,!1),this._canvas.removeEventListener(`webglcontextlost`,this._contextLost,!1),this._canvasContainer.remove(),this._controlContainer.remove(),this._container.removeEventListener(`scroll`,this._onMapScroll,!1),this._container.classList.remove(`maplibregl-map`),t.cE.remove(),this._removed=!0,this.fire(new t.l(`remove`))}triggerRepaint(){this.style&&!this._frameRequest&&(this._frameRequest=new AbortController,s.frame(this._frameRequest,(e=>{t.cE.recordStartOfFrameAt(e),this._frameRequest=null;try{this._render(e)}catch(e){if(!t.Z(e)&&!function(e){return e.message===ii}(e))throw e}}),(()=>{}),this._ownerWindow))}get showTileBoundaries(){return!!this._showTileBoundaries}set showTileBoundaries(e){this._showTileBoundaries!==e&&(this._showTileBoundaries=e,this._update())}get showPadding(){return!!this._showPadding}set showPadding(e){this._showPadding!==e&&(this._showPadding=e,this._update())}get showCollisionBoxes(){return!!this._showCollisionBoxes}set showCollisionBoxes(e){this._showCollisionBoxes!==e&&(this._showCollisionBoxes=e,e?this.style._generateCollisionBoxes():this._update())}get showOverdrawInspector(){return!!this._showOverdrawInspector}set showOverdrawInspector(e){this._showOverdrawInspector!==e&&(this._showOverdrawInspector=e,this._update())}get repaint(){return!!this._repaint}set repaint(e){this._repaint!==e&&(this._repaint=e,this.triggerRepaint())}get vertices(){return!!this._vertices}set vertices(e){this._vertices=e,this._update()}get version(){return $a}getCameraTargetElevation(){return this.transform.elevation}getProjection(){return this.style.getProjection()}setProjection(e){return this._lazyInitEmptyStyle(),this.style.setProjection(e),this._update(!0)}},no={showCompass:!0,showZoom:!0,visualizePitch:!1,visualizeRoll:!0};class ro{constructor(e,n,r=!1){this.mousedown=e=>{this.startMove(e,u.mousePos(this.element,e)),window.addEventListener(`mousemove`,this.mousemove),window.addEventListener(`mouseup`,this.mouseup)},this.mousemove=e=>{this.move(e,u.mousePos(this.element,e))},this.mouseup=e=>{this._rotatePitchHandler.dragEnd(e),this.offTemp()},this.touchstart=e=>{e.targetTouches.length===1?(this._startPos=this._lastPos=u.touchPos(this.element,e.targetTouches)[0],this.startMove(e,this._startPos),window.addEventListener(`touchmove`,this.touchmove,{passive:!1}),window.addEventListener(`touchend`,this.touchend)):this.reset()},this.touchmove=e=>{e.targetTouches.length===1?(this._lastPos=u.touchPos(this.element,e.targetTouches)[0],this.move(e,this._lastPos)):this.reset()},this.touchend=e=>{e.targetTouches.length===0&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)<this._clickTolerance&&this.element.click(),delete this._startPos,delete this._lastPos,this.offTemp()},this.reset=()=>{this._rotatePitchHandler.reset(),delete this._startPos,delete this._lastPos,this.offTemp()},this._clickTolerance=10,this.element=n;let i=new ga;this._rotatePitchHandler=new X({clickTolerance:3,move:(e,i)=>{let a=n.getBoundingClientRect(),o=new t.P((a.bottom-a.top)/2,(a.right-a.left)/2);return{bearingDelta:t.cv(new t.P(e.x,i.y),i,o),pitchDelta:r?-.5*(i.y-e.y):void 0}},moveStateManager:i,enable:!0,assignEvents:()=>{}}),this.map=e,n.addEventListener(`mousedown`,this.mousedown),n.addEventListener(`touchstart`,this.touchstart,{passive:!1}),n.addEventListener(`touchcancel`,this.reset)}startMove(e,t){this._rotatePitchHandler.dragStart(e,t),u.disableDrag()}move(e,t){let n=this.map,{bearingDelta:r,pitchDelta:i}=this._rotatePitchHandler.dragMove(e,t)||{};r&&n.setBearing(n.getBearing()+r),i&&n.setPitch(n.getPitch()+i)}off(){let e=this.element;e.removeEventListener(`mousedown`,this.mousedown),e.removeEventListener(`touchstart`,this.touchstart),window.removeEventListener(`touchmove`,this.touchmove),window.removeEventListener(`touchend`,this.touchend),e.removeEventListener(`touchcancel`,this.reset),this.offTemp()}offTemp(){u.enableDrag(),window.removeEventListener(`mousemove`,this.mousemove),window.removeEventListener(`mouseup`,this.mouseup),window.removeEventListener(`touchmove`,this.touchmove),window.removeEventListener(`touchend`,this.touchend)}}let io;function ao(e,n,r,i=!1){if(i||!r.getCoveringTilesDetailsProvider().allowWorldCopies())return e?.wrap();let a=new t.V(e.lng,e.lat);if(e=new t.V(e.lng,e.lat),n){let i=new t.V(e.lng-360,e.lat),a=new t.V(e.lng+360,e.lat),o=r.locationToScreenPoint(e).distSqr(n);r.locationToScreenPoint(i).distSqr(n)<o?e=i:r.locationToScreenPoint(a).distSqr(n)<o&&(e=a)}for(;Math.abs(e.lng-r.center.lng)>180;){let t=r.locationToScreenPoint(e);if(t.x>=0&&t.y>=0&&t.x<=r.width&&t.y<=r.height)break;e.lng>r.center.lng?e.lng-=360:e.lng+=360}return e.lng!==a.lng&&r.isPointOnMapSurface(r.locationToScreenPoint(e))?e:a}let oo={center:`translate(-50%,-50%)`,top:`translate(-50%,0)`,"top-left":`translate(0,0)`,"top-right":`translate(-100%,0)`,bottom:`translate(-50%,-100%)`,"bottom-left":`translate(0,-100%)`,"bottom-right":`translate(-100%,-100%)`,left:`translate(0,-50%)`,right:`translate(-100%,-50%)`};function so(e,t,n){let r=e.classList;for(let e in oo)r.remove(`maplibregl-${n}-anchor-${e}`);r.add(`maplibregl-${n}-anchor-${t}`)}class co extends t.E{constructor(e){if(super(),this._onClick=e=>{this.fire(new t.l(`click`,{originalEvent:e}))},this._onKeyPress=e=>{e.code!==`Space`&&e.code!==`Enter`||this.togglePopup()},this._onMapClick=e=>{let t=e.originalEvent.target,n=this._element;this._popup&&(t===n||n.contains(t))&&this.togglePopup()},this._update=e=>{if(!this._map)return;let t=this._map.loaded()&&!this._map.isMoving();(e?.type===`terrain`||e?.type===`render`&&!t)&&this._map.once(`render`,this._update),this._lngLat=ao(this._lngLat,this._flatPos,this._map.transform),this._flatPos=this._pos=this._map.project(this._lngLat)._add(this._offset),this._map.terrain&&(this._flatPos=this._map.transform.locationToScreenPoint(this._lngLat)._add(this._offset));let n=``;this._rotationAlignment===`viewport`||this._rotationAlignment===`auto`?n=`rotateZ(${this._rotation}deg)`:this._rotationAlignment===`map`&&(n=`rotateZ(${this._rotation-this._map.getBearing()}deg)`);let r=``;this._pitchAlignment===`viewport`||this._pitchAlignment===`auto`?r=`rotateX(0deg)`:this._pitchAlignment===`map`&&(r=`rotateX(${this._map.getPitch()}deg)`),this._subpixelPositioning||e&&e.type!==`moveend`||(this._pos=this._pos.round()),this._element.style.transform=`${oo[this._anchor]} translate(${this._pos.x}px, ${this._pos.y}px) ${r} ${n}`,s.frameAsync(new AbortController,this._map._ownerWindow).then((()=>{this._updateOpacity(e&&e.type===`moveend`)})).catch((()=>{}))},this._onMove=e=>{if(!this._isDragging){let t=this._clickTolerance||this._map._clickTolerance;this._isDragging=e.point.dist(this._pointerdownPos)>=t}this._isDragging&&(this._pos=e.point.sub(this._positionDelta),this._lngLat=this._map.unproject(this._pos),this.setLngLat(this._lngLat),this._element.style.pointerEvents=`none`,this._state===`pending`&&(this._state=`active`,this.fire(new t.l(`dragstart`))),this.fire(new t.l(`drag`)))},this._onUp=()=>{this._element.style.pointerEvents=`auto`,this._positionDelta=null,this._pointerdownPos=null,this._isDragging=!1,this._map.off(`mousemove`,this._onMove),this._map.off(`touchmove`,this._onMove),this._state===`active`&&this.fire(new t.l(`dragend`)),this._state=`inactive`},this._addDragHandler=e=>{this._element.contains(e.originalEvent.target)&&(e.preventDefault(),this._positionDelta=e.point.sub(this._pos).add(this._offset),this._pointerdownPos=e.point,this._state=`pending`,this._map.on(`mousemove`,this._onMove),this._map.on(`touchmove`,this._onMove),this._map.once(`mouseup`,this._onUp),this._map.once(`touchend`,this._onUp))},this._anchor=e&&e.anchor||`center`,this._color=e&&e.color||`#3FB1CE`,this._scale=e&&e.scale||1,this._draggable=e&&e.draggable||!1,this._clickTolerance=e&&e.clickTolerance||0,this._subpixelPositioning=e&&e.subpixelPositioning||!1,this._isDragging=!1,this._state=`inactive`,this._rotation=e&&e.rotation||0,this._rotationAlignment=e&&e.rotationAlignment||`auto`,this._pitchAlignment=e&&e.pitchAlignment&&e.pitchAlignment!==`auto`?e.pitchAlignment:this._rotationAlignment,this.setOpacity(e?.opacity,e?.opacityWhenCovered),e&&e.element)this._element=e.element,this._offset=t.P.convert(e&&e.offset||[0,0]);else{this._defaultMarker=!0,this._element=u.create(`div`);let n=u.createNS(`http://www.w3.org/2000/svg`,`svg`);n.setAttributeNS(null,`display`,`block`),n.setAttributeNS(null,`height`,`41px`),n.setAttributeNS(null,`width`,`27px`),n.setAttributeNS(null,`viewBox`,`0 0 27 41`);let r=u.createNS(`http://www.w3.org/2000/svg`,`g`);r.setAttributeNS(null,`stroke`,`none`),r.setAttributeNS(null,`stroke-width`,`1`),r.setAttributeNS(null,`fill`,`none`),r.setAttributeNS(null,`fill-rule`,`evenodd`);let i=u.createNS(`http://www.w3.org/2000/svg`,`g`);i.setAttributeNS(null,`fill-rule`,`nonzero`);let a=u.createNS(`http://www.w3.org/2000/svg`,`g`);a.setAttributeNS(null,`transform`,`translate(3.0, 29.0)`),a.setAttributeNS(null,`fill`,`#000000`);for(let e of[{rx:`10.5`,ry:`5.25002273`},{rx:`10.5`,ry:`5.25002273`},{rx:`9.5`,ry:`4.77275007`},{rx:`8.5`,ry:`4.29549936`},{rx:`7.5`,ry:`3.81822308`},{rx:`6.5`,ry:`3.34094679`},{rx:`5.5`,ry:`2.86367051`},{rx:`4.5`,ry:`2.38636864`}]){let t=u.createNS(`http://www.w3.org/2000/svg`,`ellipse`);t.setAttributeNS(null,`opacity`,`0.04`),t.setAttributeNS(null,`cx`,`10.5`),t.setAttributeNS(null,`cy`,`5.80029008`),t.setAttributeNS(null,`rx`,e.rx),t.setAttributeNS(null,`ry`,e.ry),a.appendChild(t)}let o=u.createNS(`http://www.w3.org/2000/svg`,`g`);o.setAttributeNS(null,`fill`,this._color);let s=u.createNS(`http://www.w3.org/2000/svg`,`path`);s.setAttributeNS(null,`d`,`M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z`),o.appendChild(s);let c=u.createNS(`http://www.w3.org/2000/svg`,`g`);c.setAttributeNS(null,`opacity`,`0.25`),c.setAttributeNS(null,`fill`,`#000000`);let l=u.createNS(`http://www.w3.org/2000/svg`,`path`);l.setAttributeNS(null,`d`,`M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z`),c.appendChild(l);let d=u.createNS(`http://www.w3.org/2000/svg`,`g`);d.setAttributeNS(null,`transform`,`translate(6.0, 7.0)`),d.setAttributeNS(null,`fill`,`#FFFFFF`);let f=u.createNS(`http://www.w3.org/2000/svg`,`g`);f.setAttributeNS(null,`transform`,`translate(8.0, 8.0)`);let p=u.createNS(`http://www.w3.org/2000/svg`,`circle`);p.setAttributeNS(null,`fill`,`#000000`),p.setAttributeNS(null,`opacity`,`0.25`),p.setAttributeNS(null,`cx`,`5.5`),p.setAttributeNS(null,`cy`,`5.5`),p.setAttributeNS(null,`r`,`5.4999962`);let m=u.createNS(`http://www.w3.org/2000/svg`,`circle`);m.setAttributeNS(null,`fill`,`#FFFFFF`),m.setAttributeNS(null,`cx`,`5.5`),m.setAttributeNS(null,`cy`,`5.5`),m.setAttributeNS(null,`r`,`5.4999962`),f.appendChild(p),f.appendChild(m),i.appendChild(a),i.appendChild(o),i.appendChild(c),i.appendChild(d),i.appendChild(f),n.appendChild(i),n.setAttributeNS(null,`height`,41*this._scale+`px`),n.setAttributeNS(null,`width`,27*this._scale+`px`),this._element.appendChild(n),this._offset=t.P.convert(e&&e.offset||[0,-14])}if(this._element.classList.add(`maplibregl-marker`),this._element.addEventListener(`dragstart`,(e=>{e.preventDefault()})),this._element.addEventListener(`mousedown`,(e=>{e.preventDefault()})),so(this._element,this._anchor,`marker`),e&&e.className)for(let t of e.className.split(` `))this._element.classList.add(t);this._popup=null}addTo(e){return this.remove(),this._map=e,this._element.hasAttribute(`aria-label`)||this._element.setAttribute(`aria-label`,e._getUIString(`Marker.Title`)),this._element.hasAttribute(`role`)||this._element.setAttribute(`role`,`button`),e.getCanvasContainer().appendChild(this._element),e.on(`move`,this._update),e.on(`moveend`,this._update),e.on(`terrain`,this._update),e.on(`projectiontransition`,this._update),this._element.addEventListener(`click`,this._onClick),this.setDraggable(this._draggable),this._update(),this._map.on(`click`,this._onMapClick),this}remove(){return this._opacityTimeout&&(clearTimeout(this._opacityTimeout),delete this._opacityTimeout),this._map&&(this._map.off(`click`,this._onMapClick),this._map.off(`move`,this._update),this._map.off(`moveend`,this._update),this._map.off(`terrain`,this._update),this._map.off(`projectiontransition`,this._update),this._map.off(`mousedown`,this._addDragHandler),this._map.off(`touchstart`,this._addDragHandler),this._map.off(`mouseup`,this._onUp),this._map.off(`touchend`,this._onUp),this._map.off(`mousemove`,this._onMove),this._map.off(`touchmove`,this._onMove),delete this._map),this._element.removeEventListener(`click`,this._onClick),this._element.remove(),this._popup&&this._popup.remove(),this}getLngLat(){return this._lngLat}setLngLat(e){return this._lngLat=t.V.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this}getElement(){return this._element}setPopup(e){if(this._popup&&(this._popup.remove(),this._popup=null,this._element.removeEventListener(`keypress`,this._onKeyPress),this._originalTabIndex||this._element.removeAttribute(`tabindex`)),e){if(!(`offset`in e.options)){let t=38.1,n=13.5,r=13.5/Math.SQRT2;e.options.offset=this._defaultMarker?{top:[0,0],"top-left":[0,0],"top-right":[0,0],bottom:[0,-t],"bottom-left":[r,-1*(t-n+r)],"bottom-right":[-r,-1*(t-n+r)],left:[n,-1*(t-n)],right:[-n,-1*(t-n)]}:this._offset}this._popup=e,this._originalTabIndex=this._element.getAttribute(`tabindex`),this._originalTabIndex||this._element.setAttribute(`tabindex`,`0`),this._element.addEventListener(`keypress`,this._onKeyPress)}return this}setSubpixelPositioning(e){return this._subpixelPositioning=e,this}getPopup(){return this._popup}togglePopup(){let e=this._popup;return this._element.style.opacity===this._opacityWhenCovered||e&&(e.isOpen()?e.remove():(e.setLngLat(this._lngLat),e.addTo(this._map))),this}_updateOpacity(e=!1){var n;let r=this._map?.terrain,i=this._map.transform.isLocationOccluded(this._lngLat);if(!r||i){let e=i?this._opacityWhenCovered:this._opacity;this._element.style.opacity!==e&&(this._element.style.opacity=e);return}if(e)this._opacityTimeout=null;else{if(this._opacityTimeout)return;this._opacityTimeout=setTimeout((()=>{this._opacityTimeout=null}),100)}let a=this._map,o=a.terrain.depthAtPoint(this._pos),s=a.terrain.getElevationForLngLat(this._lngLat,a.transform);if(a.transform.lngLatToCameraDepth(this._lngLat,s)-o<.006)return void(this._element.style.opacity=this._opacity);let c=-this._offset.y/a.transform.pixelsPerMeter,l=Math.sin(a.getPitch()*Math.PI/180)*c,u=a.terrain.depthAtPoint(new t.P(this._pos.x,this._pos.y-this._offset.y)),d=a.transform.lngLatToCameraDepth(this._lngLat,s+l)-u>.006;(n=this._popup)!=null&&n.isOpen()&&d&&this._popup.remove(),this._element.style.opacity=d?this._opacityWhenCovered:this._opacity}getOffset(){return this._offset}setOffset(e){return this._offset=t.P.convert(e),this._update(),this}addClassName(e){this._element.classList.add(e)}removeClassName(e){this._element.classList.remove(e)}toggleClassName(e){return this._element.classList.toggle(e)}setDraggable(e){return this._draggable=!!e,this._map&&(e?(this._map.on(`mousedown`,this._addDragHandler),this._map.on(`touchstart`,this._addDragHandler)):(this._map.off(`mousedown`,this._addDragHandler),this._map.off(`touchstart`,this._addDragHandler))),this}isDraggable(){return this._draggable}setRotation(e){return this._rotation=e||0,this._update(),this}getRotation(){return this._rotation}setRotationAlignment(e){return this._rotationAlignment=e||`auto`,this._update(),this}getRotationAlignment(){return this._rotationAlignment}setPitchAlignment(e){return this._pitchAlignment=e&&e!==`auto`?e:this._rotationAlignment,this._update(),this}getPitchAlignment(){return this._pitchAlignment}setOpacity(e,t){return(this._opacity===void 0||e===void 0&&t===void 0)&&(this._opacity=`1`,this._opacityWhenCovered=`0.2`),e!==void 0&&(this._opacity=e),t!==void 0&&(this._opacityWhenCovered=t),this._map&&this._updateOpacity(!0),this}}let lo={positionOptions:{enableHighAccuracy:!1,maximumAge:0,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showAccuracyCircle:!0,showUserLocation:!0},uo=0,fo=!1,po={maxWidth:100,unit:`metric`};function mo(e,t,n){let r=n&&n.maxWidth||100,i=e._container.clientHeight/2,a=e._container.clientWidth/2,o=e.unproject([a-r/2,i]),s=e.unproject([a+r/2,i]),c=Math.round(e.project(s).x-e.project(o).x),l=Math.min(r,c,e._container.clientWidth),u=o.distanceTo(s);if(n&&n.unit===`imperial`){let n=3.2808*u;n>5280?ho(t,l,n/5280,e._getUIString(`ScaleControl.Miles`)):ho(t,l,n,e._getUIString(`ScaleControl.Feet`))}else n&&n.unit===`nautical`?ho(t,l,u/1852,e._getUIString(`ScaleControl.NauticalMiles`)):u>=1e3?ho(t,l,u/1e3,e._getUIString(`ScaleControl.Kilometers`)):ho(t,l,u,e._getUIString(`ScaleControl.Meters`))}function ho(e,t,n,r){let i=function(e){let t=10**(`${Math.floor(e)}`.length-1),n=e/t;return n=n>=10?10:n>=5?5:n>=3?3:n>=2?2:n>=1?1:function(e){let t=10**Math.ceil(-Math.log(e)/Math.LN10);return Math.round(e*t)/t}(n),t*n}(n);e.style.width=i/n*t+`px`,e.innerHTML=`${i}&nbsp;${r}`}let go={closeButton:!0,closeOnClick:!0,focusAfterOpen:!0,className:``,maxWidth:`240px`,subpixelPositioning:!1,locationOccludedOpacity:void 0,padding:void 0},_o=[`a[href]`,`[tabindex]:not([tabindex='-1'])`,`[contenteditable]:not([contenteditable='false'])`,`button:not([disabled])`,`input:not([disabled])`,`select:not([disabled])`,`textarea:not([disabled])`].join(`, `);function vo(e){if(e){if(typeof e==`number`){let n=Math.round(Math.abs(e)/Math.SQRT2);return{center:new t.P(0,0),top:new t.P(0,e),"top-left":new t.P(n,n),"top-right":new t.P(-n,n),bottom:new t.P(0,-e),"bottom-left":new t.P(n,-n),"bottom-right":new t.P(-n,-n),left:new t.P(e,0),right:new t.P(-e,0)}}if(e instanceof t.P||Array.isArray(e)){let n=t.P.convert(e);return{center:n,top:n,"top-left":n,"top-right":n,bottom:n,"bottom-left":n,"bottom-right":n,left:n,right:n}}return{center:t.P.convert(e.center||[0,0]),top:t.P.convert(e.top||[0,0]),"top-left":t.P.convert(e[`top-left`]||[0,0]),"top-right":t.P.convert(e[`top-right`]||[0,0]),bottom:t.P.convert(e.bottom||[0,0]),"bottom-left":t.P.convert(e[`bottom-left`]||[0,0]),"bottom-right":t.P.convert(e[`bottom-right`]||[0,0]),left:t.P.convert(e.left||[0,0]),right:t.P.convert(e.right||[0,0])}}return vo(new t.P(0,0))}let yo=n;e.AJAXError=t.cG,e.EXTENT=t.a5,e.Event=t.l,e.Evented=t.E,e.LngLat=t.V,e.MercatorCoordinate=t.a6,e.Point=t.P,e.addProtocol=t.cH,e.config=t.c,e.removeProtocol=t.cI,e.AttributionControl=Q,e.BoxZoomHandler=ca,e.CanvasSource=xe,e.CooperativeGesturesHandler=Ra,e.DoubleClickZoomHandler=Ma,e.DragPanHandler=Fa,e.DragRotateHandler=Ia,e.EdgeInsets=Ht,e.FullscreenControl=class extends t.E{constructor(e={}){var n;super(),this._onFullscreenChange=()=>{let e=window.document.fullscreenElement||window.document.webkitFullscreenElement;for(;e?.shadowRoot?.fullscreenElement;)e=e.shadowRoot.fullscreenElement;e===this._container!==this._fullscreen&&this._handleFullscreenChange()},this._onClickFullscreen=()=>{this._isFullscreen()?this._exitFullscreen():this._requestFullscreen()},this._fullscreen=!1,this._pseudo=(n=e.pseudo)!=null&&n,e&&e.container&&(e.container instanceof HTMLElement?this._container=e.container:t.w(`Full screen control 'container' must be a DOM element.`)),`onfullscreenchange`in document?this._fullscreenchange=`fullscreenchange`:`onmozfullscreenchange`in document?this._fullscreenchange=`mozfullscreenchange`:`onwebkitfullscreenchange`in document?this._fullscreenchange=`webkitfullscreenchange`:`onmsfullscreenchange`in document&&(this._fullscreenchange=`MSFullscreenChange`)}onAdd(e){return this._map=e,this._container||=this._map.getContainer(),this._controlContainer=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._setupUI(),this._controlContainer}onRemove(){this._controlContainer.remove(),this._map=null,window.document.removeEventListener(this._fullscreenchange,this._onFullscreenChange)}_setupUI(){let e=this._fullscreenButton=u.create(`button`,`maplibregl-ctrl-fullscreen`,this._controlContainer);u.create(`span`,`maplibregl-ctrl-icon`,e).setAttribute(`aria-hidden`,`true`),e.type=`button`,this._updateTitle(),this._fullscreenButton.addEventListener(`click`,this._onClickFullscreen),window.document.addEventListener(this._fullscreenchange,this._onFullscreenChange)}_updateTitle(){let e=this._getTitle();this._fullscreenButton.setAttribute(`aria-label`,e),this._fullscreenButton.title=e}_getTitle(){return this._map._getUIString(this._isFullscreen()?`FullscreenControl.Exit`:`FullscreenControl.Enter`)}_isFullscreen(){return this._fullscreen}_handleFullscreenChange(){this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(`maplibregl-ctrl-shrink`),this._fullscreenButton.classList.toggle(`maplibregl-ctrl-fullscreen`),this._updateTitle(),this._fullscreen?(this.fire(new t.l(`fullscreenstart`)),this._prevCooperativeGesturesEnabled=this._map.cooperativeGestures.isEnabled(),this._map.cooperativeGestures.disable()):(this.fire(new t.l(`fullscreenend`)),this._prevCooperativeGesturesEnabled&&this._map.cooperativeGestures.enable())}_exitFullscreen(){this._pseudo?this._togglePseudoFullScreen():window.document.exitFullscreen?window.document.exitFullscreen():window.document.webkitCancelFullScreen?window.document.webkitCancelFullScreen():this._togglePseudoFullScreen()}_requestFullscreen(){this._pseudo?this._togglePseudoFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.webkitRequestFullscreen?this._container.webkitRequestFullscreen():this._togglePseudoFullScreen()}_togglePseudoFullScreen(){this._container.classList.toggle(`maplibregl-pseudo-fullscreen`),this._handleFullscreenChange(),this._map.resize()}},e.GeoJSONSource=ve,e.GeolocateControl=class extends t.E{constructor(e){super(),this._onSuccess=e=>{if(this._map){if(this._isOutOfMapMaxBounds(e))return this._setErrorState(),this.fire(new t.l(`outofmaxbounds`,e)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case`WAITING_ACTIVE`:case`ACTIVE_LOCK`:case`ACTIVE_ERROR`:this._watchState=`ACTIVE_LOCK`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`BACKGROUND`:case`BACKGROUND_ERROR`:this._watchState=`BACKGROUND`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background`);break;default:throw Error(`Unexpected watchState ${this._watchState}`)}this.options.showUserLocation&&this._watchState!==`OFF`&&this._updateMarker(e),this.options.trackUserLocation&&this._watchState!==`ACTIVE_LOCK`||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove(`maplibregl-user-location-dot-stale`),this.fire(new t.l(`geolocate`,e)),this._finish()}},this._updateCamera=e=>{let n=new t.V(e.coords.longitude,e.coords.latitude),r=e.coords.accuracy,i=this._map.getBearing(),a=t.e({bearing:i},this.options.fitBoundsOptions),o=N.fromLngLat(n,r);this._map.fitBounds(o,a,{geolocateSource:!0})},this._updateMarker=e=>{if(e){let n=new t.V(e.coords.longitude,e.coords.latitude);this._accuracyCircleMarker.setLngLat(n).addTo(this._map),this._userLocationDotMarker.setLngLat(n).addTo(this._map),this._accuracy=e.coords.accuracy,this._updateCircleRadiusIfNeeded()}else this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove()},this._onUpdate=()=>{this._updateCircleRadiusIfNeeded()},this._onError=e=>{if(this._map){if(e.code===1){this._watchState=`OFF`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.disabled=!0;let e=this._map._getUIString(`GeolocateControl.LocationNotAvailable`);this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e),this._geolocationWatchID!==void 0&&this._clearWatch()}else{if(e.code===3&&fo)return;this._setErrorState()}this._watchState!==`OFF`&&this.options.showUserLocation&&this._dotElement.classList.add(`maplibregl-user-location-dot-stale`),this.fire(new t.l(`error`,e)),this._finish()}},this._finish=()=>{this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},this._onMoveStart=e=>{if(!this._map)return;let n=e?.[0]instanceof ResizeObserverEntry;e.geolocateSource||this._watchState!==`ACTIVE_LOCK`||n||this._map.isZooming()||(this._watchState=`BACKGROUND`,this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this.fire(new t.l(`trackuserlocationend`)),this.fire(new t.l(`userlocationlostfocus`)))},this._setupUI=()=>{this._map&&(this._container.addEventListener(`contextmenu`,(e=>e.preventDefault())),this._geolocateButton=u.create(`button`,`maplibregl-ctrl-geolocate`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._geolocateButton).setAttribute(`aria-hidden`,`true`),this._geolocateButton.type=`button`,this._geolocateButton.disabled=!0)},this._finishSetupUI=e=>{if(this._map){if(!1===e){t.w(`Geolocation support is not available so the GeolocateControl will be disabled.`);let e=this._map._getUIString(`GeolocateControl.LocationNotAvailable`);this._geolocateButton.disabled=!0,this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e)}else{let e=this._map._getUIString(`GeolocateControl.FindMyLocation`);this._geolocateButton.disabled=!1,this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute(`aria-pressed`,`false`),this._watchState=`OFF`),this.options.showUserLocation&&(this._dotElement=u.create(`div`,`maplibregl-user-location-dot`),this._userLocationDotMarker=new co({element:this._dotElement}),this._circleElement=u.create(`div`,`maplibregl-user-location-accuracy-circle`),this._accuracyCircleMarker=new co({element:this._circleElement,pitchAlignment:`map`}),this.options.trackUserLocation&&(this._watchState=`OFF`),this._map.on(`zoom`,this._onUpdate),this._map.on(`move`,this._onUpdate),this._map.on(`rotate`,this._onUpdate),this._map.on(`pitch`,this._onUpdate)),this._geolocateButton.addEventListener(`click`,(()=>this.trigger())),this._setup=!0,this.options.trackUserLocation&&this._map.on(`movestart`,this._onMoveStart)}},this.options=t.e({},lo,e)}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._setupUI(),function(){return t._(this,arguments,void 0,(function*(e=!1){if(io!==void 0&&!e)return io;if(window.navigator.permissions===void 0)return io=!!window.navigator.geolocation,io;try{io=(yield window.navigator.permissions.query({name:`geolocation`})).state!==`denied`}catch{io=!!window.navigator.geolocation}return io}))}().then((e=>this._finishSetupUI(e))),this._container}onRemove(){this._geolocationWatchID!==void 0&&(window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),this.options.showAccuracyCircle&&this._accuracyCircleMarker&&this._accuracyCircleMarker.remove(),this._container.remove(),this._map.off(`movestart`,this._onMoveStart),this._map.off(`zoom`,this._onUpdate),this._map.off(`move`,this._onUpdate),this._map.off(`rotate`,this._onUpdate),this._map.off(`pitch`,this._onUpdate),this._map=void 0,uo=0,fo=!1}_isOutOfMapMaxBounds(e){let t=this._map.getMaxBounds(),n=e.coords;return t&&(n.longitude<t.getWest()||n.longitude>t.getEast()||n.latitude<t.getSouth()||n.latitude>t.getNorth())}_setErrorState(){switch(this._watchState){case`WAITING_ACTIVE`:this._watchState=`ACTIVE_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active-error`);break;case`ACTIVE_LOCK`:this._watchState=`ACTIVE_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`);break;case`BACKGROUND`:this._watchState=`BACKGROUND_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`);break;case`ACTIVE_ERROR`:case`BACKGROUND_ERROR`:case`OFF`:case void 0:break;default:throw Error(`Unexpected watchState ${this._watchState}`)}}_updateCircleRadiusIfNeeded(){let e=this._userLocationDotMarker.getLngLat();if(!(this.options.showUserLocation&&this.options.showAccuracyCircle&&this._accuracy&&e))return;let t=this._map.project(e),n=this._map.unproject([t.x+100,t.y]),r=e.distanceTo(n)/100,i=2*this._accuracy/r;this._circleElement.style.width=`${i.toFixed(2)}px`,this._circleElement.style.height=`${i.toFixed(2)}px`}trigger(){if(!this._setup)return t.w(`Geolocate control triggered before added to a map`),!1;if(this.options.trackUserLocation){switch(this._watchState){case`OFF`:this._watchState=`WAITING_ACTIVE`,this.fire(new t.l(`trackuserlocationstart`));break;case`WAITING_ACTIVE`:case`ACTIVE_LOCK`:case`ACTIVE_ERROR`:case`BACKGROUND_ERROR`:uo--,fo=!1,this._watchState=`OFF`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this.fire(new t.l(`trackuserlocationend`));break;case`BACKGROUND`:this._watchState=`ACTIVE_LOCK`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.l(`trackuserlocationstart`)),this.fire(new t.l(`userlocationfocus`));break;default:throw Error(`Unexpected watchState ${this._watchState}`)}switch(this._watchState){case`WAITING_ACTIVE`:this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`ACTIVE_LOCK`:this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`OFF`:break;default:throw Error(`Unexpected watchState ${this._watchState}`)}if(this._watchState===`OFF`&&this._geolocationWatchID!==void 0)this._clearWatch();else if(this._geolocationWatchID===void 0){let e;this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.setAttribute(`aria-pressed`,`true`),uo++,uo>1?(e={maximumAge:6e5,timeout:0},fo=!0):(e=this.options.positionOptions,fo=!1),this._geolocationWatchID=window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,e)}}else window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0}_clearWatch(){window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.setAttribute(`aria-pressed`,`false`),this.options.showUserLocation&&this._updateMarker(null)}},e.GlobeControl=class{constructor(){this._toggleProjection=()=>{let e=this._map.getProjection()?.type;this._map.setProjection(e!==`mercator`&&e?{type:`mercator`}:{type:`globe`}),this._updateGlobeIcon()},this._updateGlobeIcon=()=>{this._globeButton.classList.remove(`maplibregl-ctrl-globe`),this._globeButton.classList.remove(`maplibregl-ctrl-globe-enabled`),this._map.getProjection()?.type===`globe`?(this._globeButton.classList.add(`maplibregl-ctrl-globe-enabled`),this._globeButton.title=this._map._getUIString(`GlobeControl.Disable`)):(this._globeButton.classList.add(`maplibregl-ctrl-globe`),this._globeButton.title=this._map._getUIString(`GlobeControl.Enable`))}}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._globeButton=u.create(`button`,`maplibregl-ctrl-globe`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._globeButton).setAttribute(`aria-hidden`,`true`),this._globeButton.type=`button`,this._globeButton.addEventListener(`click`,this._toggleProjection),this._updateGlobeIcon(),this._map.on(`styledata`,this._updateGlobeIcon),this._map.on(`projectiontransition`,this._updateGlobeIcon),this._container}onRemove(){this._container.remove(),this._map.off(`styledata`,this._updateGlobeIcon),this._map.off(`projectiontransition`,this._updateGlobeIcon),this._globeButton.removeEventListener(`click`,this._toggleProjection),this._map=void 0}},e.Hash=Ki,e.ImageSource=ye,e.KeyboardHandler=Oa,e.LngLatBounds=N,e.LogoControl=Wa,e.Map=to,e.MapLibreMap=to,e.MapMouseEvent=na,e.MapTouchEvent=ra,e.MapWheelEvent=ia,e.Marker=co,e.NavigationControl=class{constructor(e){this._updateZoomButtons=()=>{let e=this._map.getZoom(),t=e===this._map.getMaxZoom(),n=e===this._map.getMinZoom();this._zoomInButton.disabled=t,this._zoomOutButton.disabled=n,this._zoomInButton.setAttribute(`aria-disabled`,t.toString()),this._zoomOutButton.setAttribute(`aria-disabled`,n.toString())},this._rotateCompassArrow=()=>{this._compassIcon.style.transform=this.options.visualizePitch&&this.options.visualizeRoll?`scale(${1/Math.cos(this._map.transform.pitchInRadians)**.5}) rotateZ(${-this._map.transform.roll}deg) rotateX(${this._map.transform.pitch}deg) rotateZ(${-this._map.transform.bearing}deg)`:this.options.visualizePitch?`scale(${1/Math.cos(this._map.transform.pitchInRadians)**.5}) rotateX(${this._map.transform.pitch}deg) rotateZ(${-this._map.transform.bearing}deg)`:this.options.visualizeRoll?`rotate(${-this._map.transform.bearing-this._map.transform.roll}deg)`:`rotate(${-this._map.transform.bearing}deg)`},this._setButtonTitle=(e,t)=>{let n=this._map._getUIString(`NavigationControl.${t}`);e.title=n,e.setAttribute(`aria-label`,n)},this.options=t.e({},no,e),this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._container.addEventListener(`contextmenu`,(e=>e.preventDefault())),this.options.showZoom&&(this._zoomInButton=this._createButton(`maplibregl-ctrl-zoom-in`,(e=>this._map.zoomIn({},{originalEvent:e}))),u.create(`span`,`maplibregl-ctrl-icon`,this._zoomInButton).setAttribute(`aria-hidden`,`true`),this._zoomOutButton=this._createButton(`maplibregl-ctrl-zoom-out`,(e=>this._map.zoomOut({},{originalEvent:e}))),u.create(`span`,`maplibregl-ctrl-icon`,this._zoomOutButton).setAttribute(`aria-hidden`,`true`)),this.options.showCompass&&(this._compass=this._createButton(`maplibregl-ctrl-compass`,(e=>{this.options.visualizePitch?this._map.resetNorthPitch({},{originalEvent:e}):this._map.resetNorth({},{originalEvent:e})})),this._compassIcon=u.create(`span`,`maplibregl-ctrl-icon`,this._compass),this._compassIcon.setAttribute(`aria-hidden`,`true`))}onAdd(e){return this._map=e,this.options.showZoom&&(this._setButtonTitle(this._zoomInButton,`ZoomIn`),this._setButtonTitle(this._zoomOutButton,`ZoomOut`),this._map.on(`zoom`,this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this._setButtonTitle(this._compass,`ResetBearing`),this.options.visualizePitch&&this._map.on(`pitch`,this._rotateCompassArrow),this.options.visualizeRoll&&this._map.on(`roll`,this._rotateCompassArrow),this._map.on(`rotate`,this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new ro(this._map,this._compass,this.options.visualizePitch)),this._container}onRemove(){this._container.remove(),this.options.showZoom&&this._map.off(`zoom`,this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&this._map.off(`pitch`,this._rotateCompassArrow),this.options.visualizeRoll&&this._map.off(`roll`,this._rotateCompassArrow),this._map.off(`rotate`,this._rotateCompassArrow),this._handler.off(),delete this._handler),delete this._map}_createButton(e,t){let n=u.create(`button`,e,this._container);return n.type=`button`,n.addEventListener(`click`,t),n}},e.Popup=class extends t.E{constructor(e){super(),this._updateOpacity=()=>{this.options.locationOccludedOpacity!==void 0&&(this._container.style.opacity=this._map.transform.isLocationOccluded(this.getLngLat())?`${this.options.locationOccludedOpacity}`:``)},this.remove=()=>(this._content&&this._content.remove(),this._container&&(this._container.remove(),delete this._container),this._map&&(this._map.off(`move`,this._update),this._map.off(`move`,this._onClose),this._map.off(`click`,this._onClose),this._map.off(`remove`,this.remove),this._map.off(`mousemove`,this._update),this._map.off(`mouseup`,this._update),this._map.off(`drag`,this._update),this._map._canvasContainer.classList.remove(`maplibregl-track-pointer`),delete this._map,this.fire(new t.l(`close`))),this),this._update=e=>{if(!this._map||!this._lngLat&&!this._trackPointer||!this._content)return;if(!this._container){if(this._container=u.create(`div`,`maplibregl-popup`,this._map.getContainer()),this._tip=u.create(`div`,`maplibregl-popup-tip`,this._container),this._container.appendChild(this._content),this.options.className)for(let e of this.options.className.split(` `))this._container.classList.add(e);this._closeButton&&this._closeButton.setAttribute(`aria-label`,this._map._getUIString(`Popup.Close`)),this._trackPointer&&this._container.classList.add(`maplibregl-popup-track-pointer`)}let t;if(this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._lngLat=ao(this._lngLat,this._flatPos,this._map.transform,this._trackPointer),e&&`point`in e&&e.point&&(t=e.point),this._trackPointer&&!t)return;let n=this._flatPos=this._pos=this._trackPointer&&t?t:this._map.project(this._lngLat);this._map.terrain&&(this._flatPos=this._trackPointer&&t?t:this._map.transform.locationToScreenPoint(this._lngLat));let r=this.options.anchor,i=vo(this.options.offset);if(!r){let e=this._container.offsetWidth,t=this._container.offsetHeight,a=function(e){return e?{top:e.top??0,right:e.right??0,bottom:e.bottom??0,left:e.left??0}:{top:0,right:0,bottom:0,left:0}}(this.options.padding),o;o=n.y+i.bottom.y<t+a.top?[`top`]:n.y>this._map.transform.height-t-a.bottom?[`bottom`]:[],n.x<e/2+a.left?o.push(`left`):n.x>this._map.transform.width-e/2-a.right&&o.push(`right`),r=o.length===0?`bottom`:o.join(`-`)}let a=n.add(i[r]);this.options.subpixelPositioning||(a=a.round()),this._container.style.transform=`${oo[r]} translate(${a.x}px,${a.y}px)`,so(this._container,r,`popup`),this._updateOpacity()},this._onClose=()=>{this.remove()},this.options=t.e(Object.create(go),e)}addTo(e){return this._map&&this.remove(),this._map=e,this.options.closeOnClick&&this._map.on(`click`,this._onClose),this.options.closeOnMove&&this._map.on(`move`,this._onClose),this._map.on(`remove`,this.remove),this._update(),this._focusFirstElement(),this._trackPointer?(this._map.on(`mousemove`,this._update),this._map.on(`mouseup`,this._update),this._container&&this._container.classList.add(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.add(`maplibregl-track-pointer`)):this._map.on(`move`,this._update),this.fire(new t.l(`open`)),this}isOpen(){return!!this._map}getLngLat(){return this._lngLat}setLngLat(e){return this._lngLat=t.V.convert(e),this._pos=null,this._flatPos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on(`move`,this._update),this._map.off(`mousemove`,this._update),this._container&&this._container.classList.remove(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.remove(`maplibregl-track-pointer`)),this}trackPointer(){return this._trackPointer=!0,this._pos=null,this._flatPos=null,this._update(),this._map&&(this._map.off(`move`,this._update),this._map.on(`mousemove`,this._update),this._map.on(`drag`,this._update),this._container&&this._container.classList.add(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.add(`maplibregl-track-pointer`)),this}getElement(){return this._container}setText(e){return this.setDOMContent(document.createTextNode(e))}setHTML(e){let t=document.createDocumentFragment(),n=document.createElement(`body`),r;for(n.innerHTML=e;r=n.firstChild,r;)t.appendChild(r);return this.setDOMContent(t)}getMaxWidth(){return this._container?.style.maxWidth}setMaxWidth(e){return this.options.maxWidth=e,this._update(),this}setDOMContent(e){if(this._content)for(;this._content.hasChildNodes();)this._content.firstChild&&this._content.removeChild(this._content.firstChild);else this._content=u.create(`div`,`maplibregl-popup-content`,this._container);return this._content.appendChild(e),this._createCloseButton(),this._update(),this._focusFirstElement(),this}addClassName(e){return this._container&&this._container.classList.add(e),this}removeClassName(e){return this._container&&this._container.classList.remove(e),this}setOffset(e){return this.options.offset=e,this._update(),this}toggleClassName(e){if(this._container)return this._container.classList.toggle(e)}setSubpixelPositioning(e){this.options.subpixelPositioning=e}setPadding(e){this.options.padding=e,this._update()}_createCloseButton(){this.options.closeButton&&(this._closeButton=u.create(`button`,`maplibregl-popup-close-button`,this._content),this._closeButton.type=`button`,this._closeButton.innerHTML=`&#215;`,this._closeButton.addEventListener(`click`,this._onClose))}_focusFirstElement(){if(!this.options.focusAfterOpen||!this._container)return;let e=this._container.querySelector(_o);e&&e.focus()}},e.RasterDEMTileSource=de,e.RasterTileSource=ue,e.ScaleControl=class{constructor(e){this._onMove=()=>{mo(this._map,this._container,this.options)},this.setUnit=e=>{this.options.unit=e,mo(this._map,this._container,this.options)},this.options=Object.assign(Object.assign({},po),e)}getDefaultPosition(){return`bottom-left`}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-scale`,e.getContainer()),this._map.on(`move`,this._onMove),this._onMove(),this._container}onRemove(){this._container.remove(),this._map.off(`move`,this._onMove),this._map=void 0}},e.ScrollZoomHandler=ja,e.Style=Fn,e.TerrainControl=class{constructor(e){this._toggleTerrain=()=>{this._map.getTerrain()?this._map.setTerrain(null):this._map.setTerrain(this.options),this._updateTerrainIcon()},this._updateTerrainIcon=()=>{this._terrainButton.classList.remove(`maplibregl-ctrl-terrain`),this._terrainButton.classList.remove(`maplibregl-ctrl-terrain-enabled`),this._map.terrain?(this._terrainButton.classList.add(`maplibregl-ctrl-terrain-enabled`),this._terrainButton.title=this._map._getUIString(`TerrainControl.Disable`)):(this._terrainButton.classList.add(`maplibregl-ctrl-terrain`),this._terrainButton.title=this._map._getUIString(`TerrainControl.Enable`))},this.options=e}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._terrainButton=u.create(`button`,`maplibregl-ctrl-terrain`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._terrainButton).setAttribute(`aria-hidden`,`true`),this._terrainButton.type=`button`,this._terrainButton.addEventListener(`click`,this._toggleTerrain),this._updateTerrainIcon(),this._map.on(`terrain`,this._updateTerrainIcon),this._container}onRemove(){this._container.remove(),this._map.off(`terrain`,this._updateTerrainIcon),this._map=void 0}},e.TwoFingersTouchPitchHandler=Ea,e.TwoFingersTouchRotateHandler=wa,e.TwoFingersTouchZoomHandler=Sa,e.TwoFingersTouchZoomRotateHandler=La,e.VectorTileSource=le,e.VideoSource=be,e.addSourceType=(e,n)=>t._(void 0,void 0,void 0,(function*(){if(Ce(e))throw Error(`A source type called "${e}" already exists.`);((e,t)=>{Se[e]=t})(e,n)})),e.clearPrewarmedResources=function(){let e=ee;e&&(e.isPreloaded()&&e.numActive()===1?(e.release(O),ee=null):console.warn(`Could not clear WebWorkers since there are active Map instances that still reference it. The pre-warmed WebWorker pool can only be cleared when all map instances have been removed with map.remove()`))},e.createTileMesh=cn,e.getMaxParallelImageRequests=function(){return t.c.MAX_PARALLEL_IMAGE_REQUESTS},e.getRTLTextPluginStatus=function(){return De().getRTLTextPluginStatus()},e.getVersion=function(){return yo},e.getWorkerCount=function(){return k.workerCount},e.getWorkerUrl=function(){return t.c.WORKER_URL},e.importScriptInWorkers=function(e){return re().broadcast(`IS`,e)},e.isTimeFrozen=function(){return c.isFrozen()},e.now=l,e.prewarm=function(){j().acquire(O)},e.restoreNow=function(){c.restoreNow()},e.setMaxParallelImageRequests=function(e){t.c.MAX_PARALLEL_IMAGE_REQUESTS=e},e.setNow=function(e){c.setNow(e)},e.setRTLTextPlugin=function(e,t){return De().setRTLTextPlugin(e,t)},e.setWorkerCount=function(e){k.workerCount=e},e.setWorkerUrl=function(e){t.c.WORKER_URL=e}})),e}))}))(),1);function u(e,t,n){if(e!==null)for(var r,i,a,o,s,c,l,d=0,f=0,p,m=e.type,h=m===`FeatureCollection`,g=m===`Feature`,_=h?e.features.length:1,v=0;v<_;v++){l=h?e.features[v].geometry:g?e.geometry:e,p=l?l.type===`GeometryCollection`:!1,s=p?l.geometries.length:1;for(var y=0;y<s;y++){var b=0,x=0;if(o=p?l.geometries[y]:l,o!==null){c=o.coordinates;var S=o.type;switch(d=n&&(S===`Polygon`||S===`MultiPolygon`)?1:0,S){case null:break;case`Point`:if(t(c,f,v,b,x)===!1)return!1;f++,b++;break;case`LineString`:case`MultiPoint`:for(r=0;r<c.length;r++){if(t(c[r],f,v,b,x)===!1)return!1;f++,S===`MultiPoint`&&b++}S===`LineString`&&b++;break;case`Polygon`:case`MultiLineString`:for(r=0;r<c.length;r++){for(i=0;i<c[r].length-d;i++){if(t(c[r][i],f,v,b,x)===!1)return!1;f++}S===`MultiLineString`&&b++,S===`Polygon`&&x++}S===`Polygon`&&b++;break;case`MultiPolygon`:for(r=0;r<c.length;r++){for(x=0,i=0;i<c[r].length;i++){for(a=0;a<c[r][i].length-d;a++){if(t(c[r][i][a],f,v,b,x)===!1)return!1;f++}x++}b++}break;case`GeometryCollection`:for(r=0;r<o.geometries.length;r++)if(u(o.geometries[r],t,n)===!1)return!1;break;default:throw Error(`Unknown Geometry Type`)}}}}}function d(e,t={}){if(e.bbox!=null&&!0!==t.recompute)return e.bbox;let n=[1/0,1/0,-1/0,-1/0];return u(e,e=>{n[0]>e[0]&&(n[0]=e[0]),n[1]>e[1]&&(n[1]=e[1]),n[2]<e[0]&&(n[2]=e[0]),n[3]<e[1]&&(n[3]=e[1])}),n}var f=d,p=async()=>{let e=document.createElement(`canvas`);e.width=25,e.height=17;let t=e.getContext(`2d`);if(!t)throw Error(`无法获取 Canvas 上下文`);t.rect(0,0,e.width,e.height),t.fillStyle=`rgba(0, 0, 0, 0)`,t.fill(),t.strokeStyle=`red`,t.lineWidth=3,t.stroke();let n=new Image;return n.src=e.toDataURL(),new Promise((e,t)=>{n.onload=()=>e(n),n.onerror=()=>t(Error(`Failed to load redBoxIcon image`))})},m=async()=>{let e=document.createElement(`canvas`);e.width=64,e.height=64;let t=e.getContext(`2d`);if(!t)throw Error(`无法获取 Canvas 上下文`);let n=e.width/2,r=e.height/2;t.beginPath(),t.arc(n,r,20,0,Math.PI*2),t.fillStyle=`rgba(0, 0, 0, 0)`,t.fill(),t.strokeStyle=`#ffffff`,t.lineWidth=3,t.setLineDash([6,6]),t.lineCap=`round`,t.lineJoin=`round`,t.stroke();let i=new Image;return i.src=e.toDataURL(),new Promise((e,t)=>{i.onload=()=>e(i),i.onerror=()=>t(Error(`Failed to load dashCircle image`))})},h=async(e=`h`,t=`r`,n=``,r=``)=>{let i=e===`h`,a=t===`r`,o=`transparent`,s=n||o,c=r||o,l=27*.5,u=3*1.75,d=i?27*1.25:27,f=12*1.2,p=3+(i?f:0)+54+u,m=d+l,h=document.createElement(`canvas`);h.width=p,h.height=m;let g=h.getContext(`2d`);if(!g)throw Error(`无法获取 Canvas 上下文`);g.clearRect(0,0,p,m),g.save(),a||(g.translate(p/2,m/2),g.scale(1,-1),g.translate(-p/2,-m/2)),g.strokeStyle=`rgb(255,255,255)`,g.fillStyle=`rgb(255,255,255)`,3/2-u/2+5;let _=m-l;g.beginPath(),g.rect(3.875,_,u,l),g.fill(),g.beginPath(),g.lineWidth=3;let v=6.5,y=m-l-d,b=m-l;g.moveTo(v,y),g.lineTo(v,b),g.stroke(),g.lineWidth=2;let x=y+27/2,S=16+(i?f:0)+5,C=S+27-1;if(g.beginPath(),g.strokeStyle=`rgb(255,255,255)`,g.lineWidth=2,g.fillStyle=s,g.arc(S,x,12,0,Math.PI*2),g.fill(),g.stroke(),g.beginPath(),g.strokeStyle=`rgb(255,255,255)`,g.lineWidth=2,g.fillStyle=c,g.arc(C,x,12,0,Math.PI*2),g.fill(),g.stroke(),i){g.beginPath(),g.lineWidth=2,g.strokeStyle=`rgb(255,255,255)`,v+3/2;let e=S-12-2/2,t=x;g.moveTo(8,t),g.lineTo(e,t),g.stroke()}g.restore();let w=new Image;return w.src=h.toDataURL(),new Promise((e,t)=>{w.onload=()=>e(w),w.onerror=t})},g=async(e=`h`,t=`r`)=>{let n=e===`h`,r=t===`r`,i=12*1.2,a=27*.5,o=n?27*1.25:27,s=3+(n?i:0)+54+5.25+8,c=o+a+8,l=document.createElement(`canvas`);l.width=s,l.height=c;let u=l.getContext(`2d`);if(!u)throw Error(`无法获取 Canvas 上下文`);u.clearRect(0,0,s,c),u.save(),r||(u.translate(s/2,c/2),u.scale(1,-1),u.translate(-s/2,-c/2));let d=c-a-o-4+27/2,f=16+(n?i:0)+4+27,p=1.5,m=f+12+4*1.5,h=d-12,g=d+12+8;u.beginPath(),u.setLineDash([8,8]),u.strokeStyle=`#ffffff`,u.lineWidth=3,u.rect(p,h,m-p,g-h),u.stroke(),u.restore();let _=new Image;return _.src=l.toDataURL(),new Promise((e,t)=>{_.onload=()=>e(_),_.onerror=t})},_=async(e=`h`,t=`r`,n=!0)=>{let r=e===`h`,i=t===`r`,a=12*1.2,o=27*.5,s=r?27*1.25:27,c=3+(r?a:0)+54+5.25,l=s+o,u=document.createElement(`canvas`);u.width=c,u.height=l;let d=u.getContext(`2d`);if(!d)throw Error(`无法获取 Canvas 上下文`);d.clearRect(0,0,c,l),d.save(),i||(d.translate(c/2,l/2),d.scale(1,-1),d.translate(-c/2,-l/2));let f=l-o-s+27/2,p=16+(r?a:0)+5,m=p+27;d.lineWidth=4,d.strokeStyle=`#ff0000`,n&&(d.beginPath(),d.moveTo(p-12,f-12),d.lineTo(p+12,f+12),d.moveTo(p+12,f-12),d.lineTo(p-12,f+12),d.stroke()),n&&(d.beginPath(),d.moveTo(m-12,f-12),d.lineTo(m+12,f+12),d.moveTo(m+12,f-12),d.lineTo(m-12,f+12),d.stroke()),d.restore();let h=new Image;return h.src=u.toDataURL(),new Promise((e,t)=>{h.onload=()=>e(h),h.onerror=t})},v=async(e=`h`,t=`r`,n,r)=>{let i=e===`h`,a=t===`r`,o=12*1.2,s=27*.5,c=i?27*1.25:27,l=3+(i?o:0)+54+5.25,u=c+s,d=document.createElement(`canvas`);d.width=l,d.height=u;let f=d.getContext(`2d`);if(!f)throw Error(`无法获取 Canvas 上下文`);f.clearRect(0,0,l,u),f.save(),a||(f.translate(l/2,u/2),f.scale(1,-1),f.translate(-l/2,-u/2));let p=u-s-c+27/2,m=16+(i?o:0)+27+5;f.save(),f.translate(m,p),f.fillStyle=n;let h=r?12:24;f.fillRect(-12,-12,h,24),r&&(f.fillStyle=r,f.fillRect(0,-12,12,24)),f.strokeStyle=`white`,f.lineWidth=2,f.strokeRect(-12,-12,24,24),f.restore(),f.restore();let g=new Image;return g.src=d.toDataURL(),new Promise((e,t)=>{g.onload=()=>e(g),g.onerror=t})},y=`data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1776081402940'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='9172'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='32'%20height='32'%3e%3cpath%20d='M675.84%20409.6v-102.4a163.84%20163.84%200%201%200-327.68%200v102.4h327.68z%20m-409.6%200v-102.4c0-135.72096%20110.03904-245.76%20245.76-245.76s245.76%20110.03904%20245.76%20245.76v102.4a81.92%2081.92%200%200%201%2081.92%2081.92v225.28c0%20135.72096-110.03904%20245.76-245.76%20245.76h-163.84c-135.72096%200-245.76-110.03904-245.76-245.76V491.52a81.92%2081.92%200%200%201%2081.92-81.92z%20m286.72%20348.16v-51.87584a40.96%2040.96%200%200%201%2014.19264-30.98624%2081.92%2081.92%200%201%200-113.07008-2.56c0.79872%200.79872%201.72032%201.6384%202.7648%202.56A40.96%2040.96%200%200%201%20471.04%20705.88416V757.76a40.96%2040.96%200%201%200%2081.92%200z'%20p-id='9173'%20fill='%23ffffff'%3e%3c/path%3e%3c/svg%3e`,b={BASE_COLOR:`rgb(85,120,182)`,BG_COLOR:`rgb(0,0,0)`},x=(e,t,n)=>{let r=document.createElement(`canvas`);r.width=66,r.height=64;let i=r.getContext(`2d`);return i.clearRect(0,0,r.width,r.height),n===2&&(i.translate(66,0),i.scale(-1,1)),e===1?(i.beginPath(),i.arc(46,20,20-4/2,0,Math.PI*2),i.fillStyle=t||`rgb(255,255,255,0)`,i.strokeStyle=t||b.BASE_COLOR,i.lineWidth=4,i.fill(),i.stroke(),i.beginPath(),i.moveTo(6,40/2),i.lineTo(26,40/2),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.lineCap=`round`,i.moveTo(8/2,0),i.lineTo(8/2,40),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.moveTo(8/2,40),i.lineTo(8/2,64),i.lineWidth=8,i.strokeStyle=b.BASE_COLOR,i.stroke(),r):(i.beginPath(),i.arc(26,20,20-4/2,0,Math.PI*2),i.fillStyle=t||`rgb(255,255,255,0)`,i.strokeStyle=t||b.BASE_COLOR,i.lineWidth=4,i.fill(),i.stroke(),i.beginPath(),i.lineCap=`round`,i.moveTo(8/2,0),i.lineTo(8/2,40),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.moveTo(8/2,40),i.lineTo(8/2,64),i.lineWidth=8,i.strokeStyle=b.BASE_COLOR,i.stroke(),r)},S=()=>{let e=document.createElement(`canvas`);e.width=24,e.height=64;let t=e.getContext(`2d`);return t.fillStyle=b.BG_COLOR,t.fillRect(0,0,24,64),t.strokeStyle=b.BASE_COLOR,t.lineWidth=8,t.strokeRect(0,0,24,64),e},C=()=>{let e=document.createElement(`canvas`);e.width=15,e.height=40;let t=e.getContext(`2d`);return t.clearRect(0,0,e.width,e.height),t.beginPath(),t.moveTo(0,4/2),t.lineTo(15-4/2,4/2),t.moveTo(4/2,4/2),t.lineTo(4/2,36),t.moveTo(0,36),t.lineTo(15-4/2,36),t.lineWidth=4,t.strokeStyle=b.BASE_COLOR,t.stroke(),e},w=async(e=`h`,t=`r`,n=``)=>{let r=x(e==`h`?1:2,n,t==`l`?1:2),i=new Image;return i.src=r.toDataURL(),new Promise((e,t)=>{i.onload=()=>e(i),i.onerror=t})},T=async()=>{let e=S(),t=new Image;return t.src=e.toDataURL(),new Promise((e,n)=>{t.onload=()=>e(t),t.onerror=n})},E=async()=>{let e=C(),t=new Image;return t.src=e.toDataURL(),new Promise((e,n)=>{t.onload=()=>e(t),t.onerror=n})},D=function(e){return e.Blue=`blue`,e.Green=`green`,e.Red=`red`,e.Yellow=`yellow`,e.Gray=`gray`,e.Purple=`purple`,e.Red_Purple=`red-purple`,e}({}),O=function(e){return e.Red=`red`,e.Red_Yellow=`red-yellow`,e.Yellow=`yellow`,e.Yellow_Yellow=`yellow-yellow`,e.Yellow_Green=`yellow-green`,e.Green=`green`,e.Blue=`blue`,e.White=`white`,e}({}),k=async()=>{let[e,t,n,r]=await Promise.all([w(`h`,`r`,``),w(`h`,`l`,``),w(`l`,`r`,``),w(`l`,`l`,``)]),i=new Image;i.src=y;let[a,o,s]=await Promise.all([E(),p(),m()]),[c,l,u,d]=await Promise.all([h(`h`,`r`,``),h(`h`,`l`,``),h(`l`,`r`,``),h(`l`,`l`,``)]),[f,b,x,S]=await Promise.all([g(`h`,`r`),g(`h`,`l`),g(`l`,`r`),g(`l`,`l`)]),[C,k,A,ee]=await Promise.all([_(`h`,`r`),_(`h`,`l`),_(`l`,`r`),_(`l`,`l`)]),te=[`h`,`l`],j=[`r`,`l`],ne=[D.Blue,D.Green,D.Red,D.Yellow,D.Gray,D.Purple,D.Red_Purple],re=te.flatMap(e=>j.flatMap(t=>ne.map(n=>({height:e,dir:t,color:n})))),ie=await Promise.all(re.map(({height:e,dir:t,color:n})=>v(e,t,n===D.Red_Purple?`red`:n,n===D.Red_Purple?`purple`:void 0))),M=[O.Red,O.Red_Yellow,O.Yellow,O.Yellow_Yellow,O.Yellow_Green,O.Green,O.Blue,O.White],ae=te.flatMap(e=>j.flatMap(t=>M.map(n=>({height:e,dir:t,color:n})))),oe=await Promise.all(ae.map(({height:e,dir:t,color:n})=>{let r=n,i;return n===O.Red_Yellow?(r=`red`,i=`yellow`):n===O.Yellow_Yellow?(r=`yellow`,i=`yellow`):n===O.Yellow_Green&&(r=`yellow`,i=`green`),h(e,t,r,i)})),se=[O.Red,O.Green,O.White,O.Blue],N=te.flatMap(e=>j.flatMap(t=>se.map(n=>({height:e,dir:t,color:n})))),ce=await Promise.all(N.map(({height:e,dir:t,color:n})=>w(e,t,n))),le=await T();return[{id:`icon-signal-h-r`,image:e},{id:`icon-signal-h-l`,image:t},{id:`icon-signal-l-r`,image:n},{id:`icon-signal-l-l`,image:r},{id:`icon-lock`,image:i},{id:`icon-bumper`,image:a},{id:`icon-red-box`,image:o},{id:`icon-dash-circle`,image:s},{id:`icon-ctc-signal-h-r`,image:c},{id:`icon-ctc-signal-h-l`,image:l},{id:`icon-ctc-signal-l-r`,image:u},{id:`icon-ctc-signal-l-l`,image:d},{id:`icon-ctc-box-h-r`,image:f},{id:`icon-ctc-box-h-l`,image:b},{id:`icon-ctc-box-l-r`,image:x},{id:`icon-ctc-box-l-l`,image:S},{id:`icon-ctc-x-h-r`,image:C},{id:`icon-ctc-x-h-l`,image:k},{id:`icon-ctc-x-l-r`,image:A},{id:`icon-ctc-x-l-l`,image:ee},{id:`icon-jcw`,image:le},...ie.map((e,t)=>{let n=re[t];return{id:`icon-ctc-s-${n.height}-${n.dir}-${n.color}`,image:e}}),...oe.map((e,t)=>{let n=ae[t];return{id:`icon-ctc-signal-${n.height}-${n.dir}-${n.color}`,image:e}}),...ce.map((e,t)=>{let n=N[t];return{id:`icon-signal-${n.height}-${n.dir}-${n.color}`,image:e}})]},A={geojson:e=>({type:`geojson`,data:e||{type:`FeatureCollection`,features:[]},promoteId:`code`}),raster:e=>({type:`raster`,tiles:[e],scheme:`tms`,tileSize:256}),graph:e=>({type:`vector`,tiles:[e],scheme:`tms`,promoteId:`code`}),geom:e=>({type:`vector`,tiles:[e],scheme:`tms`,promoteId:`code`}),image:(e,t)=>({type:`image`,url:e,coordinates:t}),video:(e,t)=>({type:`video`,urls:e,coordinates:t}),canvas:(e,t)=>({type:`canvas`,canvas:e,coordinates:t}),mbtiles:e=>({type:`vector`,tiles:[e]})},ee={background:(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),track:(e,t)=>[{id:`${e.id}_${t}_lock`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_lock_icon`,type:`symbol`,source:e.id,"source-layer":t,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_catenery_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_catenery_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_select_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#ffffff`,"line-dasharray":[.5,.5],"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:(e,t)=>[{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`subState1`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`subState1`],`1`],1,0]}},{id:`${e.id}_${t}_select_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#ffffff`,"line-dasharray":[.4,.4],"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":3}},{id:`${e.id}_${t}_red`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_white`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_grey`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`,visibility:`none`},paint:{"line-color":`grey`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_subpath`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`burlywood`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_mainpath`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`5`],1,0]}}],signal:(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5],r=[];[D.Blue,D.Green,D.Red,D.Yellow,D.Gray,D.Purple,D.Red_Purple].forEach(i=>{r.push({id:`${e.id}_${t}_square_${i}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-s-h-r-${i}`,`icon-ctc-s-h-l-${i}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-s-l-r-${i}`,`icon-ctc-s-l-l-${i}`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-right`,`top-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`subState1`],i],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})});let i=[];return[O.Red,O.Red_Yellow,O.Yellow,O.Yellow_Yellow,O.Yellow_Green,O.Green,O.Blue,O.White].forEach(r=>{i.push({id:`${e.id}_${t}_${r}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-h-r-${r}`,`icon-ctc-signal-h-l-${r}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-l-r-${r}`,`icon-ctc-signal-l-l-${r}`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],r],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})}),[...i,{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-h-r`,`icon-ctc-signal-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-l-r`,`icon-ctc-signal-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}},{id:`${e.id}_${t}_box`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-box-h-r`,`icon-ctc-box-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-box-l-r`,`icon-ctc-box-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`select`],!0],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}},{id:`${e.id}_${t}_x`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-x-h-r`,`icon-ctc-x-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-x-l-r`,`icon-ctc-x-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`subState2`],`off`],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}},...r]},bumper:(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-bumper`,"icon-size":.3,"icon-allow-overlap":!0},paint:{"icon-opacity":0}}),switch:(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e.id}_${t}_dash_circle`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-dash-circle`,"icon-allow-overlap":!0,"icon-size":[`interpolate`,[`linear`],[`zoom`],17,.5]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}},{id:`${e.id}_${t}_lock`,type:`circle`,source:e.id,"source-layer":t,layout:{visibility:`visible`},paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,8],"circle-stroke-width":1.7,"circle-stroke-color":[`match`,[`feature-state`,`state`],`2`,`green`,`3`,`darkorange`,`4`,`red`,`white`],"circle-color":`transparent`,"circle-stroke-opacity":[`case`,[`==`,[`feature-state`,`subState2`],`1`],1,0]}},{id:`${e.id}_${t}_danfen`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-red-box`,"icon-allow-overlap":!0,"icon-offset":[0,15],"icon-size":[`interpolate`,[`linear`],[`zoom`],5,.2,10,.5,18,1]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`subState3`],`1`],1,0]}}],switch_loc:(e,t)=>[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e.id}_${t}_normal`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_reverse`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_fourway`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":4,"line-color":`#000000`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_normal_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_reverse_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_normal_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}},{id:`${e.id}_${t}_reverse_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}}],insulation:(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":n,"circle-stroke-width":n,"circle-stroke-color":`#ffbb00`},layout:{visibility:`none`}}},label:(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],10,[`==`,[`get`,`category`],96],8,7],22,[`case`,[`==`,[`get`,`category`],50],16,[`==`,[`get`,`category`],96],12,13]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`#C0C33F`}}),prevention:(e,t)=>[{id:`${e.id}_${t}_circle`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,20,10],"circle-stroke-width":2,"circle-stroke-color":`red`},layout:{visibility:`none`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`2`],`网`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`8`],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`20`],`界`,`门`],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,2,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,visibility:`none`},paint:{"text-color":`white`}}]},te=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=ee[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},j=(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),ne=(e,t)=>[{id:`${e.id}_${t}_lock`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_lock_icon`,type:`symbol`,source:e.id,"source-layer":t,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_catenery_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_catenery_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],re=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,2,16,3.5,18,4.5,20,5];return[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":3}},{id:`${e.id}_${t}_red`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_white`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_grey`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`,visibility:`none`},paint:{"line-color":`grey`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_white_label`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_red_label`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`red`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}}]},ie=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5],r=[];return[O.Red,O.Green,O.White,O.Blue].forEach(i=>{r.push({id:`${e.id}_${t}_${i}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-h-l-${i}`,`icon-signal-h-r-${i}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-l-l-${i}`,`icon-signal-l-r-${i}`]],"icon-size":n,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],i],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})}),[...r,{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-h-l`,`icon-signal-h-r`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-l-l`,`icon-signal-l-r`]],"icon-size":n,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}}]},M=(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}},{id:`${e.id}_${t}_lock`,type:`circle`,source:e.id,"source-layer":t,layout:{visibility:`visible`},paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,8],"circle-stroke-width":1.7,"circle-stroke-color":[`match`,[`feature-state`,`state`],`2`,`green`,`3`,`darkorange`,`4`,`red`,`white`],"circle-color":`transparent`,"circle-stroke-opacity":[`case`,[`==`,[`feature-state`,`subState2`],`1`],1,0]}},{id:`${e.id}_${t}_danfen`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-red-box`,"icon-allow-overlap":!0,"icon-offset":[0,15],"icon-size":[`interpolate`,[`linear`],[`zoom`],5,.2,10,.5,18,1]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`subState3`],`1`],1,0]}}],ae=(e,t)=>[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e.id}_${t}_normal`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_reverse`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_fourway`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":4,"line-color":`#000000`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_normal_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_reverse_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_normal_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}},{id:`${e.id}_${t}_reverse_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}}],oe=(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-bumper`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-rotate":[`get`,`angle`],"icon-allow-overlap":!0,"icon-anchor":`left`}}),se=(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],10,[`==`,[`get`,`category`],96],8,7],22,[`case`,[`==`,[`get`,`category`],50],16,[`==`,[`get`,`category`],96],12,13]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`#C0C33F`}}),N=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":n,"circle-stroke-width":n,"circle-stroke-color":`#ffbb00`},layout:{visibility:`none`}}},ce=function(e){return e[e.NULL=0]=`NULL`,e[e.BUMPER=1]=`BUMPER`,e[e.CONTACTLINEEND=2]=`CONTACTLINEEND`,e[e.FIXEDDERAILER=3]=`FIXEDDERAILER`,e[e.CONTACTLINENOSTOP=4]=`CONTACTLINENOSTOP`,e[e.CONTACTLINENOSTOPIN=5]=`CONTACTLINENOSTOPIN`,e[e.OTHERPROMPT=6]=`OTHERPROMPT`,e[e.OTHERBRAKE=7]=`OTHERBRAKE`,e[e.ONESTOP=8]=`ONESTOP`,e[e.SPEEDLIMITED=9]=`SPEEDLIMITED`,e[e.SPEEDNOTICE=10]=`SPEEDNOTICE`,e[e.CROSSSPEEDLIMITED=11]=`CROSSSPEEDLIMITED`,e[e.CONTACTLINEPSS=12]=`CONTACTLINEPSS`,e[e.SSG=13]=`SSG`,e[e.CONTACTLINEPSSIN=14]=`CONTACTLINEPSSIN`,e[e.CONTACTLINENOAREA=15]=`CONTACTLINENOAREA`,e[e.HIGHPOSTSIGNAL=16]=`HIGHPOSTSIGNAL`,e[e.RESCUEVEHICLE=17]=`RESCUEVEHICLE`,e[e.RAILWAYCROSS=18]=`RAILWAYCROSS`,e[e.TRAIN=19]=`TRAIN`,e[e.STATIONBOUND=20]=`STATIONBOUND`,e[e.SHORTPOSTSIGNAL=21]=`SHORTPOSTSIGNAL`,e[e.BRIDGE=22]=`BRIDGE`,e[e.WHITE=23]=`WHITE`,e[e.WHITEBLUE=24]=`WHITEBLUE`,e[e.BLUE=25]=`BLUE`,e[e.BLUEWHITE=26]=`BLUEWHITE`,e[e.SLOPE=27]=`SLOPE`,e[e.PEOPLE=28]=`PEOPLE`,e[e.TUNNEL=29]=`TUNNEL`,e[e.DANGER=30]=`DANGER`,e[e.SIGNAL=31]=`SIGNAL`,e[e.SWERVE=32]=`SWERVE`,e[e.SWITCH=33]=`SWITCH`,e[e.FOULINGPOST=38]=`FOULINGPOST`,e[e.CUNCHE=39]=`CUNCHE`,e[e.STATIONBOUNDEXTEND=40]=`STATIONBOUNDEXTEND`,e[e.RED=41]=`RED`,e[e.GREEN=42]=`GREEN`,e[e.YELLOW=43]=`YELLOW`,e[e.BLOCKLINE=50]=`BLOCKLINE`,e[e.WORKAREA=51]=`WORKAREA`,e[e.ROUTELINE=52]=`ROUTELINE`,e[e.PARK=53]=`PARK`,e[e.WORKBUOND=54]=`WORKBUOND`,e[e.WORKBUONDCROSS=55]=`WORKBUONDCROSS`,e[e.LEFTHIGHPLATFORM=61]=`LEFTHIGHPLATFORM`,e[e.RIGHTHIGHPLATFORM=62]=`RIGHTHIGHPLATFORM`,e[e.BOTHSIDEHIGHPLATFORM=63]=`BOTHSIDEHIGHPLATFORM`,e[e.TGQ=47]=`TGQ`,e[e.DOOR=87]=`DOOR`,e[e.OTHER=95]=`OTHER`,e[e.SIDE=253]=`SIDE`,e[e.NONE=254]=`NONE`,e[e.MAX=255]=`MAX`,e[e.ISOLATE=35]=`ISOLATE`,e[e.ISOLATESWITCH=100]=`ISOLATESWITCH`,e}({}),le={background:j,signal:ie,track:ne,track_circuit:re,bumper:oe,switch:M,switch_loc:ae,insulation:N,label:se,prevention:(e,t)=>[{id:`${e.id}_${t}_jcw`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.CONTACTLINEEND)],`icon-jcw`,``],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-allow-overlap":!0,"icon-anchor":`left`}},{id:`${e.id}_${t}_circle`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[String(ce.ONESTOP),String(ce.STATIONBOUND),String(ce.DOOR)],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,6,20,18],"circle-stroke-width":2,"circle-stroke-color":`red`},layout:{visibility:`visible`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[String(ce.CONTACTLINEEND),String(ce.ONESTOP),String(ce.STATIONBOUND),String(ce.DOOR)],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.ONESTOP)],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.STATIONBOUND)],`界`,``],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,20,18],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,visibility:`visible`},paint:{"text-color":`white`}}]},ue=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=le[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},de={background:(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),signal:(e,t)=>[{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],2],`icon-signal-h-r`,`icon-signal-h-l`],[`case`,[`==`,[`get`,`posi_side`],2],`icon-signal-l-r`,`icon-signal-l-l`]],"icon-allow-overlap":!0,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`-`,270,[`to-number`,[`get`,`angle`]]],[`-`,90,[`to-number`,[`get`,`angle`]]]],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,0,16,.3,18,.5,20,1],"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`],"icon-offset":[0,2]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],12,5,14,8,18,14],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,"text-offset":[0,.6]},paint:{"text-color":`gold`}}],track:(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:null,bumper:(e,t)=>[{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,12,3,14,5,16,6,20,8],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":`档`,"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,12,8,14,10,16,12,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}],switch:null,switch_loc:null,insulation:null,label:null,prevention:(e,t)=>[{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,12,3,14,5,16,6,20,8],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`2`],`网`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`8`],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`20`],`界`,`门`],"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,12,8,14,10,16,12,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}]},fe=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=de[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},pe=e=>[{id:`${e}_raster_layer`,type:`raster`,source:e,paint:{"raster-opacity":.8}}],me={background:e=>({id:`${e}_background`,type:`background`,paint:{"background-color":`#131212`}}),signal:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5];return[...[O.Red,O.Green,O.White,O.Blue].map(n=>({id:`${e}_signal_${n}`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`get`,`installType`],1],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-h-l-${n}`,`icon-signal-h-r-${n}`],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-l-l-${n}`,`icon-signal-l-r-${n}`]],"icon-size":t,"icon-rotate":[`case`,[`==`,[`get`,`positionSide`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`positionSide`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],n],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})),{id:`${e}_signal`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`get`,`installType`],1],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-h-l`,`icon-signal-h-r`],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-l-l`,`icon-signal-l-r`]],"icon-size":t,"icon-rotate":[`case`,[`==`,[`get`,`positionSide`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`positionSide`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}}]},track:e=>[{id:`${e}_track_lock`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e}_track_lock_icon`,type:`symbol`,source:e,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e}_track_poweroff_border`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_track_poweroff_fill`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_track_catenery_border`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e}_track_catenery_fill`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e}_track`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,2,16,3.5,18,4.5,20,5];return[{id:`${e}_trackcircuit`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":3}},{id:`${e}_trackcircuit_red`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":t,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e}_trackcircuit_white`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":t,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],2],1,0]}},{id:`${e}_trackcircuit_grey`,type:`line`,source:e,layout:{"line-join":`round`,visibility:`none`},paint:{"line-color":`grey`,"line-width":t,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],3],1,0]}},{id:`${e}_trackcircuit_white_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],2],1,0]}},{id:`${e}_trackcircuit_red_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`red`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}}]},bumper:e=>({id:`${e}_bumper`,type:`symbol`,source:e,layout:{"icon-image":`icon-bumper`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-rotate":[`get`,`angle`],"icon-allow-overlap":!0,"icon-anchor":`left`}}),switch:e=>[{id:`${e}_switch_hitarea`,type:`circle`,source:e,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e}_switch_text`,type:`symbol`,source:e,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}},{id:`${e}_switch_lock`,type:`circle`,source:e,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,8],"circle-stroke-width":1.7,"circle-stroke-color":[`match`,[`feature-state`,`state`],`2`,`green`,`3`,`darkorange`,`4`,`red`,`white`],"circle-color":`transparent`,"circle-stroke-opacity":[`case`,[`==`,[`feature-state`,`subState2`],`1`],1,0]}},{id:`${e}_switch_danfen`,type:`symbol`,source:e,layout:{"icon-image":`icon-red-box`,"icon-allow-overlap":!0,"icon-offset":[0,15],"icon-size":[`interpolate`,[`linear`],[`zoom`],5,.2,10,.5,18,1]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`subState3`],`1`],1,0]}}],switch_loc:e=>[{id:`${e}_switchloc`,type:`line`,source:e,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e}_switchloc_normal`,type:`line`,source:e,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_switchloc_reverse`,type:`line`,source:e,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}}],insulation:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e}_insulation`,type:`circle`,source:e,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":t,"circle-stroke-width":t,"circle-stroke-color":`#ffbb00`}}},label:e=>({id:`${e}_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`yellow`}}),prevention:e=>[{id:`${e}_prevention_jcw`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.CONTACTLINEEND],`icon-jcw`,``],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-allow-overlap":!0,"icon-anchor":`left`}},{id:`${e}_prevention_circle`,type:`circle`,source:e,filter:[`match`,[`to-number`,[`get`,`ucOobType`]],[ce.ONESTOP,ce.STATIONBOUND,ce.DOOR],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,6,20,18],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e}_prevention_text`,type:`symbol`,source:e,filter:[`match`,[`to-number`,[`get`,`ucOobType`]],[ce.CONTACTLINEEND,ce.ONESTOP,ce.STATIONBOUND,ce.DOOR],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.ONESTOP],`停`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.STATIONBOUND],`界`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.DOOR],`门`,``],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,20,18],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}]},he={ctc:te,graph:ue,geom:fe,raster:pe,geojson:(e,t)=>{let n=[];return e.forEach((e,r)=>{let i=t[r],a=me[e];if(!a){console.warn(`GeoJSON 图层 ${e} 尚未实现`);return}let o=a(i);Array.isArray(o)?n.push(...o):n.push(o)}),n}};function ge(){if(!this.mapConfigs)return;let e=this.mapConfigs.id;this.mapConfigs.sourceLayers.forEach(t=>{(t.includes(`switch`)||t.includes(`signal`)||t.includes(`track`))&&this.map.querySourceFeatures(e,{sourceLayer:t}).forEach(e=>{this.initCTCFeatureState(e)})})}function _e(e){if(!e||e.length<11)return``;let t=e.charAt(10),n=e.charAt(9);return t===`1`&&n===`0`?`track`:t===`3`?`signal`:t===`2`&&n===`0`||t===`1`&&n===`1`?`switch`:t===`2`&&n===`1`?`circuit`:``}function ve(e){if(!e)return;let t=e.properties.code,n=_e(t);if(n===`switch`){let t={state:``,select:!1,visiable:!0,subState1:``,subState2:``,subState3:``};t.state=`2`;let n=e.properties;this.updateFeatureState(n.code,t)}else if(n===`signal`){let t=e.properties,n=t.attach||0,r=t.func_type,i={state:``,select:!1,visiable:!0,subState1:`grey`,subState2:``,subState3:``};r==1&&n==0||(r==2||r==3)&&n==0||(r==2||r==3||r==11)&&n==1?(i.state=`red`,i.subState1=`blue`,this.updateFeatureState(t.code,i)):(r==4||r==5||r==12)&&n==0?(i.state=`blue`,i.subState1=`green`,this.updateFeatureState(t.code,i)):r==6&&n==0||(r==7||r==11)&&n==0?(i.state=`red`,i.subState1=`blue`,this.updateFeatureState(t.code,i)):(i.state=``,i.subState1=`grey`,this.updateFeatureState(t.code,i))}else if(n===`signal`||n===`circuit`){let t={state:``,select:!1,visiable:!0,subState1:``,subState2:``,subState3:``},n=e.properties;this.updateFeatureState(n.code,t)}}function ye(e){e.initCTCFeatureState=ve,e.initState=ge,e.map.once(`idle`,()=>{e&&e.map.moveLayer(`${e.mapConfigs.id}_${e.mapConfigs.sourceLayers[e.mapConfigs.layers.indexOf(`track`)]}_lock`)})}function be(e,t){let n=this.map;if(n&&!n.getSource(e)){let r=A.graph(t);n.addSource(e,r)}}function xe(e,t){let n=this.map;if(n&&!n.getSource(e)){let r=A.raster(t);n.addSource(e,r)}}function Se(e,t){let n=this.map;if(!n){console.error(`地图实例未初始化`);return}try{if(n.getSource(e))console.warn(`源已存在,跳过添加: ${e}`);else{let r=t?A.geojson(t):A.geojson();n.addSource(e,r),console.log(`成功添加 GeoJSON 源: ${e}`)}}catch(t){console.error(` 添加源失败 [${e}]:`,t)}}function Ce(e){let t=this.map;if(t)if(t.getSource(e))try{(t.getStyle().layers||[]).filter(t=>{if(`source`in t)return t.source===e}).forEach(e=>{t.removeLayer(e.id),console.log(`移除关联图层: ${e.id}`)}),t.removeSource(e),console.log(`成功移除源: ${e}`)}catch(t){console.error(`移除源失败 [${e}]:`,t)}else console.warn(`源不存在,无法移除: ${e}`)}function we(e,t){let n=this.map;if(!n)return;let r=n.getSource(e);r?(r.setData(t),console.log(`更新源数据: ${e}`)):this.addGeoJsonSource(e,t)}function Te(e,t,n=`fill`,r,i){let a=this.map;if(!a)return;if(!a.getSource(t)){console.error(`无法添加图层: 源 '${t}' 不存在`);return}a.getLayer(e)&&a.removeLayer(e);let o={};n===`fill`&&(o[`fill-color`]=`#3b82f6`),n===`line`&&(o[`line-color`]=`#3b82f6`),n===`circle`&&(o[`circle-color`]=`#3b82f6`);let s={id:e,type:n,source:t,paint:{...o,...r},layout:i||{}};a.addLayer(s)}function Ee(e,t){let n=this.map;n&&(n.getLayer(e)?(Object.keys(t).forEach(r=>{n.setPaintProperty(e,r,t[r])}),console.log(`样式已更新: ${e}`)):console.warn(` 图层不存在,无法更新样式: ${e}`))}function De(e){let t=this.map;t&&(t.getLayer(e)?(t.removeLayer(e),console.log(`图层已移除: ${e}`)):console.warn(` 图层不存在,无法删除: ${e}`))}function Oe(e,t){let n=this.map;if(!n)return;let r=Array.isArray(e)?e:[e];n.on(`click`,e=>{let i=n.queryRenderedFeatures(e.point,{layers:r});if(!i.length)return;let a=i[0];t(a,e.lngLat)}),n.on(`mouseenter`,r[r.length-1],()=>{n.getCanvas().style.cursor=`pointer`}),n.on(`mouseleave`,r[r.length-1],()=>{n.getCanvas().style.cursor=``})}function ke(){this.stashFeatures.clear(),this.map&&(this.map.remove(),console.log(`地图实例已移除`))}function Ae(e){e.addGeoJsonSource=Se,e.addVectorTileSource=be,e.addRasterTileSource=xe,e.updateGeoJsonSource=we,e.removeSource=Ce,e.addGeoJsonLayer=Te,e.updateLayerStyle=Ee,e.removeLayer=De,e.onFeatureClick=Oe,e.destroy=ke}var je=class{constructor(){this.signalExist=!0,this.interlockInfo=new Map}getProductInfo(){return this.productInfo}getStCode(){return this.stationCode}getInterlockInfo(){return this.interlockInfo}isSignalExist(){return this.signalExist}setYardSignal(e){let t=e.split(`&`);this.time=t[0];let n=[],r=[],i=[];this.stationCode=t[1];let a=t[1],o=0;t.length===6&&(this.productInfo=t[2],o=1);let s=t[2],c=a+`:`+s;if(t[2+o]!==``){let e=t[2+o].split(`;`);for(let t of e){let e=t.split(`:`);n.push({name:e[0]+`:`+a,state:e[1]})}}if(t[3+o]!==``){let e=t[3+o].split(`;`);for(let t of e){let e=t.split(`:`);r.push({name:e[0]+`:`+a,state:e[1]})}}if(t[4+o]!==``){let e=t[4+o].split(`;`);for(let t of e){let e=t.split(`:`);i.push({name:e[0]+`:`+a,state:e[1]})}}this.interlockInfo.set(c,{signalInterlock:n,switchInterlock:r,circuitInterlock:i})}reset(){}resetInterlockInfo(){this.interlockInfo=new Map}},Me=class{constructor(){this.insulationSignalMap=new Map,this.signalInsulationMap=new Map}setInsulation(e){this.insulationSignalMap.clear(),this.signalInsulationMap.clear(),e.length===0&&console.warn(`没有绝缘节数据!`),e.forEach(e=>{let t=String(e.id??e.properties?.code??``),n=e.properties?.upSignal??null,r=e.properties?.downSignal??null,i=e.properties?.name??``;this.insulationSignalMap.set(t,{upsignal:n,downsignal:r}),n!=null&&this.signalInsulationMap.set(String(n),t+`-`+i),r!=null&&this.signalInsulationMap.set(String(r),t+`-`+i)})}getInsulationBySignalKey(e){return this.signalInsulationMap.get(e)}getSignalByInsulationKey(e){return this.insulationSignalMap.get(e)}},Ne=function(e){return e.RedLight=`red`,e.GreenLight=`green`,e.BlueLight=`blue`,e.WhiteLight=`white`,e}({}),Pe={1:Ne.RedLight,2:Ne.GreenLight,3:Ne.WhiteLight,4:Ne.BlueLight},Fe=class{constructor(e){if(this.signalStore=new je,this.interLockInsulation=new Me,this.interLockState={signal:new Map,switch:new Map,circuit:new Map},this.pathCircuits=[],this.pathCircuitsCodes=[],this.linkWhiteCircuits=[],this.map=e.map,this.firstSwitches=e.firstSwitches??[],this.updateFeatureState=e.updateFeatureState,`mode`in e&&e.mode===`geojson`){let t=e.sourceIds;this.layers={signal:{sourceId:t.signal},switch:{sourceId:t.switch},switch_loc:{sourceId:t.switch_loc},track_circuit:{sourceId:t.track_circuit},track:{sourceId:t.track},insulation:{sourceId:t.insulation}}}else{let t=e.sourceId,n=e.sourceLayers;this.layers={signal:{sourceId:t,sourceLayer:n.signal},switch:{sourceId:t,sourceLayer:n.switch},switch_loc:{sourceId:t,sourceLayer:n.switch_loc},track_circuit:{sourceId:t,sourceLayer:n.track_circuit},track:{sourceId:t,sourceLayer:n.track},insulation:{sourceId:t,sourceLayer:n.insulation}}}}queryFeatures(e){let t=this.layers[e];return this.map.querySourceFeatures(t.sourceId,t.sourceLayer?{sourceLayer:t.sourceLayer}:void 0)}setFeatureState(e,t,n){if(this.updateFeatureState)return this.updateFeatureState(t,n);let r=this.layers[e];this.map.setFeatureState(r.sourceLayer?{source:r.sourceId,sourceLayer:r.sourceLayer,id:t}:{source:r.sourceId,id:t},n)}getFeatureState(e,t){let n=this.layers[e];return this.map.getFeatureState(n.sourceLayer?{source:n.sourceId,sourceLayer:n.sourceLayer,id:t}:{source:n.sourceId,id:t})}initInsulation(){let e=this.queryFeatures(`insulation`);this.interLockInsulation.setInsulation(e)}handleSignalData(e){this.signalStore.resetInterlockInfo(),!e||e.length===0?this.signalStore.signalExist=!1:(this.signalStore.signalExist=!0,this.signalStore.setYardSignal(e)),this.signalStore.isSignalExist()&&this.signalStore.getInterlockInfo().forEach((e,t)=>{let n=t.split(`:`)[0],r=t.split(`:`)[1];this.arrToMap(this.interLockState.signal,e.signalInterlock),this.arrToMap(this.interLockState.switch,e.switchInterlock),this.arrToMap(this.interLockState.circuit,e.circuitInterlock),r===`ZK01`?this.visualizeZK(e,r,n):this.visualizeYD(e,r,n)})}turnOffSignals(){this.interLockState={signal:new Map,switch:new Map,circuit:new Map}}reset(e){this.clearCircuits(e),this.clearSwitchLocs(e)}clearCircuits(e){this.queryFeatures(`track_circuit`).forEach(t=>{t.properties?.stcode===e&&this.setFeatureState(`track_circuit`,t.properties.code,{state:``,visiable:!0})})}clearSwitchLocs(e){this.queryFeatures(`switch_loc`).forEach(t=>{t.properties?.stcode===e&&this.setFeatureState(`switch_loc`,t.properties.code,{state:``,visiable:!0})})}visualizeZK(e,t,n){this.reset(n);for(let t of e.signalInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getSignalFeature(e,n);r&&this.setFeatureState(`signal`,r.properties.code,{state:Pe[t.state],visiable:!0})}for(let t of e.switchInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1];this.getSwitchLocFeatures(e,n,t.state).forEach(e=>{this.setFeatureState(`switch_loc`,e.properties.code,{state:t.state})})}for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);r&&this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,visiable:!0})}this.applyHandSwitchPaths(n,e.switchInterlock)}visualizeYD(e,t,n){this.reset(n);for(let t of e.signalInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getSignalFeature(e,n);r&&this.setFeatureState(`signal`,r.properties.code,{state:Pe[t.state],visiable:!0})}for(let t of e.switchInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1];this.getSwitchLocFeatures(e,n,t.state).forEach(e=>{this.setFeatureState(`switch_loc`,e.properties.code,{state:t.state,visiable:!0})})}this.pathCircuits=[],this.pathCircuitsCodes=[],this.linkWhiteCircuits=[];for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);r&&(this.pathCircuits.push(r),this.pathCircuitsCodes.push(String(r.properties?.code??``)))}for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);if(!r){console.warn(`没有找到对应的区段YD`,t.name,t.state);continue}if(t.state===`1`)this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,controlName:``,visiable:!0});else{let e=String(r.properties?.fromCode??``),n=String(r.properties?.toCode??``);try{let i=this.getCircuitState([e,n],null);i?(this.setFeatureState(`track_circuit`,r.properties.code,{state:i.circuitState,controlName:i.controlName,link:i.controlName===``?void 0:0,visiable:!0}),i.controlName!==``&&this.linkWhiteCircuits.push(r)):this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,visiable:!0})}catch(e){if(e instanceof Error&&e.message!==`End Loop`)throw e}}}this.queryFeatures(`track_circuit`).forEach(e=>{let t=String(e.properties?.code??``),n=this.linkWhiteCircuits.find(e=>String(e.properties?.code??``)===t);if(n){let t=this.getFeatureState(`track_circuit`,e.id);t.state!==`2`&&t.state!==2&&t.state!==`1`&&t.state!==1&&this.setFeatureState(`track_circuit`,e.properties.code,{state:2,link:1,controlName:n.properties?.controlName??``,visiable:!0})}}),this.applyHandSwitchPaths(n,e.switchInterlock)}applyHandSwitchPaths(e,t){let n=[];for(let r of this.firstSwitches)this.findHandSwitchPath(r,e,t,n,[]);n.forEach(e=>{this.setFeatureState(`track`,e,{state:5,visiable:!0})})}findHandSwitchPath(e,t,n,r,i){let a=this.findSwitchInfo(e,t,n);if(!this.validSwitchInfo(a))return;let o=this.getSwitchLocFeatures(e,t,a.state);for(let a of o){let o=String(a.properties?.t_code??``),s=String(a.properties?.s_code??``),c=this.getTrackByCode(o);if(!c)continue;let l=String(c.properties?.fromCode??``),u=String(c.properties?.toCode??``),d=c.properties?.fromLyr,f=c.properties?.toLyr,p=``,m=null;if(l===s?(p=u,m=f):u===s&&(p=l,m=d),m===2){let a=this.getSwitchByCode(p);if(a){r.push(o);let s=String(a.properties?.name??``),c=this.findSwitchInfo(s,t,n);this.validSwitchInfo(c)&&!i.includes(s)&&this.doseTrackConnectSwitch(o,c)&&(i.push(e),this.findHandSwitchPath(s,t,n,r,i))}}else r.push(o)}}doseTrackConnectSwitch(e,t){let n=t.name.split(`:`)[0],r=t.name.split(`:`)[1];return this.getSwitchLocFeatures(n,r,t.state).some(t=>String(t.properties?.t_code??``)===e)}getCircuitState(e,t){let n=4,r=null;try{e.forEach((i,a)=>{let o=this.interLockInsulation.getSignalByInsulationKey(i),s=this.getInsulationSignalState(o??null);if(t==null&&s!=null&&(r=s),s==null&&t!=null&&(s={name:t.name,dir:t.dir,state:`3`}),s!=null&&s.state===`3`){n=2;let t=e.find(e=>e!==i),r=this.findNextCircuit(t,s);if(r!=null){let e=this.interLockInsulation.getSignalByInsulationKey(t);if(this.getControlSignalState(e??null,s)!=4){let e=String(r.properties?.fromCode??``),t=String(r.properties?.toCode??``),n={...r,properties:{...r.properties,controlName:s.name}};this.linkWhiteCircuits.push(n),this.getCircuitState([e,t],s)}}}})}catch(e){console.error(e)}return{circuitState:n,controlName:r==null?``:r.name}}findNextCircuit(e,t){let n=this.pathCircuits.find(n=>{let r=String(n.properties?.fromCode??``),i=String(n.properties?.toCode??``);return t.dir===`up`&&r===e||t.dir===`down`&&i===e});return n?this.linkWhiteCircuits.find(e=>String(e.properties?.code??``)===String(n.properties?.code??``))?null:n:null}getInsulationSignalState(e){if(!e)return null;if(e.upsignal){let t=this.getSignalById(String(e.upsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``),r=this.interLockState.signal.get(e+`:`+n);if(r===`3`)return{name:e,state:r,dir:`up`}}}if(e.downsignal){let t=this.getSignalById(String(e.downsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``),r=this.interLockState.signal.get(e+`:`+n);if(r===`3`)return{name:e,state:r,dir:`down`}}}return null}getControlSignalState(e,t){if(e){if(t.dir===`up`&&e.upsignal){let t=this.getSignalById(String(e.upsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``);return this.interLockState.signal.get(e+`:`+n)}}if(t.dir===`down`&&e.downsignal){let t=this.getSignalById(String(e.downsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``);return this.interLockState.signal.get(e+`:`+n)}}}}getSignalFeature(e,t){return this.queryFeatures(`signal`).find(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t))}getSignalById(e){return this.queryFeatures(`signal`).find(t=>String(t.id??t.properties?.code??``)===e)}getSwitchLocFeatures(e,t,n){let r=this.queryFeatures(`switch`).find(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t));if(!r)return[];let i=String(r.properties?.code??``),a=this.queryFeatures(`switch_loc`);return n===`4`?a.filter(e=>String(e.properties?.s_code??``)===i):a.filter(e=>String(e.properties?.s_code??``)===i&&(String(e.properties?.location??``)===n||String(e.properties?.location??``)===`1`))}getSwitchByCode(e){return this.queryFeatures(`switch`).find(t=>String(t.id??t.properties?.code??``)===e)}getTrackByCode(e){return this.queryFeatures(`track`).find(t=>String(t.id??t.properties?.code??``)===e)}getCircuitFeature(e,t){let n=this.queryFeatures(`track_circuit`).filter(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t));if(n.length===0)return;let r;if(n.length>=1&&(n[0].properties?.type===`1`||n[0].properties?.type===1))return n[0];for(let e of n){if(r)break;if(e.properties?.type===2||e.properties?.type===`2`){let t=String(e.properties?.switches??``).split(`,`),n=String(e.properties?.positions??``).replace(/\s+/g,``).split(`,`).filter(e=>e!==`1`);for(let i=0;i<t.length;i++){let a=t[i],o=n[i],s=this.getSwitchNameByCode(a);if(!s||o!==this.interLockState.switch.get(s+`:`+a.substring(0,9)))break;if(i==t.length-1){r=e;break}}}}return r}getSwitchNameByCode(e){let t=this.queryFeatures(`switch`).find(t=>String(t.properties?.code??``)===e);return t?String(t.properties?.name??``):void 0}findSwitchInfo(e,t,n){let r=e+`:`+t;return n.find(e=>e.name===r)??null}validSwitchInfo(e){return e?e.state===`2`||e.state===`3`:!1}arrToMap(e,t){t?.forEach(t=>e.set(t.name,t.state))}};function Ie(){if(!this.mapConfigs)return;let e=this.mapConfigs.id;this.mapConfigs.sourceLayers?.forEach(t=>{(t.includes(`switch`)||t.includes(`signal`)||t.includes(`track`))&&this.map.querySourceFeatures(e,{sourceLayer:t}).forEach(e=>{this.initGraphFeatureState(e)})})}function Le(e){if(!e||e.length<11)return``;let t=e.charAt(10),n=e.charAt(9);return t===`1`&&n===`0`?`track`:t===`3`?`signal`:t===`2`&&n===`0`||t===`1`&&n===`1`?`switch`:t===`2`&&n===`1`?`circuit`:``}function P(e){if(!e)return;let t=e.properties.code,n=Le(t);if(n===`switch`){let t={state:``,visiable:!0};t.state=`2`;let n=e.properties;this.updateFeatureState(n.code,t)}else if(n===`signal`){let t=e.properties,n=t.attach||0,r=t.func_type,i={state:``,visiable:!0};r==1&&n==0||(r==2||r==3)&&n==0||(r==2||r==3||r==11)&&n==1?(i.state=`red`,this.updateFeatureState(t.code,i)):(r==4||r==5||r==12)&&n==0?(i.state=`blue`,this.updateFeatureState(t.code,i)):r==6&&n==0||(r==7||r==11)&&n==0?(i.state=`red`,this.updateFeatureState(t.code,i)):(i.state=``,this.updateFeatureState(t.code,i))}else if(n===`signal`||n===`circuit`){let t={state:``,visiable:!0},n=e.properties;this.updateFeatureState(n.code,t)}}function Re(e){if(!e.mapConfigs)return;let t=e.mapConfigs.id,n=e.mapConfigs.layers?.reduce((t,n,r)=>(t[n]=e.mapConfigs.sourceLayers[r],t),{});if(n)return new Fe({map:e.map,sourceId:t,sourceLayers:n,updateFeatureState:(t,n)=>e.updateFeatureState(t,n)})}function ze(e){e.initGraphFeatureState=P,e.initState=Ie,e.interLockVisualization=Re(e),e.map.once(`idle`,()=>{})}function Be(){this.mapConfigs&&(this.mapConfigs.layers??[]).forEach(e=>{let t=`geojson_${e}`;this.map.getSource(t)&&this.stashFeatures.forEach(n=>{n.sourceLayer!==t||!n.properties||this.initGeoJsonFeatureState({properties:n.properties},e)})})}function Ve(e,t){if(!e)return;let n=e.properties,r=n?.code;if(r)if(t===`switch`||t===`switch_loc`)this.updateFeatureState(r,{state:`2`,visiable:!0});else if(t===`signal`){let e=n?.attach||0,t=n?.functionType,i={state:``,visiable:!0};t==1&&e==0||(t==2||t==3)&&e==0||(t==2||t==3||t==11)&&e==1||t==6&&e==0||(t==7||t==11)&&e==0?i.state=`red`:(t==4||t==5||t==12)&&e==0&&(i.state=`blue`),this.updateFeatureState(r,i)}else t===`track_circuit`&&this.updateFeatureState(r,{state:``,visiable:!0})}function He(e){if(!e.mapConfigs)return;let t=[`signal`,`switch`,`switch_loc`,`track_circuit`,`track`,`insulation`].reduce((e,t)=>(e[t]=`geojson_${t}`,e),{});return new Fe({mode:`geojson`,map:e.map,sourceIds:t,updateFeatureState:(t,n)=>e.updateFeatureState(t,n)})}function Ue(e){e.initGeoJsonFeatureState=Ve,e.initGeoJsonState=Be,e.interLockVisualization=He(e),e.map.once(`idle`,()=>{})}function F(){return F=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},F.apply(null,arguments)}var We=`draw`,Ge=`edit`,Ke=`deleteCoordinate`,qe=`insertMidpoint`,I;(function(e){e.Commit=`commit`,e.Provisional=`provisional`,e.Finish=`finish`})(I||={});var Je=`https://raw.githubusercontent.com/JamesLMilner/terra-draw/refs/heads/main/assets/markers/marker-blue.png`,Ye={SELECTED:`selected`,MID_POINT:`midPoint`,SELECTION_POINT_FEATURE_ID:`selectionPointFeatureId`,SELECTION_POINT:`selectionPoint`},L={MODE:`mode`,CURRENTLY_DRAWING:`currentlyDrawing`,EDITED:`edited`,CLOSING_POINT:`closingPoint`,SNAPPING_POINT:`snappingPoint`,COORDINATE_POINT:`coordinatePoint`,COORDINATE_POINT_FEATURE_ID:`coordinatePointFeatureId`,COORDINATE_POINT_IDS:`coordinatePointIds`,PROVISIONAL_COORDINATE_COUNT:`provisionalCoordinateCount`,COMMITTED_COORDINATE_COUNT:`committedCoordinateCount`,MARKER:`marker`},Xe=10;function R(e){return!!(e&&typeof e==`object`&&e&&!Array.isArray(e))}function z(e){return!!(e&&typeof e==`object`&&`properties`in e&&typeof e.properties==`object`&&e.properties!==null&&`mode`in e.properties)}function B(e){return!!function(e){return typeof e==`number`&&!isNaN(new Date(e).valueOf())}(e)}var Ze=`Feature mode property does not match the mode being added to`,Qe;(function(e){e.Drawing=`drawing`,e.Select=`select`,e.Static=`static`,e.Render=`render`})(Qe||={});var $e={rightClick:!0,contextMenu:!1,leftClick:!0,onDragStart:!0,onDrag:!0,onDragEnd:!0},V=class{get state(){return this._state}set state(e){throw Error(`Please use the modes lifecycle methods`)}get styles(){return this._styles}set styles(e){if(typeof e!=`object`)throw Error(`Styling must be an object`);this.onStyleChange&&this.onStyleChange([],`styling`),this._styles=e}registerBehaviors(e){}constructor(e,t=!1){this._state=`unregistered`,this._styles={},this.pointerEvents=$e,this.behaviors=[],this.validate=void 0,this.pointerDistance=40,this.coordinatePrecision=void 0,this.undoRedoMaxStackSize=void 0,this.onStyleChange=void 0,this.store=void 0,this.projection=`web-mercator`,this.setDoubleClickToZoom=void 0,this.unproject=void 0,this.project=void 0,this.setCursor=void 0,this.isInitialUpdate=!1,this.type=Qe.Drawing,this.mode=`base`,t?this.isInitialUpdate=!0:this.updateOptions(F({},e))}updateOptions(e){e!=null&&e.styles&&(this.styles=F({},this._styles,e.styles)),e!=null&&e.pointerDistance&&(this.pointerDistance=e.pointerDistance),e!=null&&e.validation&&(this.validate=e&&e.validation),e!=null&&e.projection&&(this.projection=e.projection),e?.pointerEvents!==void 0&&(this.pointerEvents=e.pointerEvents),e!=null&&e.modeName&&!0===this.isInitialUpdate&&(this.mode=e.modeName),this.isInitialUpdate=!1}allowPointerEvent(e,t){return typeof e==`boolean`?e:typeof e!=`function`||e(t)}setDrawing(){if(this._state!==`started`)throw Error(`Mode must be unregistered or stopped to start`);this._state=`drawing`}setStarted(){if(this._state!==`stopped`&&this._state!==`registered`&&this._state!==`drawing`&&this._state!==`selecting`)throw Error(`Mode must be unregistered or stopped to start`);this._state=`started`,this.setDoubleClickToZoom(!1)}setStopped(){if(this._state!==`started`)throw Error(`Mode must be started to be stopped`);this._state=`stopped`,this.setDoubleClickToZoom(!0)}register(e){if(this._state!==`unregistered`)throw Error(`Can not register unless mode is unregistered`);this._state=`registered`,this.store=e.store,this.store.registerOnChange(e.onChange),this.setDoubleClickToZoom=e.setDoubleClickToZoom,this.project=e.project,this.unproject=e.unproject,this.onSelect=e.onSelect,this.onDeselect=e.onDeselect,this.setCursor=e.setCursor,this.onStyleChange=e.onChange,this.onFinish=e.onFinish,this.coordinatePrecision=e.coordinatePrecision,this.undoRedoMaxStackSize=e.undoRedoMaxStackSize,this.registerBehaviors({mode:e.mode,store:this.store,project:this.project,unproject:this.unproject,pointerDistance:this.pointerDistance,coordinatePrecision:e.coordinatePrecision,projection:this.projection,undoRedoMaxStackSize:e.undoRedoMaxStackSize})}validateFeature(e){return this.performFeatureValidation(e)}afterFeatureAdded(e){}afterFeatureUpdated(e){}performFeatureValidation(e){if(this._state===`unregistered`)throw Error(`Mode must be registered`);let t=function(e,t){let n;if(R(e))if(e.id==null)n=`Feature has no id`;else if(typeof e.id!=`string`&&typeof e.id!=`number`)n=`Feature must be string or number as per GeoJSON spec`;else if(t(e.id))if(R(e.geometry))if(R(e.properties))if(typeof e.geometry.type==`string`&&[`Polygon`,`LineString`,`Point`].includes(e.geometry.type))if(Array.isArray(e.geometry.coordinates)){if(!e.properties.mode||typeof e.properties.mode!=`string`)return{valid:!1,reason:`Feature does not have a valid mode property`}}else n=`Feature coordinates is not an array`;else n=`Feature is not Point, LineString or Polygon`;else n=`Feature has no properties`;else n=`Feature has no geometry`;else n=`Feature must match the id strategy (default is UUID4)`;else n=`Feature is not object`;return n?{valid:!1,reason:n}:{valid:!0}}(e,this.store.idStrategy.isValidId);if(!t.valid)return t;if(this.validate){let n=this.validate(e,{project:this.project,unproject:this.unproject,coordinatePrecision:this.coordinatePrecision,updateType:I.Provisional});return{valid:t.valid&&n.valid,reason:n.reason}}return{valid:t.valid,reason:t.reason}}validateModeFeature(e,t){let n=this.performFeatureValidation(e);return n.valid?e.properties.mode===this.mode?t(e):{valid:!1,reason:Ze}:{valid:!1,reason:n.reason}}onFinish(e,t){}onDeselect(e){}onSelect(e){}onKeyDown(e){}onKeyUp(e){}undo(){}clearHistory(){}undoSize(){return 0}redoSize(){return 0}redo(){}onMouseMove(e){}onClick(e){}onDragStart(e,t){}onDrag(e,t){}onDragEnd(e,t){}getHexColorStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getNumericStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getUrlStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getStylingValue(e,t,n){return e===void 0?t:typeof e==`function`?(r=e(n))??t:e;var r}},et=class extends V{constructor(...e){super(...e),this.type=Qe.Select}};function tt(e,t){let n=e=>e*Math.PI/180,r=n(e[1]),i=n(e[0]),a=n(t[1]),o=a-r,s=n(t[0])-i,c=Math.sin(o/2)*Math.sin(o/2)+Math.cos(r)*Math.cos(a)*Math.sin(s/2)*Math.sin(s/2);return 2*Math.atan2(Math.sqrt(c),Math.sqrt(1-c))*6371e3/1e3}var nt=6371008.8;function rt(e){return e%360*Math.PI/180}function it(e){return e/6371.0088}function at(e){return e%(2*Math.PI)*180/Math.PI}function H(e,t=9){let n=10**t;return Math.round(e*n)/n}var ot=57.29577951308232,st=.017453292519943295,ct=6378137,U=(e,t)=>({x:e===0?0:e*st*ct,y:t===0?0:Math.log(Math.tan(Math.PI/4+t*st/2))*ct}),lt=(e,t)=>({lng:e===0?0:e/ct*ot,lat:t===0?0:(2*Math.atan(Math.exp(t/ct))-Math.PI/2)*ot});function ut(e,t,n){let r=rt(e[0]),i=rt(e[1]),a=rt(n),o=it(t),s=Math.asin(Math.sin(i)*Math.cos(o)+Math.cos(i)*Math.sin(o)*Math.cos(a));return[at(r+Math.atan2(Math.sin(a)*Math.sin(o)*Math.cos(i),Math.cos(o)-Math.sin(i)*Math.sin(s))),at(s)]}function dt(e){let{center:t,radiusKilometers:n,coordinatePrecision:r}=e,i=e.steps?e.steps:64,a=[];for(let e=0;e<i;e++){let o=ut(t,n,-360*e/i);a.push([H(o[0],r),H(o[1],r)])}return a.push(a[0]),{type:`Feature`,geometry:{type:`Polygon`,coordinates:[a]},properties:{}}}function ft(e){let t;if(e.geometry.type===`Polygon`)t=e.geometry.coordinates;else{if(e.geometry.type!==`LineString`)throw Error(`Self intersects only accepts Polygons and LineStrings`);t=[e.geometry.coordinates]}let n=[];for(let e=0;e<t.length;e++)for(let n=0;n<t[e].length-1;n++)for(let r=0;r<t.length;r++)for(let a=0;a<t[r].length-1;a++)i(e,n,r,a);return n.length>0;function r(e){return e<0||e>1}function i(e,i,a,o){let s=t[e][i],c=t[e][i+1],l=t[a][o],u=t[a][o+1],d=function(e,t,n,r){if(pt(e,n)||pt(e,r)||pt(t,n)||pt(r,n))return null;let i=e[0],a=e[1],o=t[0],s=t[1],c=n[0],l=n[1],u=r[0],d=r[1],f=(i-o)*(l-d)-(a-s)*(c-u);return f===0?null:[((i*s-a*o)*(c-u)-(i-o)*(c*d-l*u))/f,((i*s-a*o)*(l-d)-(a-s)*(c*d-l*u))/f]}(s,c,l,u);if(d===null)return;let f,p;f=c[0]===s[0]?(d[1]-s[1])/(c[1]-s[1]):(d[0]-s[0])/(c[0]-s[0]),p=u[0]===l[0]?(d[1]-l[1])/(u[1]-l[1]):(d[0]-l[0])/(u[0]-l[0]),r(f)||r(p)||(d.toString(),n.push(d))}}function pt(e,t){return e[0]===t[0]&&e[1]===t[1]}function mt(e,t){return gt(e[0])<=t&&gt(e[1])<=t}function ht(e){return e.length===2&&typeof e[0]==`number`&&typeof e[1]==`number`&&e[0]!==1/0&&e[1]!==1/0&&(n=e[0])>=-180&&n<=180&&(t=e[1])>=-90&&t<=90;var t,n}function gt(e){let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n++;return n}var _t=`Feature has holes`,vt=`Feature has less than 4 coordinates`,yt=`Feature has invalid coordinates`,bt=`Feature coordinates are not closed`;function xt(e,t){if(e.geometry.type!==`Polygon`)return{valid:!1,reason:`Feature is not a Polygon`};if(e.geometry.coordinates.length!==1)return{valid:!1,reason:_t};if(e.geometry.coordinates[0].length<4)return{valid:!1,reason:vt};for(let n=0;n<e.geometry.coordinates[0].length;n++){if(!ht(e.geometry.coordinates[0][n]))return{valid:!1,reason:yt};if(!mt(e.geometry.coordinates[0][n],t))return{valid:!1,reason:`Feature has coordinates with excessive precision`}}return(n=e.geometry.coordinates[0][0])[0]!==(r=e.geometry.coordinates[0][e.geometry.coordinates[0].length-1])[0]||n[1]!==r[1]?{valid:!1,reason:bt}:{valid:!0};var n,r}function St(e,t){let n=xt(e,t);return n.valid?ft(e)?{valid:!1,reason:`Feature intersects itself`}:{valid:!0}:n}var Ct=class{constructor({store:e,mode:t,project:n,unproject:r,pointerDistance:i,coordinatePrecision:a,projection:o,undoRedoMaxStackSize:s}){this.store=void 0,this.mode=void 0,this.project=void 0,this.unproject=void 0,this.pointerDistance=void 0,this.coordinatePrecision=void 0,this.projection=void 0,this.undoRedoMaxStackSize=void 0,this.store=e,this.mode=t,this.project=n,this.unproject=r,this.pointerDistance=i,this.coordinatePrecision=a,this.projection=o,this.undoRedoMaxStackSize=s}};function wt(e){if(!function(e){let t=e.coordinates[0],n=0;for(let e=0;e<t.length-1;e++){let[r,i]=t[e],[a,o]=t[e+1];n+=(a-r)*(o+i)}return n<0}(e))return{type:`Polygon`,coordinates:[e.coordinates[0].reverse()]}}var Tt=`insert-before`,Et=`insert-after`,Dt=`update`,Ot=`delete`,kt=`replace`,At=class extends Ct{constructor(e,t){super(e),this.options=void 0,this.options=t}createPoint({coordinates:e,properties:t,context:n}){if(n?.updateType!==I.Finish||this.validateGeometryWithUpdateType({geometry:{type:`Point`,coordinates:e},properties:t,updateType:I.Finish}))return this.handleCreateFeature({geometry:{type:`Point`,coordinates:e},properties:t})}createLineString({coordinates:e,properties:t}){return this.handleCreateFeature({geometry:{type:`LineString`,coordinates:e},properties:t})}createPolygon({coordinates:e,properties:t}){let n=wt({type:`Polygon`,coordinates:[e]});return this.handleCreateFeature({geometry:{type:`Polygon`,coordinates:n?n.coordinates:[e]},properties:t})}createGuidancePoint({coordinate:e,type:t}){return this.createGuidancePoints({coordinates:[e],type:t})[0]}createGuidancePoints({coordinates:e,type:t,additionalProperties:n}){let r=e.map((e,r)=>({type:`Feature`,geometry:{type:`Point`,coordinates:e},properties:F({mode:this.mode,[t]:!0},n?n(r):{})}));return this.createFeatures(r)}updatePoint({featureId:e,coordinateMutations:t,propertyMutations:n,context:r}){return this.handleMutateFeature({type:`Point`,featureId:e,coordinateMutations:t,propertyMutations:n,context:r})}updatePolygon({featureId:e,coordinateMutations:t,context:n,propertyMutations:r}){return this.handleMutateFeature({type:`Polygon`,featureId:e,coordinateMutations:t,propertyMutations:r,context:n})}updateLineString({featureId:e,coordinateMutations:t,context:n,propertyMutations:r}){return this.handleMutateFeature({type:`LineString`,featureId:e,coordinateMutations:t,propertyMutations:r,context:n})}deleteFeatureIfPresent(e){e&&this.store.has(e)&&this.store.delete([e])}deleteFeaturesIfPresent(e){if(e.length===0)return;let t=e.filter(e=>this.store.has(e));t.length&&this.store.delete(t)}setDeselected(e){let t=e.filter(e=>this.store.has(e)).map(e=>({featureId:e,properties:{[Ye.SELECTED]:!1}}));this.updateFeatureProperties(t)}setSelected(e){let{type:t}=this.store.getGeometryCopy(e),n={featureId:e,propertyMutations:{[Ye.SELECTED]:!0},context:{updateType:I.Commit}};t===`Polygon`?this.updatePolygon(n):t===`LineString`?this.updateLineString(n):t===`Point`&&this.updatePoint(n)}updateGuidancePoints(e){this.updateFeatureGeometries(e.map(({featureId:e,coordinate:t})=>({id:e,geometry:{type:`Point`,coordinates:t}})))}handleCreateFeature({geometry:e,properties:t}){return this.createFeatureWithGeometry({geometry:e,properties:t})}handleMutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i}){if(!this.mutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i.updateType===I.Finish?F({},i,{correctRightHandRule:!0}):F({},i)}))return null;let a=this.buildFeatureWithGeometry(t);return i.updateType!==I.Finish||n||this.validateGeometryWithUpdateType({geometry:a.geometry,properties:a.properties,updateType:i.updateType})?a:null}mutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i}){if(!t)return!1;let a=this.store.getGeometryCopy(t),o=this.store.getPropertiesCopy(t);if(a.type!==e)throw Error(`${e} geometries cannot be updated on features with ${a.type} geometries`);if(n){let e=this.applyCoordinateMutations(a,n);if(i.correctRightHandRule&&e.type===`Polygon`){let t=wt(e);t&&(e=t)}if(!this.validateGeometryWithUpdateType({geometry:e,properties:o,updateType:i.updateType}))return!1;this.updateFeatureGeometries([{id:t,geometry:e}])}return r&&this.updateFeatureProperties([{featureId:t,properties:r}]),!0}applyCoordinateMutations(e,t){if(this.isReplaceMutation(t))return F({},e,{coordinates:t.coordinates});if(e.type===`Point`)throw Error(`Coordinate mutations are not supported for Point geometries`);let n=e.type===`Polygon`,r=n?e.coordinates[0].slice():e.coordinates.slice(),i=r.length,a=e=>{let t=e<0?i+e:e;if(t<0||t>=i)throw RangeError(`Index ${e} (normalized to ${t}) is out of bounds`);return t},o=Array(i).fill(void 0),s=Array.from({length:i},()=>[]),c=Array.from({length:i},()=>[]),l=[];for(let e of t){if(e.type===Tt||e.type===Et){let t=e.index,n=t<0?i+t:t;if(n<0||n>i)throw RangeError(`Index ${e.index} (normalized to ${n}) is out of bounds`);if(e.type===Tt){if(n>=i)throw RangeError(`INSERT_BEFORE index ${e.index} (normalized to ${n}) is out of bounds for length ${i}`);s[n].push(e)}else n===i?l.push(e):c[n].push(e);continue}let t=a(e.index);o[t]=F({},e,{index:t})}let u=[];for(let e=0;e<i;e++){let t=s[e];for(let e of t)u.push(e.coordinate);let n=o[e];n?n.type===Ot||u.push(n.coordinate):u.push(r[e]);let i=c[e];for(let e of i)u.push(e.coordinate)}for(let e of l)u.push(e.coordinate);return F({},e,n?{coordinates:[u,...e.coordinates.slice(1)]}:{coordinates:u})}isReplaceMutation(e){return e.type===kt}createFeatureWithGeometry({geometry:e,properties:t}){let[n]=this.createFeatures([{type:`Feature`,geometry:e,properties:t}]);return{id:n,type:`Feature`,properties:this.store.getPropertiesCopy(n),geometry:this.store.getGeometryCopy(n)}}validateGeometryWithUpdateType({geometry:e,properties:t,updateType:n}){return!this.options.validate||this.options.validate({type:`Feature`,geometry:e,properties:t||{}},{project:this.project,unproject:this.unproject,coordinatePrecision:this.coordinatePrecision,updateType:n}).valid}buildFeatureWithGeometry(e){return{id:e,type:`Feature`,properties:this.store.getPropertiesCopy(e),geometry:this.store.getGeometryCopy(e)}}createFeatures(e){return this.store.create(e)}updateFeatureGeometries(e){this.store.updateGeometry(e)}updateFeatureProperties(e){let t=e.map(({featureId:e,properties:t})=>Object.entries(t).map(([t,n])=>({id:e,property:t,value:n}))).flat();this.store.updateProperty(t)}},jt={cancel:`Escape`,finish:`Enter`},Mt={start:`crosshair`},Nt=class extends V{constructor(e){super(e,!0),this.mode=`circle`,this.center=void 0,this.endPosition=void 0,this.segments=64,this.currentCircleId=void 0,this.keyEvents=jt,this.cursors=Mt,this.startingRadiusKilometers=1e-5,this.cursorMovedAfterInitialCursorDown=!1,this.drawInteraction=`click-move`,this.drawType=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.startingRadiusKilometers&&(this.startingRadiusKilometers=e.startingRadiusKilometers),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction),e!=null&&e.segments&&(this.segments=e.segments<3?3:e.segments)}close(){if(this.currentCircleId===void 0||this.endPosition===void 0||!this.updateCircle(this.endPosition,I.Finish))return;let e=this.currentCircleId;this.cursorMovedAfterInitialCursorDown=!1,this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}beginDrawing(e,t=`click`){this.center=[e.lng,e.lat],this.endPosition=[e.lng,e.lat];let n=dt({center:this.center,radiusKilometers:this.startingRadiusKilometers,coordinatePrecision:this.coordinatePrecision}),r=this.mutateFeature.createPolygon({coordinates:n.geometry.coordinates[0],properties:{mode:this.mode,radiusKilometers:this.startingRadiusKilometers,[L.CURRENTLY_DRAWING]:!0}});r&&(this.currentCircleId=r.id,this.cursorMovedAfterInitialCursorDown=!1,this.drawType=t,this.setDrawing())}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.center?this.center&&this.currentCircleId!==void 0&&(this.endPosition=[e.lng,e.lat],this.close()):this.beginDrawing(e))}onMouseMove(e){this.cursorMovedAfterInitialCursorDown=!0,this.endPosition=[e.lng,e.lat],this.updateCircle(this.endPosition,I.Provisional)}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){this.state!==`drawing`&&this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.cursorMovedAfterInitialCursorDown=!0,this.endPosition=[e.lng,e.lat],this.updateCircle(this.endPosition,I.Provisional))}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.close(),t(!0))}cleanUp(){let e=this.currentCircleId;this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}updateCircle(e,t){if(this.currentCircleId===void 0||this.center===void 0)return;let n=t===I.Finish,r,i;if(this.cursorMovedAfterInitialCursorDown)if(i=tt(this.center,e),this.projection===`web-mercator`){let t=function(e,t){let n=1e3*tt(e,t);if(n===0)return 1;let{x:r,y:i}=U(e[0],e[1]),{x:a,y:o}=U(t[0],t[1]);return Math.sqrt((a-r)**2+(o-i)**2)/n}(this.center,e);r=function(e){let{center:t,radiusKilometers:n,coordinatePrecision:r}=e,i=e.steps?e.steps:64,a=1e3*n,[o,s]=t,{x:c,y:l}=U(o,s),u=[];for(let e=0;e<i;e++){let t=360*e/i*Math.PI/180,n=a*Math.cos(t),o=a*Math.sin(t),[s,d]=[c+n,l+o],{lng:f,lat:p}=lt(s,d);u.push([H(f,r),H(p,r)])}return u.push(u[0]),{type:`Feature`,geometry:{type:`Polygon`,coordinates:[u]},properties:{}}}({center:this.center,radiusKilometers:i*t,coordinatePrecision:this.coordinatePrecision,steps:this.segments})}else{if(this.projection!==`globe`)throw Error(`Invalid projection`);r=dt({center:this.center,radiusKilometers:i,coordinatePrecision:this.coordinatePrecision,steps:this.segments})}let a={};return r&&i&&(a.radiusKilometers=i),n&&(a[L.CURRENTLY_DRAWING]=void 0),this.mutateFeature.updatePolygon({featureId:this.currentCircleId,coordinateMutations:r?{type:kt,coordinates:r.geometry.coordinates}:void 0,propertyMutations:a,context:n?{updateType:t,action:We}:{updateType:t}})}afterFeatureUpdated(e){this.currentCircleId===e.id&&(this.cursorMovedAfterInitialCursorDown=!1,this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.mutateFeature=new At(e,{validate:this.validate})}},Pt=(e,t)=>{let{x:n,y:r}=e,{x:i,y:a}=t,o=i-n,s=a-r;return Math.sqrt(s*s+o*o)};function W(e,t){return e[0]===t[0]&&e[1]===t[1]}var Ft=class extends Ct{constructor(e){super(e)}getGeometryType(e){return this.store.getGeometryCopy(e).type}coordinateAtIndexIsIdentical({featureId:e,newCoordinate:t,index:n}){let r=this.store.getGeometryCopy(e),i;if(r.type===`Polygon`)i=r.coordinates[0][n];else if(r.type===`LineString`)i=r.coordinates[n];else{if(n!==0)throw Error(`Point geometries only have one coordinate at index 0`);i=r.coordinates}return W(t,i)}getGeometry(e){return this.store.getGeometryCopy(e)}getCoordinates(e){let{type:t,coordinates:n}=this.store.getGeometryCopy(e);return t===`Polygon`?n[0]:n}getCoordinate(e,t){let n=this.getCoordinates(e),r=t<0?n.length+t:t;if(r<0||r>=n.length)throw RangeError(`Index ${t} (normalized to ${r}) is out of bounds`);return n[r]}getProperties(e){return this.store.getPropertiesCopy(e)}hasFeature(e){return this.store.has(e)}getAllFeatureIdsWhere(e){return this.store.copyAllWhere(e).map(({id:e})=>e)}},It={cancel:`Escape`,finish:`Enter`},G={start:`crosshair`,close:`pointer`},Lt=class extends V{constructor(e){super(e,!0),this.mode=`freehand`,this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.minDistance=20,this.keyEvents=It,this.cursors=G,this.preventPointsNearClose=!0,this.autoClose=!1,this.autoCloseTimeout=500,this.hasLeftStartingPoint=!1,this.preventNewFeature=!1,this.drawInteraction=`click-move`,this.drawType=void 0,this.smoothing=0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.minDistance&&(this.minDistance=e.minDistance),e?.smoothing!==void 0&&(this.smoothing=Math.min(Math.max(e.smoothing,0),.999)),e?.preventPointsNearClose!==void 0&&(this.preventPointsNearClose=e.preventPointsNearClose),e?.autoClose!==void 0&&(this.autoClose=e.autoClose),e!=null&&e.autoCloseTimeout&&(this.autoCloseTimeout=e.autoCloseTimeout),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction)}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}beginDrawing(e,t=`click`){let{id:n}=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=n,this.drawType=t,this.closingPointId=this.mutateFeature.createGuidancePoint({coordinate:[e.lng,e.lat],type:L.CLOSING_POINT}),this.canClose=!0,this.state!==`drawing`&&this.setDrawing()}addCoordinate(e){if(this.currentId===void 0||!1===this.canClose)return void this.setCursor(this.cursors.start);let[t,n]=this.readFeature.getCoordinate(this.currentId,-2),{x:r,y:i}=this.project(t,n),a=Pt({x:r,y:i},{x:e.containerX,y:e.containerY}),[o,s]=this.readFeature.getCoordinate(this.currentId,0),{x:c,y:l}=this.project(o,s);if(Pt({x:c,y:l},{x:e.containerX,y:e.containerY})<this.pointerDistance){if(this.autoClose&&this.hasLeftStartingPoint&&(this.preventNewFeature=!0,setTimeout(()=>{this.preventNewFeature=!1},this.autoCloseTimeout),this.close()),this.setCursor(this.cursors.close),this.preventPointsNearClose)return}else this.hasLeftStartingPoint=!0,this.setCursor(this.cursors.start);if(a<this.minDistance)return;let u=this.getSmoothedCoordinate([t,n],[e.lng,e.lat]);this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Tt,index:-1,coordinate:u}],context:{updateType:I.Provisional}})}getSmoothedCoordinate(e,t){if(this.smoothing===0)return t;let[n,r]=e,[i,a]=t;return[n*this.smoothing+i*(1-this.smoothing),r*this.smoothing+a*(1-this.smoothing)]}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.mutateFeature.deleteFeatureIfPresent(this.closingPointId),this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.hasLeftStartingPoint=!1,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){this.moveDrawAllowed()&&this.drawType===`click`&&this.addCoordinate(e)}onClick(e){if(this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))){if(this.preventNewFeature)return;if(!1===this.canClose)return void this.beginDrawing(e);this.close()}}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&!0===this.canClose&&this.close()}onDragStart(e,t){this.state!==`drawing`&&(this.preventNewFeature||this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&this.addCoordinate(e)}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.preventNewFeature=!0,setTimeout(()=>{this.preventNewFeature=!1},this.autoCloseTimeout),this.close(),t(!0))}cleanUp(){let e=this.currentId,t=this.closingPointId;this.closingPointId=void 0,this.currentId=void 0,this.canClose=!1,this.hasLeftStartingPoint=!1,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode?(t.pointWidth=this.getNumericStylingValue(this.styles.closingPointWidth,t.pointWidth,e),t.pointColor=this.getHexColorStylingValue(this.styles.closingPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.closingPointOpacity,t.pointOpacity===void 0?1:t.pointOpacity,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.closingPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.closingPointOutlineWidth,2,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.closingPointOutlineOpacity,t.pointOutlineOpacity===void 0?1:t.pointOutlineOpacity,e),t.zIndex=50,t):t}validateFeature(e){return this.validateModeFeature(e,e=>xt(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.mutateFeature.deleteFeatureIfPresent(this.closingPointId),this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.hasLeftStartingPoint=!1)}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}};function Rt({unproject:e,point:t,pointerDistance:n}){let r=n/2,{x:i,y:a}=t;return{type:`Feature`,properties:{},geometry:{type:`Polygon`,coordinates:[[e(i-r,a-r),e(i+r,a-r),e(i+r,a+r),e(i-r,a+r),e(i-r,a-r)].map(e=>[e.lng,e.lat])]}}}var zt=class extends Ct{constructor(e){super(e)}create(e){let{containerX:t,containerY:n}=e;return Rt({unproject:this.unproject,point:{x:t,y:n},pointerDistance:this.pointerDistance})}},Bt=class extends Ct{constructor(e){super(e)}measure(e,t){let{x:n,y:r}=this.project(t[0],t[1]);return Pt({x:n,y:r},{x:e.containerX,y:e.containerY})}},Vt=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.getSnappableCoordinateFirstClick=e=>this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode)).coordinate,this.getSnappableCoordinate=(e,t)=>this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode&&e.id!==t)).coordinate,this.config=e,this.pixelDistance=t,this.clickBoundingBox=n}getSnappable(e,t){let n=this.clickBoundingBox.create(e),r=this.store.search(n,t),i={featureId:void 0,featureCoordinateIndex:void 0,coordinate:void 0,minDist:1/0};return r.forEach(t=>{let n;if(t.geometry.type===`Polygon`)n=t.geometry.coordinates[0];else{if(t.geometry.type!==`LineString`)return;n=t.geometry.coordinates}n.forEach((n,r)=>{let a=this.pixelDistance.measure(e,n);a<i.minDist&&a<this.pointerDistance&&(i.coordinate=n,i.minDist=a,i.featureId=t.id,i.featureCoordinateIndex=r)})}),i}};function Ht(e,t,n){let r=rt(e[0]),i=rt(e[1]),a=rt(n),o=it(t),s=Math.asin(Math.sin(i)*Math.cos(o)+Math.cos(i)*Math.sin(o)*Math.cos(a));return[at(r+Math.atan2(Math.sin(a)*Math.sin(o)*Math.cos(i),Math.cos(o)-Math.sin(i)*Math.sin(s))),at(s)]}function Ut({x:e,y:t},n,r){let i=rt(r);return{x:e+n*Math.cos(i),y:t+n*Math.sin(i)}}function Wt(e,t){let n=rt(e[0]),r=rt(t[0]),i=rt(e[1]),a=rt(t[1]),o=Math.sin(r-n)*Math.cos(a),s=Math.cos(i)*Math.sin(a)-Math.sin(i)*Math.cos(a)*Math.cos(r-n);return at(Math.atan2(o,s))}function Gt({x:e,y:t},{x:n,y:r}){let i=n-e,a=r-t;if(i===0&&a===0)return 0;let o=Math.atan2(a,i);return o*=180/Math.PI,o>180?o-=360:o<-180&&(o+=360),o}function Kt(e){return(e+360)%360}function qt(e,t,n){let r=[],i=e.length,a,o,s,c=0;for(let i=0;i<e.length&&!(t>=c&&i===e.length-1);i++){if(c>t&&r.length===0){if(a=t-c,!a)return r.push(e[i]),r;o=Wt(e[i],e[i-1])-180,s=Ht(e[i],a,o),r.push(s)}if(c>=n)return a=n-c,a?(o=Wt(e[i],e[i-1])-180,s=Ht(e[i],a,o),r.push(s),r):(r.push(e[i]),r);if(c>=t&&r.push(e[i]),i===e.length-1)return r;c+=tt(e[i],e[i+1])}if(c<t&&e.length===i)throw Error(`Start position is beyond line`);let l=e[e.length-1];return[l,l]}function Jt(e){return Math.PI/180*e}function Yt(e){return 180/Math.PI*e}var Xt=class extends Ct{constructor(e){super(e),this.config=void 0,this.config=e}generateInsertionCoordinates(e,t,n){let r=[e,t],i=0;for(let e=0;e<r.length-1;e++)i+=tt(r[0],r[1]);if(i<=n)return r;let a=i/n-1;Number.isInteger(a)||(a=Math.floor(a)+1);let o=[];for(let e=0;e<a;e++){let t=qt(r,n*e,n*(e+1));o.push(t)}let s=[];for(let e=0;e<o.length;e++)s.push(o[e][1]);return this.limitCoordinates(s)}generateInsertionGeodesicCoordinates(e,t,n){let r=tt(e,t),i=function(e,t,n){let r=[],i=Jt(e[1]),a=Jt(e[0]),o=Jt(t[1]),s=Jt(t[0]);n+=1;let c=2*Math.asin(Math.sqrt(Math.sin((o-i)/2)**2+Math.cos(i)*Math.cos(o)*Math.sin((s-a)/2)**2));if(c===0||isNaN(c))return r;for(let e=0;e<=n;e++){let t=e/n,l=Math.sin((1-t)*c)/Math.sin(c),u=Math.sin(t*c)/Math.sin(c),d=l*Math.cos(i)*Math.cos(a)+u*Math.cos(o)*Math.cos(s),f=l*Math.cos(i)*Math.sin(a)+u*Math.cos(o)*Math.sin(s),p=l*Math.sin(i)+u*Math.sin(o);if(isNaN(d)||isNaN(f)||isNaN(p))continue;let m=Math.atan2(p,Math.sqrt(d**2+f**2)),h=Math.atan2(f,d);isNaN(m)||isNaN(h)||r.push([Yt(h),Yt(m)])}return r.slice(1,-1)}(e,t,Math.floor(r/n));return this.limitCoordinates(i)}limitCoordinates(e){return e.map(e=>[H(e[0],this.config.coordinatePrecision),H(e[1],this.config.coordinatePrecision)])}};function Zt(e,t){if(e.geometry.type!==`LineString`)return{valid:!1,reason:`Feature is not a LineString`};if(e.geometry.coordinates.length<2)return{valid:!1,reason:`Feature has less than 2 coordinates`};for(let n=0;n<e.geometry.coordinates.length;n++){if(!ht(e.geometry.coordinates[n]))return{valid:!1,reason:`Feature has invalid coordinates`};if(!mt(e.geometry.coordinates[n],t))return{valid:!1,reason:`Feature has coordinates with excessive precision`}}return{valid:!0}}function Qt(e){return Math.sqrt(e[0]**2+e[1]**2+e[2]**2)}function $t(e,t){let n=function(e,t){let[n,r,i]=e,[a,o,s]=t;return n*a+r*o+i*s}(e,t)/(Qt(e)*Qt(t));return Math.acos(Math.min(Math.max(n,-1),1))}function en(e){let t=rt(e[1]),n=rt(e[0]);return[Math.cos(t)*Math.cos(n),Math.cos(t)*Math.sin(n),Math.sin(t)]}function tn(e){let[t,n,r]=e,i=at(Math.asin(r));return[at(Math.atan2(n,t)),i]}function K(e,t,n){let r=en(e),i=en(t),[a,o,s]=en(n),[c,l,u]=function(e,t){let[n,r,i]=e,[a,o,s]=t;return[r*s-i*o,i*a-n*s,n*o-r*a]}(r,i),d=l*s-u*o,f=u*a-c*s,p=c*o-l*a,m=p*l-f*u,h=d*u-p*c,g=f*c-d*l,_=1/Math.sqrt(m**2+h**2+g**2),v=[m*_,h*_,g*_],y=[-1*m*_,-1*h*_,-1*g*_],b=$t(r,i),x=$t(r,v),S=$t(i,v),C=$t(r,y),w=$t(i,y),T;return T=x<C&&x<w||S<C&&S<w?v:y,$t(r,T)>b||$t(i,T)>b?tt(tn(T),tn(r))<=tt(tn(T),tn(i))?[tn(r),!0,!1]:[tn(i),!1,!0]:[tn(T),!1,!1]}function q(e,t,n){let r=t.x-e.x,i=t.y-e.y,a=Math.max(0,Math.min(1,((n.x-e.x)*r+(n.y-e.y)*i)/(r*r+i*i)));return{x:e.x+a*r,y:e.y+a*i}}var nn=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.getSnappableCoordinateFirstClick=e=>{let t=this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode));return t.coordinate?[H(t.coordinate[0],this.config.coordinatePrecision),H(t.coordinate[1],this.config.coordinatePrecision)]:void 0},this.getSnappableCoordinate=(e,t)=>{let n=this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode&&e.id!==t));return n.coordinate?[H(n.coordinate[0],this.config.coordinatePrecision),H(n.coordinate[1],this.config.coordinatePrecision)]:void 0},this.config=e,this.pixelDistance=t,this.clickBoundingBox=n}getSnappable(e,t){let n=this.clickBoundingBox.create(e),r=this.store.search(n,t),i={featureId:void 0,featureCoordinateIndex:void 0,coordinate:void 0,minDistance:1/0};return r.forEach(t=>{let n;if(t.geometry.type===`Polygon`)n=t.geometry.coordinates[0];else{if(t.geometry.type!==`LineString`)return;n=t.geometry.coordinates}let r=[];for(let e=0;e<n.length-1;e++)r.push([n[e],n[e+1]]);let a,o=[e.lng,e.lat];if(this.config.projection===`web-mercator`?a=function(e,t){let n=[1/0,1/0],r=1/0,i=0;for(let a of t){let o=a[0],s=a[1],c,l=1/0,u=U(o[0],o[1]),d=U(s[0],s[1]),f=U(e[0],e[1]);if(o[0]===e[0]&&o[1]===e[1])c=o;else if(s[0]===e[0]&&s[1]===e[1])c=s;else{let{x:e,y:t}=q(u,d,f),{lng:n,lat:r}=lt(e,t);c=[n,r]}c&&(l=Pt(f,U(c[0],c[1])),l<r&&(n=c,r=l,i=t.indexOf(a)))}return r===1/0?void 0:{coordinate:n,lineIndex:i,distance:r}}(o,r):this.config.projection===`globe`&&(a=function(e,t){let n=[1/0,1/0],r=1/0,i=0;for(let a of t){let o=a[0],s=a[1],c,l=1/0;o[0]===e[0]&&o[1]===e[1]?c=o:s[0]===e[0]&&s[1]===e[1]?c=s:[c]=K(o,s,e),c&&(l=tt(e,c),l<r&&(n=c,r=l,i=t.indexOf(a)))}return r===1/0?void 0:{coordinate:n,distance:r,lineIndex:i}}(o,r)),!a)return;let s=this.pixelDistance.measure(e,a.coordinate);s<i.minDistance&&s<this.pointerDistance&&(i.featureId=t.id,i.coordinate=[H(a.coordinate[0],this.config.coordinatePrecision),H(a.coordinate[1],this.config.coordinatePrecision)],i.featureCoordinateIndex=a.lineIndex,i.minDistance=s)}),i}};function J(e){return Array.isArray(e)&&e.length>0&&Array.isArray(e[0])&&Array.isArray(e[0][0])}var rn=e=>J(e)?e[0].slice(0,-1):e,an=e=>J(e)?e[0]:e,on=class extends Ct{constructor(e,t,n,r){super(e),this.config=void 0,this.pixelDistance=void 0,this.mutateFeatureBehavior=void 0,this.readFeatureBehavior=void 0,this._startEndPoints=[],this.config=e,this.pixelDistance=t,this.mutateFeatureBehavior=n,this.readFeatureBehavior=r}get ids(){return this._startEndPoints.concat()}set ids(e){}create(e){if(this.ids.length)throw Error(`Opening and closing points already created`);let t=J(e),n=an(e);if(t){if(n.length<=3)throw Error(`Requires at least 4 coordinates`);this._startEndPoints=this.mutateFeatureBehavior.createGuidancePoints({coordinates:[n[0],n[n.length-2]],type:L.CLOSING_POINT})}else this._startEndPoints=[this.mutateFeatureBehavior.createGuidancePoint({coordinate:n[n.length-2],type:L.CLOSING_POINT})]}delete(){this.ids.length&&(this.mutateFeatureBehavior.deleteFeaturesIfPresent(this.ids),this._startEndPoints=[])}updateOne(e,t){this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[e],coordinate:t}])}update(e){let t=an(e);this.ids.length===1?this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[0],coordinate:t[t.length-2]}]):this.ids.length===2&&this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[0],coordinate:t[0]},{featureId:this.ids[1],coordinate:t[t.length-3]}])}isLineStringClosingPoint(e){if(this.ids.length!==1)return{isClosing:!1};let t=this.readFeatureBehavior.getGeometry(this.ids[0]);return{isClosing:this.pixelDistance.measure(e,t.coordinates)<this.pointerDistance}}isPolygonClosingPoints(e){if(this.ids.length!==2)return{isClosing:!1,isPreviousClosing:!1};let t=this.readFeatureBehavior.getGeometry(this.ids[0]),n=this.readFeatureBehavior.getGeometry(this.ids[1]),r=this.pixelDistance.measure(e,t.coordinates),i=this.pixelDistance.measure(e,n.coordinates);return{isClosing:r<this.pointerDistance,isPreviousClosing:i<this.pointerDistance}}},sn=class extends Ct{constructor(e,t,n){super(e),this.readFeature=void 0,this.mutateFeature=void 0,this.readFeature=t,this.mutateFeature=n}createOrUpdate({featureId:e,featureCoordinates:t}){if(!this.readFeature.hasFeature(e))return void this.deleteOrphanedPoints(e);let n=rn(t),r=this.readFeature.getProperties(e),i=r.coordinatePointIds;if(i)if(i&&i.every(e=>this.readFeature.hasFeature(e))){let t=r.coordinatePointIds,i=t.map(e=>this.readFeature.getGeometry(e).coordinates);if(t.length!==n.length){this.deleteCoordinatePoints(t);let i=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,i)}else{let e=[];n.forEach((n,r)=>{n[0]===i[r][0]&&n[1]===i[r][1]||e.push({featureId:t[r],coordinate:n})}),this.mutateFeature.updateGuidancePoints(e)}}else{let t=i.filter(e=>this.readFeature.hasFeature(e));t.length&&this.deleteCoordinatePoints(t);let a=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,a)}else{let t=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,t)}}deletePointsByFeatureIds(e){for(let t of e)this.deleteIfPresent(t)}updateOneAtIndex(e,t,n){let r=this.readFeature.getProperties(e).coordinatePointIds;r&&r.length!==0&&r[t]!==void 0&&this.mutateFeature.updateGuidancePoints([{featureId:r[t],coordinate:n}])}updateAllInPlace({featureId:e,featureCoordinates:t}){let n=this.readFeature.getProperties(e);if(!n.coordinatePointIds)return;let r=rn(t);r.length===n.coordinatePointIds.length&&this.mutateFeature.updateGuidancePoints(n.coordinatePointIds.map((e,t)=>({featureId:e,coordinate:r[t]})))}createPoints(e,t,n){return this.mutateFeature.createGuidancePoints({coordinates:e,type:L.COORDINATE_POINT,additionalProperties:e=>({mode:t,[L.COORDINATE_POINT]:!0,[L.COORDINATE_POINT_FEATURE_ID]:n,index:e})})}setFeatureCoordinatePoints(e,t,n=I.Commit){let r=this.readFeature.getGeometryType(e),i={featureId:e,propertyMutations:{[L.COORDINATE_POINT_IDS]:t},context:{updateType:n}};if(r===`Polygon`)this.mutateFeature.updatePolygon(i);else{if(r!==`LineString`)throw Error(`Unsupported geometry type for coordinate points`);this.mutateFeature.updateLineString(i)}}deleteCoordinatePoints(e){this.mutateFeature.deleteFeaturesIfPresent(e)}deleteIfPresent(e){if(!this.readFeature.hasFeature(e))return;let t=this.readFeature.getProperties(e).coordinatePointIds;t&&(this.deleteCoordinatePoints(t),this.setFeatureCoordinatePoints(e,null))}deleteOrphanedPoints(e){let t=this.readFeature.getAllFeatureIdsWhere(t=>t[L.COORDINATE_POINT_FEATURE_ID]===e);this.mutateFeature.deleteFeaturesIfPresent(t)}},cn=class{constructor(e){this.undoHistory=[],this.redoHistory=[],this.cloneCoordinatesFunction=void 0,this.maxStackSize=void 0,this.cloneCoordinatesFunction=e=>this.cloneRecursively(e);let t=e?.maxStackSize;this.maxStackSize=t!==void 0&&Number.isFinite(t)?Math.max(0,Math.floor(t)):1/0}setMaxStackSize(e){Number.isFinite(e)?(this.maxStackSize=Math.max(0,Math.floor(e)),this.trimHistoryToMax(this.undoHistory),this.trimHistoryToMax(this.redoHistory)):this.maxStackSize=1/0}trimHistoryToMax(e){if(Number.isFinite(this.maxStackSize))for(;e.length>this.maxStackSize;)e.shift()}pushUndoEntry(e){this.maxStackSize!==0&&(this.undoHistory.push(e),this.trimHistoryToMax(this.undoHistory))}pushRedoEntry(e){this.maxStackSize!==0&&(this.redoHistory.push(e),this.trimHistoryToMax(this.redoHistory))}cloneRecursively(e){return Array.isArray(e)?e.map(e=>this.cloneRecursively(e)):typeof e==`object`&&e?F({},e):e}cloneCoordinates(e){return this.cloneCoordinatesFunction(e)}cloneEntry(e){return{featureCoordinates:this.cloneCoordinates(e.featureCoordinates),currentCoordinate:e.currentCoordinate}}clear(){this.undoHistory=[],this.redoHistory=[]}undoSize(){return this.undoHistory.length}redoSize(){return this.redoHistory.length}recordSnapshot(e){this.pushUndoEntry(this.cloneEntry(e)),this.redoHistory=[]}beginUndo(){let e=this.undoHistory.pop();if(!e)return;let t=this.cloneEntry(e);this.pushRedoEntry(t);let n=this.undoHistory[this.undoHistory.length-1];return{undoneEntry:t,previousEntry:n?this.cloneEntry(n):void 0}}takeRedo(){let e=this.redoHistory.pop();if(e)return this.cloneEntry(e)}commitRedo(e){this.pushUndoEntry(this.cloneEntry(e))}},ln={cancel:`Escape`,finish:`Enter`},un={start:`crosshair`,close:`pointer`,dragStart:`grabbing`,dragEnd:`crosshair`},dn=class extends V{constructor(e){super(e,!0),this.mode=`linestring`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=ln,this.snapping=void 0,this.cursors=un,this.mouseMove=!1,this.insertCoordinates=void 0,this.lastCommittedCoordinates=void 0,this.snappedPointId=void 0,this.lastMouseMoveEvent=void 0,this.showCoordinatePoints=!1,this.finishOnNthCoordinate=void 0,this.editable=!1,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0,this.editedInsertIndex=void 0,this.editedPointId=void 0,this.coordinateSnapping=void 0,this.insertPoint=void 0,this.lineSnapping=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.closingPoints=void 0,this.coordinatePoints=void 0,this.undoRedo=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),e?.finishOnNthCoordinate!==void 0&&Number.isInteger(e.finishOnNthCoordinate)&&e.finishOnNthCoordinate>1&&(this.finishOnNthCoordinate=Math.floor(e.finishOnNthCoordinate)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.snapping&&(this.snapping=e.snapping),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.insertCoordinates&&(this.insertCoordinates=e.insertCoordinates),e&&e.editable&&(this.editable=e.editable),e?.showCoordinatePoints!==void 0){if(this.showCoordinatePoints=e.showCoordinatePoints,this.coordinatePoints&&!0===e.showCoordinatePoints)this.store.copyAllWhere(e=>e.mode===this.mode).forEach(e=>{this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})});else if(this.coordinatePoints&&!1===this.showCoordinatePoints){let e=this.store.copyAllWhere(e=>e.mode===this.mode&&!!e[L.COORDINATE_POINT_IDS]?.length);this.coordinatePoints.deletePointsByFeatureIds(e.map(e=>e.id))}}}shouldFinishOnCommit(e){return!!this.finishOnNthCoordinate&&Math.max(0,e.coordinates.length-1)>=this.finishOnNthCoordinate}updateSnappedCoordinate(e){let t=this.snapCoordinate(e);return t?(this.snappedPointId?this.mutateFeature.updateGuidancePoints([{featureId:this.snappedPointId,coordinate:t}]):this.snappedPointId=this.mutateFeature.createGuidancePoint({coordinate:t,type:L.SNAPPING_POINT}),e.lng=t[0],e.lat=t[1]):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),t}close(){if(this.currentId===void 0)return;let e=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Finish,action:We},coordinateMutations:[{type:Ot,index:-1}],propertyMutations:{[L.CURRENTLY_DRAWING]:void 0}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates});let t=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),this.closingPoints.delete(),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.onFinish(t,{mode:this.mode,action:We})}generateInsertCoordinates(e,t){if(!this.insertCoordinates||!this.lastCommittedCoordinates)throw Error(`Not able to insert coordinates`);if(this.insertCoordinates.strategy!==`amount`)throw Error(`Strategy does not exist`);let n=tt(e,t)/(this.insertCoordinates.value+1),r=[];return this.projection===`globe`?r=this.insertPoint.generateInsertionGeodesicCoordinates(e,t,n):this.projection===`web-mercator`&&(r=this.insertPoint.generateInsertionCoordinates(e,t,n)),r}createLine(e){let t=this.mutateFeature.createLineString({coordinates:[e,e],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.lastCommittedCoordinates=t.geometry.coordinates,this.currentId=t.id,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.setDrawing(),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}firstUpdateToLine(e){if(!this.currentId)return;this.setCursor(this.cursors.close);let t=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Commit},coordinateMutations:[{type:Et,index:-1,coordinate:e}]});t&&(this.closingPoints.create(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates}),this.lastCommittedCoordinates=t.geometry.coordinates,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.shouldFinishOnCommit(t.geometry)&&this.close())}updateToLine(e,t){if(!this.currentId)return;let{isClosing:n}=this.closingPoints.isLineStringClosingPoint(e);if(n)return void this.close();this.setCursor(this.cursors.close);let r=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Commit},coordinateMutations:[{type:Et,index:-1,coordinate:t}]});r&&(this.closingPoints.update(r.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:r.geometry.coordinates}),this.lastCommittedCoordinates=r.geometry.coordinates,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.shouldFinishOnCommit(r.geometry)&&this.close())}undoSize(){return this.undoRedo.undoSize()}clearHistory(){this.undoRedo.clear()}pushHistorySnapshot(e,t){let n=this.readFeature.getGeometry(e);this.undoRedo.recordSnapshot({featureCoordinates:n.coordinates,currentCoordinate:t})}updateSnappedGuidancePointFromLastMouseMove(){this.snapping&&this.lastMouseMoveEvent?this.updateSnappedCoordinate(this.lastMouseMoveEvent):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}syncClosingPoints(e){this.currentCoordinate>=2?this.closingPoints.ids.length?this.closingPoints.update(e):this.closingPoints.create(e):this.closingPoints.delete()}undo(){if(this.state!==`drawing`||!this.currentId)return;let e=this.undoRedo.beginUndo();if(!e)return;let{previousEntry:t}=e;if(!t){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.lastCommittedCoordinates=void 0,this.closingPoints.delete(),this.state===`drawing`&&this.setStarted(),this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.updateSnappedGuidancePointFromLastMouseMove();return}let n=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:t.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0},context:{updateType:I.Commit}});n&&(this.currentCoordinate=t.currentCoordinate,this.lastCommittedCoordinates=n.geometry.coordinates,this.syncClosingPoints(n.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:n.geometry.coordinates}),this.updateSnappedGuidancePointFromLastMouseMove())}redoSize(){return this.undoRedo.redoSize()}redo(){let e=this.undoRedo.takeRedo();if(e){if(this.currentId){let t=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:e.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0},context:{updateType:I.Commit}});if(!t)return;this.currentCoordinate=e.currentCoordinate,this.lastCommittedCoordinates=t.geometry.coordinates,this.syncClosingPoints(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}else{let{id:t,geometry:n}=this.mutateFeature.createLineString({coordinates:e.featureCoordinates,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=t,this.currentCoordinate=e.currentCoordinate,this.lastCommittedCoordinates=n.coordinates,this.state===`started`&&this.setDrawing(),this.syncClosingPoints(n.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:n.coordinates})}this.undoRedo.commitRedo(e),this.updateSnappedGuidancePointFromLastMouseMove()}}registerBehaviors(e){this.insertPoint=new Xt(e),this.clickBoundingBox=new zt(e),this.pixelDistance=new Bt(e),this.lineSnapping=new nn(e,this.pixelDistance,this.clickBoundingBox),this.coordinateSnapping=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.undoRedo=new cn({maxStackSize:e.undoRedoMaxStackSize})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){this.mouseMove=!0,this.setCursor(this.cursors.start),this.lastMouseMoveEvent=e;let t=this.updateSnappedCoordinate(e)||[e.lng,e.lat];if(this.currentId===void 0||this.currentCoordinate===0)return;let{isClosing:n}=this.closingPoints.isLineStringClosingPoint(e);n&&this.setCursor(this.cursors.close);let r=[{type:Dt,index:-1,coordinate:t}];if(this.insertCoordinates){let e=this.getInsertCoordinates(t);e&&(r={type:kt,coordinates:e})}let i=this.mutateFeature.updateLineString({coordinateMutations:r,featureId:this.currentId,context:{updateType:I.Provisional}});i&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:i.geometry.coordinates})}getInsertCoordinates(e){if(!this.lastCommittedCoordinates)return;let t=this.lastCommittedCoordinates[this.lastCommittedCoordinates.length-1];if(W(t,e))return;let n=this.generateInsertCoordinates(t,e);return[...this.lastCommittedCoordinates.slice(0,-1),...n,e]}onRightClick(e){if(!this.editable||this.state!==`started`)return;let{featureId:t,featureCoordinateIndex:n}=this.coordinateSnapping.getSnappable(e,e=>this.lineStringFilter(e));if(!t||n===void 0)return;let r=this.readFeature.getGeometry(t),i;if(r.type!==`LineString`||(i=r.coordinates,i.length<=2))return;let a=this.mutateFeature.updateLineString({featureId:t,coordinateMutations:[{type:Ot,index:n}],context:{updateType:I.Finish,action:Ge}});a&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:a.geometry.coordinates}),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.closingPoints.delete(),this.onFinish(t,{mode:this.mode,action:Ke})}onLeftClick(e){this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0);let t=this.snapCoordinate(e)||[e.lng,e.lat];this.currentCoordinate===0?this.createLine(t):this.currentCoordinate===1&&this.currentId?this.firstUpdateToLine(t):this.currentId&&this.updateToLine(e,t)}onClick(e){this.currentId===void 0||this.readFeature.hasFeature(this.currentId)||this.cleanUp(),(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,e.button===`right`?this.onRightClick(e):e.button===`left`&&this.onLeftClick(e))}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel&&this.cleanUp(),e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e)||!this.editable)return;let n;if(this.state===`started`){let t=this.lineSnapping.getSnappable(e,e=>this.lineStringFilter(e));t.coordinate&&(this.editedSnapType=`line`,this.editedFeatureCoordinateIndex=t.featureCoordinateIndex,this.editedFeatureId=t.featureId,n=t.coordinate);let r=this.coordinateSnapping.getSnappable(e,e=>this.lineStringFilter(e));r.coordinate&&(this.editedSnapType=`coordinate`,this.editedFeatureCoordinateIndex=r.featureCoordinateIndex,this.editedFeatureId=r.featureId,n=r.coordinate)}this.editedFeatureId&&n&&(this.editedPointId||=this.mutateFeature.createGuidancePoint({coordinate:n,type:L.EDITED}),this.setCursor(this.cursors.dragStart),t(!1))}onDrag(e,t){if(this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.editedFeatureCoordinateIndex!==void 0){if(this.editedSnapType===`coordinate`||this.editedSnapType===`line`&&this.editedInsertIndex!==void 0){let t=this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional},coordinateMutations:[{type:Dt,index:this.editedFeatureCoordinateIndex,coordinate:[e.lng,e.lat]}]});if(!t)return;this.showCoordinatePoints&&(this.editedInsertIndex===void 0?this.coordinatePoints.updateOneAtIndex(this.editedFeatureId,this.editedFeatureCoordinateIndex,[e.lng,e.lat]):this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:t.geometry.coordinates}))}else if(this.editedSnapType===`line`&&this.editedInsertIndex===void 0){this.editedInsertIndex=this.editedFeatureCoordinateIndex+1;let e=this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:e.geometry.coordinates}),this.editedFeatureCoordinateIndex++}this.snapping&&this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0),this.editedPointId&&this.mutateFeature.updateGuidancePoints([{featureId:this.editedPointId,coordinate:[e.lng,e.lat]}]),this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional},propertyMutations:{[L.EDITED]:!0}})}}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||(this.setCursor(this.cursors.dragEnd),!this.mutateFeature.updateLineString({featureId:this.editedFeatureId,propertyMutations:{[L.EDITED]:!1},context:{updateType:I.Finish,action:Ge}})))return;let n=this.editedFeatureId;t(!0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.closingPoints.delete(),this.onFinish(n,{mode:this.mode,action:Ge})}cleanUp(){let e=this.currentId,t=this.snappedPointId;this.snappedPointId=void 0,this.currentId=void 0,this.currentCoordinate=0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),e&&this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t),this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.type===`Feature`&&e.geometry.type===`LineString`&&e.properties.mode===this.mode)return t.lineStringColor=this.getHexColorStylingValue(this.styles.lineStringColor,t.lineStringColor,e),t.lineStringOpacity=this.getNumericStylingValue(this.styles.lineStringOpacity,t.lineStringOpacity===void 0?1:t.lineStringOpacity,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.lineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t;if(e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode){let n=e.properties[L.COORDINATE_POINT],r=e.properties[L.CLOSING_POINT]?`closingPoint`:e.properties[L.SNAPPING_POINT]?`snappingPoint`:n?`coordinatePoint`:void 0;if(!r)return t;let i={closingPoint:{width:this.styles.closingPointWidth,color:this.styles.closingPointColor,opacity:this.styles.closingPointOpacity,outlineColor:this.styles.closingPointOutlineColor,outlineWidth:this.styles.closingPointOutlineWidth,outlineOpacity:this.styles.closingPointOutlineOpacity},snappingPoint:{width:this.styles.snappingPointWidth,color:this.styles.snappingPointColor,opacity:this.styles.snappingPointOpacity,outlineColor:this.styles.snappingPointOutlineColor,outlineWidth:this.styles.snappingPointOutlineWidth,outlineOpacity:this.styles.snappingPointOutlineOpacity},coordinatePoint:{width:this.styles.coordinatePointWidth,color:this.styles.coordinatePointColor,opacity:this.styles.coordinatePointOpacity,outlineColor:this.styles.coordinatePointOutlineColor,outlineWidth:this.styles.coordinatePointOutlineWidth,outlineOpacity:this.styles.coordinatePointOutlineOpacity}};return t.pointWidth=this.getNumericStylingValue(i[r].width,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(i[r].opacity,1,e),t.pointColor=this.getHexColorStylingValue(i[r].color,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(i[r].outlineColor,`#ffffff`,e),t.pointOutlineWidth=this.getNumericStylingValue(i[r].outlineWidth,2,e),t.pointOutlineOpacity=this.getNumericStylingValue(i[r].outlineOpacity,1,e),t.zIndex=n?20:50,t}return t}validateFeature(e){return this.validateModeFeature(e,e=>Zt(e,this.coordinatePrecision))}lineStringFilter(e){return!!(e.geometry.type===`LineString`&&e.properties&&e.properties.mode===this.mode)}snapCoordinate(e){var t,n,r;let i;if((t=this.snapping)!=null&&t.toLine){let t;t=this.currentId?this.lineSnapping.getSnappableCoordinate(e,this.currentId):this.lineSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((n=this.snapping)!=null&&n.toCoordinate){let t;t=this.currentId?this.coordinateSnapping.getSnappableCoordinate(e,this.currentId):this.coordinateSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((r=this.snapping)!=null&&r.toCustom){let t=this.snapping.toCustom(e,{currentCoordinate:this.currentCoordinate,currentId:this.currentId,getCurrentGeometrySnapshot:this.currentId?()=>this.readFeature.getGeometry(this.currentId):()=>null,project:this.project,unproject:this.unproject});t&&(i=t)}return i}afterFeatureUpdated(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates}),this.editedFeatureId===e.id&&this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0),this.snappedPointId&&this.lastMouseMoveEvent&&this.updateSnappedCoordinate(this.lastMouseMoveEvent),this.currentId===e.id&&(this.closingPoints.delete(),this.currentCoordinate=0,this.currentId=void 0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted())}afterFeatureAdded(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})}},fn=`Feature is not a Point`,pn=`Feature has invalid coordinates`,mn=`Feature has coordinates with excessive precision`;function hn(e,t){return e.geometry.type===`Point`?ht(e.geometry.coordinates)?mt(e.geometry.coordinates,t)?{valid:!0}:{valid:!1,reason:mn}:{valid:!1,reason:pn}:{valid:!1,reason:fn}}var gn=class extends Ct{constructor(e,t,n){super(e),this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pixelDistance=t,this.clickBoundingBox=n}getNearestPointFeature(e){let t=this.clickBoundingBox.create(e),n=this.store.search(t),r,i=1/0;for(let t=0;t<n.length;t++){let a=n[t];if(a.geometry.type!==`Point`||a.properties.mode!==this.mode)continue;let o=this.pixelDistance.measure(e,a.geometry.coordinates);o>i||o>this.pointerDistance||(i=o,r=a)}return r}},_n={create:`crosshair`,dragStart:`grabbing`,dragEnd:`crosshair`},vn=class extends V{constructor(e){super(e,!0),this.mode=`point`,this.cursors=_n,this.editable=!1,this.editedFeatureId=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pointSearch=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.editable&&(this.editable=e.editable)}start(){this.setStarted(),this.setCursor(this.cursors.create)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onMouseMove(){}onKeyDown(){}onKeyUp(){}cleanUp(){this.editedFeatureId=void 0}onDragStart(e,t){this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&(this.editable&&(this.editedFeatureId=this.pointSearch.getNearestPointFeature(e)?.id),this.editedFeatureId&&(this.setCursor(this.cursors.dragStart),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.mutateFeature.updatePoint({featureId:this.editedFeatureId,coordinateMutations:{type:kt,coordinates:[e.lng,e.lat]},propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}})}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||!this.mutateFeature.updatePoint({featureId:this.editedFeatureId,propertyMutations:{mode:this.mode,[L.EDITED]:!1},context:{updateType:I.Finish,action:`edit`}}))return;let n=this.editedFeatureId;this.setCursor(this.cursors.dragEnd),this.editedFeatureId=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:We})}registerBehaviors(e){this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.pointSearch=new gn(e,this.pixelDistance,this.clickBoundingBox),this.mutateFeature=new At(e,{validate:this.validate})}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode){let n=!!(e.id&&this.editedFeatureId===e.id);t.pointWidth=this.getNumericStylingValue(n?this.styles.editedPointWidth:this.styles.pointWidth,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(this.styles.pointOpacity,t.pointOpacity===void 0?1:t.pointOpacity,e),t.pointColor=this.getHexColorStylingValue(n?this.styles.editedPointColor:this.styles.pointColor,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(n?this.styles.editedPointOutlineColor:this.styles.pointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.pointOutlineOpacity,t.pointOutlineOpacity===void 0?1:t.pointOutlineOpacity,e),t.pointOutlineWidth=this.getNumericStylingValue(n?this.styles.editedPointOutlineWidth:this.styles.pointOutlineWidth,2,e),t.zIndex=30}return t}validateFeature(e){return this.validateModeFeature(e,e=>hn(e,this.coordinatePrecision))}onLeftClick(e){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode},context:{updateType:I.Finish,action:We}});t&&this.onFinish(t.id,{mode:this.mode,action:We})}onRightClick(e){if(!this.editable)return;let t=this.pointSearch.getNearestPointFeature(e);t&&this.mutateFeature.deleteFeatureIfPresent(t.id)}afterFeatureUpdated(e){this.editedFeatureId===e.id&&(this.editedFeatureId=void 0,this.setCursor(this.cursors.create))}},yn={cancel:`Escape`,finish:`Enter`},bn={start:`crosshair`,close:`pointer`,dragStart:`grabbing`,dragEnd:`crosshair`},xn=class extends V{constructor(e){super(e,!0),this.mode=`polygon`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=yn,this.cursors=bn,this.mouseMove=!1,this.showCoordinatePoints=!1,this.lastMouseMoveEvent=void 0,this.snapping=void 0,this.snappedPointId=void 0,this.editable=!1,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0,this.editedInsertIndex=void 0,this.editedPointId=void 0,this.coordinatePoints=void 0,this.lineSnapping=void 0,this.coordinateSnapping=void 0,this.pixelDistance=void 0,this.closingPoints=void 0,this.clickBoundingBox=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.undoRedo=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.snapping&&(this.snapping=e.snapping),e?.editable!==void 0&&(this.editable=e.editable),e?.pointerEvents!==void 0&&(this.pointerEvents=e.pointerEvents),e?.showCoordinatePoints!==void 0){if(this.showCoordinatePoints=e.showCoordinatePoints,this.coordinatePoints&&!0===e.showCoordinatePoints)this.store.copyAllWhere(e=>e.mode===this.mode).filter(e=>e.geometry.type===`Polygon`).forEach(e=>{this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})});else if(this.coordinatePoints&&!1===this.showCoordinatePoints){let e=this.store.copyAllWhere(e=>e.mode===this.mode&&!!e[L.COORDINATE_POINT_IDS]).filter(e=>e.geometry.type===`Polygon`);this.coordinatePoints.deletePointsByFeatureIds(e.map(e=>e.id))}}}close(){if(this.currentId===void 0||this.readFeature.getCoordinates(this.currentId).length<5)return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Ot,index:-2}],propertyMutations:{[L.CURRENTLY_DRAWING]:void 0,[L.COMMITTED_COORDINATE_COUNT]:void 0,[L.PROVISIONAL_COORDINATE_COUNT]:void 0},context:{updateType:I.Finish,action:We}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.state===`drawing`&&this.setStarted(),this.editedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),void 0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.closingPoints.delete();let t=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.undoRedo.clear(),this.onFinish(t,{mode:this.mode,action:We})}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.clickBoundingBox=new zt(e),this.pixelDistance=new Bt(e),this.lineSnapping=new nn(e,this.pixelDistance,this.clickBoundingBox),this.coordinateSnapping=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.undoRedo=new cn({maxStackSize:e.undoRedoMaxStackSize})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}updateSnappedCoordinate(e){let t=this.snapCoordinate(e);t?(this.snappedPointId?this.mutateFeature.updateGuidancePoints([{featureId:this.snappedPointId,coordinate:t}]):this.snappedPointId=this.mutateFeature.createGuidancePoint({coordinate:t,type:L.SNAPPING_POINT}),e.lng=t[0],e.lat=t[1]):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}undoSize(){return this.undoRedo.undoSize()}clearHistory(){this.undoRedo.clear()}pushHistorySnapshot(e,t){let n=this.readFeature.getGeometry(e);this.undoRedo.recordSnapshot({featureCoordinates:n.coordinates,currentCoordinate:t})}updateSnappedGuidancePointFromLastMouseMove(){this.snapping&&this.lastMouseMoveEvent?this.updateSnappedCoordinate(this.lastMouseMoveEvent):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}syncClosingPoints(e){this.currentCoordinate>=3?this.closingPoints.ids.length?this.closingPoints.update(e):this.closingPoints.create(e):this.closingPoints.delete()}undo(){if(this.state!==`drawing`||!this.currentId)return;let e=this.undoRedo.beginUndo();if(!e)return;let{previousEntry:t}=e;if(!t){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.closingPoints.delete(),this.state===`drawing`&&this.setStarted(),this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.updateSnappedGuidancePointFromLastMouseMove();return}let n=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:t.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:t.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:t.currentCoordinate},context:{updateType:I.Commit}});n&&(this.currentCoordinate=t.currentCoordinate,this.syncClosingPoints(n.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:n.geometry.coordinates}),this.updateSnappedGuidancePointFromLastMouseMove())}redoSize(){return this.undoRedo.redoSize()}redo(){let e=this.undoRedo.takeRedo();if(e){if(this.currentId){let t=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:e.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:e.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:e.currentCoordinate},context:{updateType:I.Commit}});if(!t)return;this.currentCoordinate=e.currentCoordinate,this.syncClosingPoints(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}else{let t=this.undoRedo.cloneCoordinates(e.featureCoordinates)[0],{id:n,geometry:r}=this.mutateFeature.createPolygon({coordinates:t,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:e.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:e.currentCoordinate}});this.currentId=n,this.currentCoordinate=e.currentCoordinate,this.state===`started`&&this.setDrawing(),this.syncClosingPoints(r.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:n,featureCoordinates:r.coordinates})}this.undoRedo.commitRedo(e),this.updateSnappedGuidancePointFromLastMouseMove()}}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.lastMouseMoveEvent=e,this.updateSnappedCoordinate(e),this.currentId===void 0||this.currentCoordinate===0)return;let t=this.readFeature.getCoordinate(this.currentId,0),n=[e.lng,e.lat],r;if(this.currentCoordinate===1)r=[{type:Dt,index:1,coordinate:n},{type:Dt,index:2,coordinate:[e.lng,e.lat]}];else if(this.currentCoordinate===2)r=[{type:Dt,index:2,coordinate:n}];else{let{isClosing:i,isPreviousClosing:a}=this.closingPoints.isPolygonClosingPoints(e);a||i?(this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.setCursor(this.cursors.close),r=[{type:Dt,index:-1,coordinate:t},{type:Dt,index:-2,coordinate:t}]):r=[{type:Dt,index:-2,coordinate:n},{type:Dt,index:-1,coordinate:t}]}let i=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:r,propertyMutations:{[L.PROVISIONAL_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Provisional}});i&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:i.geometry.coordinates})}snapCoordinate(e){var t,n,r;let i;if((t=this.snapping)!=null&&t.toLine){let t;t=this.currentId?this.lineSnapping.getSnappableCoordinate(e,this.currentId):this.lineSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((n=this.snapping)!=null&&n.toCoordinate){let t;t=this.currentId?this.coordinateSnapping.getSnappableCoordinate(e,this.currentId):this.coordinateSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((r=this.snapping)!=null&&r.toCustom){let t=this.snapping.toCustom(e,{currentCoordinate:this.currentCoordinate,currentId:this.currentId,getCurrentGeometrySnapshot:this.currentId?()=>this.readFeature.getGeometry(this.currentId):()=>null,project:this.project,unproject:this.unproject});t&&(i=t)}return i}polygonFilter(e){return!!(e.geometry.type===`Polygon`&&e.properties&&e.properties.mode===this.mode)}onRightClick(e){if(!this.editable||this.state!==`started`)return;let{featureId:t,featureCoordinateIndex:n}=this.coordinateSnapping.getSnappable(e,e=>this.polygonFilter(e));if(!t||n===void 0)return;let r=this.readFeature.getGeometry(t);if(r.type!==`Polygon`)return;let i=r.coordinates[0];if(i.length<=4)return;let a;a=n===0||n===i.length-1?[{type:Ot,index:0},{type:Ot,index:-1},{type:Et,index:-1,coordinate:i[1]}]:[{type:Ot,index:n}];let o=this.mutateFeature.updatePolygon({featureId:t,coordinateMutations:a,context:{updateType:I.Finish,action:Ge}});if(o){if(this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:o.geometry.coordinates}),this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0,this.snapping)){let t=this.snapCoordinate(e);if(t){let[e]=this.mutateFeature.createGuidancePoints({type:L.SNAPPING_POINT,coordinates:[t]});this.snappedPointId=e}}this.onFinish(t,{mode:this.mode,action:Ge})}}onLeftClick(e){this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0);let t=this.snapCoordinate(e)||[e.lng,e.lat];if(this.currentCoordinate===0){let{id:e,geometry:n}=this.mutateFeature.createPolygon({coordinates:[t,t,t,t],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1,[L.PROVISIONAL_COORDINATE_COUNT]:this.currentCoordinate+1}});this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e,featureCoordinates:n.coordinates}),this.currentId=e,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.setDrawing()}else if(this.currentCoordinate===1&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:0}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:t},{type:Dt,index:2,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate)}else if(this.currentCoordinate===2&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:1}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:2,coordinate:t},{type:Et,index:2,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate===2&&this.closingPoints.create(e.geometry.coordinates),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate)}else if(this.currentId){let{isClosing:n,isPreviousClosing:r}=this.closingPoints.isPolygonClosingPoints(e);if(r||n)this.close();else{if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:this.currentCoordinate-1}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Tt,index:-1,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.closingPoints.ids.length&&this.closingPoints.update(e.geometry.coordinates)}}}onClick(e){this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e)||!this.editable)return;let n;if(this.state===`started`){let t=this.lineSnapping.getSnappable(e,e=>this.polygonFilter(e));t.coordinate&&(this.editedSnapType=`line`,this.editedFeatureCoordinateIndex=t.featureCoordinateIndex,this.editedFeatureId=t.featureId,n=t.coordinate);let r=this.coordinateSnapping.getSnappable(e,e=>this.polygonFilter(e));r.coordinate&&(this.editedSnapType=`coordinate`,this.editedFeatureCoordinateIndex=r.featureCoordinateIndex,this.editedFeatureId=r.featureId,n=r.coordinate)}this.editedFeatureId&&n&&(this.editedPointId||=this.mutateFeature.createGuidancePoint({coordinate:n,type:L.EDITED}),this.setCursor(this.cursors.dragStart),t(!1))}onDrag(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDrag,e)||this.editedFeatureId===void 0||this.editedFeatureCoordinateIndex===void 0)return;let n=this.readFeature.getGeometry(this.editedFeatureId),r=[e.lng,e.lat],i=[];if(this.editedSnapType===`coordinate`||this.editedSnapType===`line`&&this.editedInsertIndex!==void 0?i=this.editedFeatureCoordinateIndex===0||this.editedFeatureCoordinateIndex===n.coordinates[0].length-1?[{type:Dt,index:0,coordinate:r},{type:Dt,index:-1,coordinate:r}]:[{type:Dt,index:this.editedFeatureCoordinateIndex,coordinate:r}]:this.editedSnapType===`line`&&this.editedInsertIndex===void 0&&(this.editedInsertIndex=this.editedFeatureCoordinateIndex+1,i=[{type:Tt,index:this.editedInsertIndex,coordinate:r}],this.editedFeatureCoordinateIndex++),i.length===0)return;let a=this.mutateFeature.updatePolygon({featureId:this.editedFeatureId,coordinateMutations:i,propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}});a&&(this.showCoordinatePoints&&(this.editedInsertIndex?this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:a.geometry.coordinates}):this.coordinatePoints.updateOneAtIndex(this.editedFeatureId,this.editedFeatureCoordinateIndex,a.geometry.coordinates[0][this.editedFeatureCoordinateIndex])),this.snapping&&this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0),this.editedPointId&&this.mutateFeature.updateGuidancePoints([{featureId:this.editedPointId,coordinate:r}]))}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||(this.setCursor(this.cursors.dragEnd),!this.mutateFeature.updatePolygon({featureId:this.editedFeatureId,propertyMutations:{[L.EDITED]:!1},context:{updateType:I.Finish,action:Ge}})))return;let n=this.editedFeatureId;this.editedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),void 0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:Ge})}cleanUp(){let e=this.currentId,t=this.snappedPointId,n=this.editedPointId;this.currentId=void 0,this.snappedPointId=void 0,this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0,this.currentCoordinate=0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),e&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(n),this.mutateFeature.deleteFeatureIfPresent(t),this.closingPoints.ids.length&&this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.properties.mode===this.mode){if(e.geometry.type===`Polygon`)return t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.zIndex=Xe,t;if(e.geometry.type===`Point`){let n=e.properties[L.EDITED],r=e.properties[L.COORDINATE_POINT],i=n?`editedPoint`:e.properties[L.CLOSING_POINT]?`closingPoint`:e.properties[L.SNAPPING_POINT]?`snappingPoint`:r?`coordinatePoint`:void 0;if(!i)return t;let a={editedPoint:{width:this.styles.editedPointOutlineWidth,color:this.styles.editedPointColor,opacity:this.styles.editedPointOpacity,outlineColor:this.styles.editedPointOutlineColor,outlineWidth:this.styles.editedPointOutlineWidth,outlineOpacity:this.styles.editedPointOutlineOpacity},closingPoint:{width:this.styles.closingPointWidth,color:this.styles.closingPointColor,opacity:this.styles.closingPointOpacity,outlineColor:this.styles.closingPointOutlineColor,outlineWidth:this.styles.closingPointOutlineWidth,outlineOpacity:this.styles.closingPointOutlineOpacity},snappingPoint:{width:this.styles.snappingPointWidth,color:this.styles.snappingPointColor,opacity:this.styles.snappingPointOpacity,outlineColor:this.styles.snappingPointOutlineColor,outlineWidth:this.styles.snappingPointOutlineWidth,outlineOpacity:this.styles.snappingPointOutlineOpacity},coordinatePoint:{width:this.styles.coordinatePointWidth,color:this.styles.coordinatePointColor,opacity:this.styles.coordinatePointOpacity,outlineColor:this.styles.coordinatePointOutlineColor,outlineWidth:this.styles.coordinatePointOutlineWidth,outlineOpacity:this.styles.coordinatePointOutlineOpacity}};return t.pointWidth=this.getNumericStylingValue(a[i].width,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(a[i].opacity,1,e),t.pointColor=this.getHexColorStylingValue(a[i].color,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(a[i].outlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(a[i].outlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(a[i].outlineWidth,2,e),t.zIndex=n?40:r?20:30,t}}return t}afterFeatureAdded(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})}afterFeatureUpdated(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates}),this.editedFeatureId===e.id&&this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0),this.snappedPointId&&this.lastMouseMoveEvent&&this.updateSnappedCoordinate(this.lastMouseMoveEvent),this.currentId===e.id&&(this.currentCoordinate=0,this.currentId=void 0,this.undoRedo.clear(),this.closingPoints.delete(),this.state===`drawing`&&this.setStarted())}validateFeature(e){return this.validateModeFeature(e,e=>xt(e,this.coordinatePrecision))}},Sn={cancel:`Escape`,finish:`Enter`},Cn={start:`crosshair`},wn=class extends V{constructor(e){super(e,!0),this.mode=`rectangle`,this.startPosition=void 0,this.endPosition=void 0,this.currentRectangleId=void 0,this.keyEvents=Sn,this.cursors=Cn,this.drawInteraction=`click-move`,this.drawType=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction)}updateRectangle(e,t){if(!this.startPosition||!this.currentRectangleId)return;let n=t===I.Finish;return this.mutateFeature.updatePolygon({featureId:this.currentRectangleId,coordinateMutations:[{type:Dt,index:1,coordinate:[e[0],this.startPosition[1]]},{type:Dt,index:2,coordinate:e},{type:Dt,index:3,coordinate:[this.startPosition[0],e[1]]}],propertyMutations:n?{[L.CURRENTLY_DRAWING]:void 0}:{},context:n?{updateType:t,action:We}:{updateType:t}})}close(){if(!this.currentRectangleId||!this.endPosition||!this.updateRectangle(this.endPosition,I.Finish))return;let e=this.currentRectangleId;this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}beginDrawing(e,t=`click`){this.startPosition=[e.lng,e.lat],this.endPosition=[e.lng,e.lat],this.currentRectangleId=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}}).id,this.drawType=t,this.setDrawing()}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.startPosition?(this.endPosition=[e.lng,e.lat],this.close()):this.beginDrawing(e))}onMouseMove(e){this.endPosition=[e.lng,e.lat],this.updateRectangle(this.endPosition,I.Provisional)}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){this.state!==`drawing`&&this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.updateRectangle(this.endPosition,I.Provisional))}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.close(),t(!0))}cleanUp(){let e=this.currentRectangleId;this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentRectangleId===e.id&&(this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}},Tn=class extends V{constructor(e){if(!e.modeName)throw Error(`Mode name is required for TerraDrawRenderMode`);super(e,!0),this.type=Qe.Render,this.mode=`render`,this.updateOptions(e)}updateOptions(e){super.updateOptions(e)}registerBehaviors(e){this.mode=e.mode}start(){this.setStarted()}stop(){this.setStopped()}onKeyUp(){}onKeyDown(){}onClick(){}onDragStart(){}onDrag(){}onDragEnd(){}onMouseMove(){}cleanUp(){}styleFeature(e){return{pointColor:this.getHexColorStylingValue(this.styles.pointColor,`#3f97e0`,e),pointWidth:this.getNumericStylingValue(this.styles.pointWidth,6,e),pointOpacity:this.getNumericStylingValue(this.styles.pointOpacity,1,e),pointOutlineColor:this.getHexColorStylingValue(this.styles.pointOutlineColor,`#ffffff`,e),pointOutlineWidth:this.getNumericStylingValue(this.styles.pointOutlineWidth,0,e),pointOutlineOpacity:this.getNumericStylingValue(this.styles.pointOutlineOpacity,1,e),polygonFillColor:this.getHexColorStylingValue(this.styles.polygonFillColor,`#3f97e0`,e),polygonFillOpacity:this.getNumericStylingValue(this.styles.polygonFillOpacity,.3,e),polygonOutlineColor:this.getHexColorStylingValue(this.styles.polygonOutlineColor,`#3f97e0`,e),polygonOutlineWidth:this.getNumericStylingValue(this.styles.polygonOutlineWidth,4,e),lineStringWidth:this.getNumericStylingValue(this.styles.lineStringWidth,4,e),lineStringColor:this.getHexColorStylingValue(this.styles.lineStringColor,`#3f97e0`,e),lineStringOpacity:this.getNumericStylingValue(this.styles.lineStringOpacity,1,e),zIndex:this.getNumericStylingValue(this.styles.zIndex,0,e)}}validateFeature(e){let t=super.validateFeature(e);if(t.valid){let t=e,n=hn(t,this.coordinatePrecision).valid||xt(t,this.coordinatePrecision).valid||Zt(t,this.coordinatePrecision).valid;return n?{valid:!0}:{valid:n,reason:`Feature is not a valid Point, Polygon or LineString feature`}}return t}};function En(e,t){let n=e,r=t,i=rt(n[1]),a=rt(r[1]),o=rt(r[0]-n[0]);o>Math.PI&&(o-=2*Math.PI),o<-Math.PI&&(o+=2*Math.PI);let s=Math.log(Math.tan(a/2+Math.PI/4)/Math.tan(i/2+Math.PI/4)),c=(at(Math.atan2(o,s))+360)%360;return c>180?-(360-c):c}function Dn(e,t,n){let r=t;t<0&&(r=-Math.abs(r));let i=r/nt,a=e[0]*Math.PI/180,o=rt(e[1]),s=rt(n),c=i*Math.cos(s),l=o+c;Math.abs(l)>Math.PI/2&&(l=l>0?Math.PI-l:-Math.PI-l);let u=Math.log(Math.tan(l/2+Math.PI/4)/Math.tan(o/2+Math.PI/4)),d=Math.abs(u)>1e-11?c/u:Math.cos(o),f=[(180*(a+i*Math.sin(s)/d)/Math.PI+540)%360-180,180*l/Math.PI];return f[0]+=f[0]-e[0]>180?-360:e[0]-f[0]>180?360:0,f}function On(e,t,n,r,i){let a=r(e[0],e[1]),o=r(t[0],t[1]),{lng:s,lat:c}=i((a.x+o.x)/2,(a.y+o.y)/2);return[H(s,n),H(c,n)]}function kn(e,t,n){let r=Dn(e,1e3*tt(e,t)/2,En(e,t));return[H(r[0],n),H(r[1],n)]}function An({featureCoords:e,precision:t,unproject:n,project:r,projection:i}){let a=[];for(let o=0;o<e.length-1;o++){let s;if(i===`web-mercator`)s=On(e[o],e[o+1],t,r,n);else{if(i!==`globe`)throw Error(`Invalid projection`);s=kn(e[o],e[o+1],t)}a.push(s)}return a}var jn=class extends Ct{constructor(e,t,n,r,i,a){super(e),this.config=void 0,this.selectionPointBehavior=void 0,this.coordinatePointBehavior=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.pixelDistance=void 0,this._midPoints=[],this.config=e,this.selectionPointBehavior=t,this.coordinatePointBehavior=n,this.mutateFeature=r,this.readFeature=i,this.pixelDistance=a}getMidpointConfig(e){return{featureCoords:e,precision:this.coordinatePrecision,project:this.config.project,unproject:this.config.unproject,projection:this.config.projection}}get ids(){return this._midPoints.concat()}set ids(e){}getNearestMidPoint(e){let t,n=1/0;return this.ids.forEach(r=>{let i=this.readFeature.getGeometry(r),a=this.pixelDistance.measure(e,i.coordinates);a<this.pointerDistance&&a<n&&(n=a,t=r)}),t}insert({featureId:e,midPointId:t}){let n=this.readFeature.getGeometry(t),{midPointFeatureId:r,midPointSegment:i}=this.readFeature.getProperties(t),a=this.readFeature.getGeometry(r),o={featureId:r,coordinateMutations:[{type:Et,index:i,coordinate:n.coordinates}],context:{updateType:I.Commit}},s=null;if(a.type===`Polygon`)s=this.mutateFeature.updatePolygon(o);else{if(a.type!==`LineString`)throw Error(`Midpoints can only be added to polygons or linestrings`);s=this.mutateFeature.updateLineString(o)}if(!s)throw Error(`Failed to insert midpoint coordinate`);let c=s.geometry.coordinates;this.readFeature.getProperties(e)[L.COORDINATE_POINT_IDS]&&this.coordinatePointBehavior.createOrUpdate({featureId:e,featureCoordinates:c}),this.mutateFeature.deleteFeaturesIfPresent([...this.selectionPointBehavior.ids,...this._midPoints]),this.create({featureCoordinates:c,featureId:r}),this.selectionPointBehavior.create({featureCoordinates:c,featureId:e})}create({featureCoordinates:e,featureId:t}){if(!this.readFeature.hasFeature(t))throw Error(`Store does not have feature with this id`);let n=an(e),r=An(this.getMidpointConfig(n));this._midPoints=this.mutateFeature.createGuidancePoints({additionalProperties:e=>({mode:this.mode,midPointSegment:e,midPointFeatureId:t,[Ye.MID_POINT]:!0}),coordinates:r,type:Ye.MID_POINT})}delete(){this._midPoints.length&&(this.mutateFeature.deleteFeaturesIfPresent(this._midPoints),this._midPoints=[])}updateAllInPlace({featureCoordinates:e}){if(this._midPoints.length===0)return;let t=an(e),n=An(this.getMidpointConfig(t));this.mutateFeature.updateGuidancePoints(this._midPoints.map((e,t)=>({featureId:e,coordinate:n[t]})))}updateOneAtIndex(e,t){if(e<0&&(e=this._midPoints.length+e),this._midPoints[e]===void 0)return;let n=an(t),r=An(this.getMidpointConfig(n));this.mutateFeature.updateGuidancePoints([{featureId:this._midPoints[e],coordinate:r[e]}])}},Mn=class extends Ct{constructor(e,t){super(e),this.mutateFeature=void 0,this._selectionPoints=[],this.mutateFeature=t}get ids(){return this._selectionPoints.concat()}set ids(e){}create({featureId:e,featureCoordinates:t}){let n=rn(t);this._selectionPoints=this.mutateFeature.createGuidancePoints({coordinates:n,type:Ye.SELECTION_POINT,additionalProperties:t=>({[Ye.SELECTION_POINT_FEATURE_ID]:e,index:t})})}delete(){this.ids.length&&(this.mutateFeature.deleteFeaturesIfPresent(this.ids),this._selectionPoints=[])}updateAllInPlace({featureCoordinates:e}){if(this._selectionPoints.length===0)return;let t=rn(e);t.length===this._selectionPoints.length&&this.mutateFeature.updateGuidancePoints(this._selectionPoints.map((e,n)=>({featureId:e,coordinate:t[n]})))}updateOneAtIndex(e,t){this._selectionPoints[e]!==void 0&&this.mutateFeature.updateGuidancePoints([{featureId:this._selectionPoints[e],coordinate:t}])}};function Nn(e,t){let n=!1;for(let o=0,s=t.length;o<s;o++){let s=t[o];for(let t=0,o=s.length,c=o-1;t<o;c=t++)(i=s[t])[1]>(r=e)[1]!=(a=s[c])[1]>r[1]&&r[0]<(a[0]-i[0])*(r[1]-i[1])/(a[1]-i[1])+i[0]&&(n=!n)}var r,i,a;return n}var Pn=(e,t,n)=>{let r=e=>e*e,i=(e,t)=>r(e.x-t.x)+r(e.y-t.y);return Math.sqrt(((e,t,n)=>{let r=i(t,n);if(r===0)return i(e,t);let a=((e.x-t.x)*(n.x-t.x)+(e.y-t.y)*(n.y-t.y))/r;return a=Math.max(0,Math.min(1,a)),i(e,{x:t.x+a*(n.x-t.x),y:t.y+a*(n.y-t.y)})})(e,t,n))},Fn=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.createClickBoundingBox=void 0,this.pixelDistance=void 0,this.config=e,this.createClickBoundingBox=t,this.pixelDistance=n}find(e,t){let n,r,i,a=1/0,o=1/0,s=this.createClickBoundingBox.create(e),c=this.store.search(s);for(let s=0;s<c.length;s++){let l=c[s],u=l.geometry;if(u.type===`Point`){if(l.properties.selectionPoint||l.properties.coordinatePoint||!t&&l.properties[Ye.MID_POINT])continue;let r=this.pixelDistance.measure(e,u.coordinates);!l.properties[Ye.MID_POINT]&&r<this.pointerDistance&&r<a&&(a=r,n=l)}else if(u.type===`LineString`){if(n)continue;for(let t=0;t<u.coordinates.length-1;t++){let n=u.coordinates[t],i=u.coordinates[t+1],a=Pn({x:e.containerX,y:e.containerY},this.project(n[0],n[1]),this.project(i[0],i[1]));a<this.pointerDistance&&a<o&&(o=a,r=l)}}else if(u.type===`Polygon`){if(n||r)continue;Nn([e.lng,e.lat],u.coordinates)&&(i=l)}}return{clickedFeature:n||r||i}}},In=class extends Ct{constructor(e,t,n,r,i,a,o){super(e),this.config=void 0,this.featuresAtCursorEvent=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.draggedFeatureId=null,this.dragPosition=void 0,this.config=e,this.featuresAtCursorEvent=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.readFeature=a,this.mutateFeature=o}startDragging(e,t){this.draggedFeatureId=t,this.dragPosition=[e.lng,e.lat]}stopDragging(){this.draggedFeatureId=null,this.dragPosition=void 0}isDragging(){return this.draggedFeatureId!==null}canDrag(e,t){let{clickedFeature:n}=this.featuresAtCursorEvent.find(e,!0);return!(!n||n.id!==t)}drag(e){if(!this.draggedFeatureId)return;let t=this.readFeature.getGeometry(this.draggedFeatureId),n=[e.lng,e.lat];if(t.type===`Polygon`||t.type===`LineString`){let r,i;if(t.type===`Polygon`?(r=t.coordinates[0],i=r.length-1):(r=t.coordinates,i=r.length),!this.dragPosition)return!1;for(let e=0;e<i;e++){let t=r[e],i,a;if(this.config.projection===`web-mercator`){let e=U(this.dragPosition[0],this.dragPosition[1]),r=U(n[0],n[1]),o=U(t[0],t[1]),s={x:e.x-r.x,y:e.y-r.y},{lng:c,lat:l}=lt(o.x-s.x,o.y-s.y);i=c,a=l}else{let e=[this.dragPosition[0]-n[0],this.dragPosition[1]-n[1]];i=t[0]-e[0],a=t[1]-e[1]}if(i=H(i,this.config.coordinatePrecision),a=H(a,this.config.coordinatePrecision),i>180||i<-180||a>90||a<-90)return!1;r[e]=[i,a]}t.type===`Polygon`&&(r[r.length-1]=[r[0][0],r[0][1]]);let a=this.draggedFeatureId,o=null;if(t.type===`Polygon`)o=this.mutateFeature.updatePolygon({featureId:a,coordinateMutations:{type:kt,coordinates:[r]},context:{updateType:I.Provisional}});else{if(t.type!==`LineString`)return;o=this.mutateFeature.updateLineString({featureId:a,coordinateMutations:{type:kt,coordinates:r},context:{updateType:I.Provisional}})}if(!o)return!1;let s=o.geometry.coordinates;this.midPoints.updateAllInPlace({featureCoordinates:s}),this.selectionPoints.updateAllInPlace({featureCoordinates:s}),this.coordinatePoints.updateAllInPlace({featureId:a,featureCoordinates:s}),this.dragPosition=[e.lng,e.lat]}else t.type===`Point`&&(this.mutateFeature.updatePoint({featureId:this.draggedFeatureId,coordinateMutations:{type:kt,coordinates:n},context:{updateType:I.Provisional}}),this.dragPosition=[e.lng,e.lat])}},Ln=class extends Ct{constructor(e,t,n,r,i,a,o,s,c){super(e),this.config=void 0,this.pixelDistance=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.coordinateSnapping=void 0,this.lineSnapping=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.draggedCoordinate={id:null,index:-1},this.config=e,this.pixelDistance=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.coordinateSnapping=a,this.lineSnapping=o,this.readFeature=s,this.mutateFeature=c}getClosestCoordinate(e,t){let n={dist:1/0,index:-1,isFirstOrLastPolygonCoord:!1},r;if(t.type===`LineString`)r=t.coordinates;else{if(t.type!==`Polygon`)return n;r=t.coordinates[0]}for(let i=0;i<r.length;i++){let a=this.pixelDistance.measure(e,r[i]);if(a<this.pointerDistance&&a<n.dist){let e=t.type===`Polygon`&&(i===r.length-1||i===0);n.dist=a,n.index=e?0:i,n.isFirstOrLastPolygonCoord=e}}return n}getDraggable(e,t){let n=this.readFeature.getGeometry(t);return this.getClosestCoordinate(e,n)}getDraggableIndex(e,t){let n=this.readFeature.getGeometry(t),r=this.getClosestCoordinate(e,n);return r.index===-1?-1:r.index}snapCoordinate(e,t,n){let r=[e.lng,e.lat],i=e=>!!(e.properties&&e.properties.mode===n.properties.mode&&e.id!==this.draggedCoordinate.id);if(t!=null&&t.toLine){let t;t=this.lineSnapping.getSnappable(e,i).coordinate,t&&(r=t)}if(t.toCoordinate){let t;t=this.coordinateSnapping.getSnappable(e,i).coordinate,t&&(r=t)}if(t!=null&&t.toCustom){let i;i=t.toCustom(e,{currentCoordinate:this.draggedCoordinate.index,currentId:n.id,getCurrentGeometrySnapshot:n.id?()=>this.readFeature.getGeometry(n.id):()=>null,project:this.project,unproject:this.unproject}),i&&(r=i)}return r}drag(e,t,n){let r=this.draggedCoordinate.id;if(r===null)return!1;let i=this.draggedCoordinate.index,a=this.readFeature.getGeometry(r),o=this.readFeature.getProperties(r),s=a.type===`LineString`?a.coordinates:a.coordinates[0],c=a.type===`Polygon`&&(i===s.length-1||i===0),l=this.snapCoordinate(e,n,{type:`Feature`,id:r,geometry:a,properties:o});if(e.lng>180||e.lng<-180||e.lat>90||e.lat<-90)return!1;if(c){let e=s.length-1;s[0]=l,s[e]=l}else s[i]=l;if(a.type!==`Point`&&!t&&ft({type:`Feature`,geometry:a,properties:{}}))return!1;let u=r,d=null;return a.type===`Polygon`?d=this.mutateFeature.updatePolygon({featureId:u,coordinateMutations:{type:kt,coordinates:[s]},context:{updateType:I.Provisional}}):a.type===`LineString`&&(d=this.mutateFeature.updateLineString({featureId:u,coordinateMutations:{type:kt,coordinates:s},context:{updateType:I.Provisional}})),!!d&&(this.midPoints.updateOneAtIndex(i>0?i-1:-1,s),this.midPoints.updateOneAtIndex(i,s),this.selectionPoints.updateOneAtIndex(i,l),this.coordinatePoints.updateOneAtIndex(u,i,l),!0)}isDragging(){return this.draggedCoordinate.id!==null}startDragging(e,t){this.draggedCoordinate={id:e,index:t}}stopDragging(){this.draggedCoordinate={id:null,index:-1}}};function Rn(e){let t=0,n=0,r=0;return(e.geometry.type===`Polygon`?e.geometry.coordinates[0].slice(0,-1):e.geometry.coordinates).forEach(e=>{t+=e[0],n+=e[1],r++},!0),[t/r,n/r]}var zn=(e,t)=>{if(t===0||t===360||t===-360)return e;let n=.017453292519943295*t,r=(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).map(([e,t])=>U(e,t)),i=r.reduce((e,t)=>({x:e.x+t.x,y:e.y+t.y}),{x:0,y:0});i.x/=r.length,i.y/=r.length;let a=r.map(e=>({x:i.x+(e.x-i.x)*Math.cos(n)-(e.y-i.y)*Math.sin(n),y:i.y+(e.x-i.x)*Math.sin(n)+(e.y-i.y)*Math.cos(n)})).map(({x:e,y:t})=>[lt(e,t).lng,lt(e,t).lat]);return e.geometry.type===`Polygon`?e.geometry.coordinates[0]=a:e.geometry.coordinates=a,e};function Bn(e){let t=(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).map(e=>{let{x:t,y:n}=U(e[0],e[1]);return[t,n]});return e.geometry.type===`Polygon`?function(e){let t=0,n=0,r=0,i=e.length;for(let a=0;a<i-1;a++){let[i,o]=e[a],[s,c]=e[a+1],l=i*c-s*o;t+=l,n+=(i+s)*l,r+=(o+c)*l}return t/=2,n/=6*t,r/=6*t,{x:n,y:r}}(t):function(e){let t=e.length,n=0,r=0;for(let i=0;i<t;i++){let[t,a]=e[i];n+=t,r+=a}return{x:n/t,y:r/t}}(t)}var Vn=class extends Ct{constructor(e,t,n,r,i,a){super(e),this.config=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.lastBearing=void 0,this.selectedGeometry=void 0,this.selectedGeometryCentroid=void 0,this.selectedGeometryWebMercatorCentroid=void 0,this.config=e,this.selectionPoints=t,this.midPoints=n,this.coordinatePoints=r,this.readFeature=i,this.mutateFeature=a}reset(){this.lastBearing=void 0,this.selectedGeometry=void 0,this.selectedGeometryWebMercatorCentroid=void 0,this.selectedGeometryCentroid=void 0}rotate(e,t){this.selectedGeometry||=this.readFeature.getGeometry(t);let n=this.selectedGeometry;if(n.type!==`Polygon`&&n.type!==`LineString`)return;let r=[e.lng,e.lat],i,a={type:`Feature`,geometry:n,properties:{}};if(this.config.projection===`web-mercator`){this.selectedGeometryWebMercatorCentroid||=Bn(a);let t=U(e.lng,e.lat);if(i=Gt(this.selectedGeometryWebMercatorCentroid,t),i===0)return;if(!this.lastBearing)return void(this.lastBearing=i);zn(a,-(this.lastBearing-i))}else{if(this.config.projection!==`globe`)throw Error(`Unsupported projection`);if(this.selectedGeometryCentroid||=Rn({type:`Feature`,geometry:n,properties:{}}),i=En(this.selectedGeometryCentroid,r),!this.lastBearing)return void(this.lastBearing=i+180);(function(e,t){if(t===0||t===360||t===-360)return e;let n=Rn(e);(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).forEach(e=>{let r=En(n,e)+t,i=Dn(n,function(e,t){e[0]+=e[0]-t[0]>180?-360:t[0]-e[0]>180?360:0;let n=nt,r=t[1]*Math.PI/180,i=e[1]*Math.PI/180,a=i-r,o=Math.abs(e[0]-t[0])*Math.PI/180;o>Math.PI&&(o-=2*Math.PI);let s=Math.log(Math.tan(i/2+Math.PI/4)/Math.tan(r/2+Math.PI/4)),c=Math.abs(s)>1e-11?a/s:Math.cos(r);return Math.sqrt(a*a+c*c*o*o)*n}(n,e),r);e[0]=i[0],e[1]=i[1]})})(a,-(this.lastBearing-(i+180)))}let o=n.type===`Polygon`?n.coordinates[0]:n.coordinates;o.forEach(e=>{e[0]=H(e[0],this.coordinatePrecision),e[1]=H(e[1],this.coordinatePrecision)});let s={featureId:t,coordinateMutations:{type:kt,coordinates:n.type===`Polygon`?[o]:o},context:{updateType:I.Provisional}},c=null;if(a.geometry.type===`Polygon`)c=this.mutateFeature.updatePolygon(s);else{if(a.geometry.type!==`LineString`)return;c=this.mutateFeature.updateLineString(s)}if(!c)return!1;let l=c.geometry.coordinates;this.midPoints.updateAllInPlace({featureCoordinates:l}),this.selectionPoints.updateAllInPlace({featureCoordinates:l}),this.coordinatePoints.updateAllInPlace({featureId:t,featureCoordinates:l}),this.projection===`web-mercator`?this.lastBearing=i:this.projection===`globe`&&(this.lastBearing=i+180)}},Hn=class extends Ct{constructor(e,t){super(e),this.config=void 0,this.dragCoordinateResizeBehavior=void 0,this.config=e,this.dragCoordinateResizeBehavior=t}scale(e,t){if(!this.dragCoordinateResizeBehavior.isDragging()){let n=this.dragCoordinateResizeBehavior.getDraggableIndex(e,t);this.dragCoordinateResizeBehavior.startDragging(t,n)}this.dragCoordinateResizeBehavior.drag(e,`center-fixed`)}reset(){this.dragCoordinateResizeBehavior.stopDragging()}};function Un({coordinates:e,originX:t,originY:n,xScale:r,yScale:i}){r===1&&i===1||e.forEach(e=>{let{x:a,y:o}=U(e[0],e[1]),{lng:s,lat:c}=lt(t+(a-t)*r,n+(o-n)*i);e[0]=s,e[1]=c})}var Wn=class extends Ct{constructor(e,t,n,r,i,a,o){super(e),this.config=void 0,this.pixelDistance=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.minimumScale=1e-4,this.draggedCoordinate={id:null,index:-1},this.boundingBoxMaps={opposite:{0:4,1:5,2:6,3:7,4:0,5:1,6:2,7:3}},this.config=e,this.pixelDistance=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.readFeature=a,this.mutateFeature=o}getClosestCoordinate(e,t){let n={dist:1/0,index:-1,isFirstOrLastPolygonCoord:!1},r;if(t.type===`LineString`)r=t.coordinates;else{if(t.type!==`Polygon`)return n;r=t.coordinates[0]}for(let i=0;i<r.length;i++){let a=this.pixelDistance.measure(e,r[i]);if(a<this.pointerDistance&&a<n.dist){let e=t.type===`Polygon`&&(i===r.length-1||i===0);n.dist=a,n.index=e?0:i,n.isFirstOrLastPolygonCoord=e}}return n}isValidDragWebMercator(e,t,n){switch(e){case 0:if(t<=0||n>=0)return!1;break;case 1:if(n>=0)return!1;break;case 2:if(t>=0||n>=0)return!1;break;case 3:if(t>=0)return!1;break;case 4:if(t>=0||n<=0)return!1;break;case 5:if(n<=0)return!1;break;case 6:if(t<=0||n<=0)return!1;break;case 7:if(t<=0)return!1}return!0}getSelectedFeatureDataWebMercator(){if(!this.draggedCoordinate.id||this.draggedCoordinate.index===-1)return null;let e=this.getFeature(this.draggedCoordinate.id);if(!e)return null;let t=this.getNormalisedCoordinates(e.geometry);return{boundingBox:this.getBBoxWebMercator(t),feature:e,updatedCoords:t,selectedCoordinate:t[this.draggedCoordinate.index]}}centerWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{feature:n,boundingBox:r,updatedCoords:i,selectedCoordinate:a}=t,o=Bn(n);if(!o)return null;let s=U(a[0],a[1]),{closestBBoxIndex:c}=this.getIndexesWebMercator(r,s),l=U(e.lng,e.lat);return this.scaleWebMercator({closestBBoxIndex:c,updatedCoords:i,webMercatorCursor:l,webMercatorSelected:s,webMercatorOrigin:o}),i}centerFixedWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{feature:n,boundingBox:r,updatedCoords:i,selectedCoordinate:a}=t,o=Bn(n);if(!o)return null;let s=U(a[0],a[1]),{closestBBoxIndex:c}=this.getIndexesWebMercator(r,s),l=U(e.lng,e.lat);return this.scaleFixedWebMercator({closestBBoxIndex:c,updatedCoords:i,webMercatorCursor:l,webMercatorSelected:s,webMercatorOrigin:o}),i}scaleFixedWebMercator({closestBBoxIndex:e,webMercatorOrigin:t,webMercatorSelected:n,webMercatorCursor:r,updatedCoords:i}){if(!this.isValidDragWebMercator(e,t.x-r.x,t.y-r.y))return null;let a=Pt(t,r)/Pt(t,n);return a<0&&(a=this.minimumScale),Un({coordinates:i,originX:t.x,originY:t.y,xScale:a,yScale:a}),i}oppositeFixedWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{boundingBox:n,updatedCoords:r,selectedCoordinate:i}=t,a=U(i[0],i[1]),{oppositeBboxIndex:o,closestBBoxIndex:s}=this.getIndexesWebMercator(n,a),c={x:n[o][0],y:n[o][1]},l=U(e.lng,e.lat);return this.scaleFixedWebMercator({closestBBoxIndex:s,updatedCoords:r,webMercatorCursor:l,webMercatorSelected:a,webMercatorOrigin:c}),r}oppositeWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{boundingBox:n,updatedCoords:r,selectedCoordinate:i}=t,a=U(i[0],i[1]),{oppositeBboxIndex:o,closestBBoxIndex:s}=this.getIndexesWebMercator(n,a),c={x:n[o][0],y:n[o][1]},l=U(e.lng,e.lat);return this.scaleWebMercator({closestBBoxIndex:s,updatedCoords:r,webMercatorCursor:l,webMercatorSelected:a,webMercatorOrigin:c}),r}scaleWebMercator({closestBBoxIndex:e,webMercatorOrigin:t,webMercatorSelected:n,webMercatorCursor:r,updatedCoords:i}){let a=t.x-r.x,o=t.y-r.y;if(!this.isValidDragWebMercator(e,a,o))return null;let s=1;a!==0&&e!==1&&e!==5&&(s=1-(t.x-n.x-a)/a);let c=1;return o!==0&&e!==3&&e!==7&&(c=1-(t.y-n.y-o)/o),this.validateScale(s,c)?(s<0&&(s=this.minimumScale),c<0&&(c=this.minimumScale),this.performWebMercatorScale(i,t.x,t.y,s,c),i):null}getFeature(e){if(this.draggedCoordinate.id===null)return null;let t=this.readFeature.getGeometry(e);return t.type!==`Polygon`&&t.type!==`LineString`?null:{id:e,type:`Feature`,geometry:t,properties:{}}}getNormalisedCoordinates(e){return e.type===`Polygon`?e.coordinates[0]:e.coordinates}validateScale(e,t){return!isNaN(e)&&t<2**53-1&&!isNaN(t)&&t<2**53-1}performWebMercatorScale(e,t,n,r,i){e.forEach(e=>{let{x:a,y:o}=U(e[0],e[1]),{lng:s,lat:c}=lt(t+(a-t)*r,n+(o-n)*i);e[0]=s,e[1]=c})}getBBoxWebMercator(e){let t=[1/0,1/0,-1/0,-1/0];(e=e.map(e=>{let{x:t,y:n}=U(e[0],e[1]);return[t,n]})).forEach(([e,n])=>{e<t[0]&&(t[0]=e),n<t[1]&&(t[1]=n),e>t[2]&&(t[2]=e),n>t[3]&&(t[3]=n)});let[n,r,i,a]=t;return[[n,a],[(n+i)/2,a],[i,a],[i,a+(r-a)/2],[i,r],[(n+i)/2,r],[n,r],[n,a+(r-a)/2]]}getIndexesWebMercator(e,t){let n,r=1/0;for(let i=0;i<e.length;i++){let a=Pt({x:t.x,y:t.y},{x:e[i][0],y:e[i][1]});a<r&&(n=i,r=a)}if(n===void 0)throw Error(`No closest coordinate found`);return{oppositeBboxIndex:this.boundingBoxMaps.opposite[n],closestBBoxIndex:n}}isDragging(){return this.draggedCoordinate.id!==null}startDragging(e,t){this.draggedCoordinate={id:e,index:t}}stopDragging(){this.draggedCoordinate={id:null,index:-1}}getDraggableIndex(e,t){let n=this.readFeature.getGeometry(t),r=this.getClosestCoordinate(e,n);return r.index===-1?-1:r.index}drag(e,t){if(!this.draggedCoordinate.id)return!1;let n=this.getFeature(this.draggedCoordinate.id);if(!n)return!1;let r=null;if(t===`center`?r=this.centerWebMercatorDrag(e):t===`opposite`?r=this.oppositeWebMercatorDrag(e):t===`center-fixed`?r=this.centerFixedWebMercatorDrag(e):t===`opposite-fixed`&&(r=this.oppositeFixedWebMercatorDrag(e)),!r)return!1;for(let e=0;e<r.length;e++){let t=r[e];if(t[0]=H(t[0],this.coordinatePrecision),t[1]=H(t[1],this.coordinatePrecision),!mt(t,this.coordinatePrecision))return!1}let i=n.id,a=null;if(n.geometry.type===`Polygon`?a=this.mutateFeature.updatePolygon({featureId:i,coordinateMutations:{type:kt,coordinates:[r]},context:{updateType:I.Provisional}}):n.geometry.type===`LineString`&&(a=this.mutateFeature.updateLineString({featureId:i,coordinateMutations:{type:kt,coordinates:r},context:{updateType:I.Provisional}})),!a)return!1;let o=a.geometry.coordinates;return this.midPoints.updateAllInPlace({featureCoordinates:o}),this.selectionPoints.updateAllInPlace({featureCoordinates:o}),this.coordinatePoints.updateAllInPlace({featureId:i,featureCoordinates:o}),!0}},Gn={deselect:`Escape`,delete:`Delete`,rotate:[`Control`,`r`],scale:[`Control`,`s`]},Kn={pointerOver:`move`,dragStart:`move`,dragEnd:`move`,insertMidpoint:`crosshair`},qn=class extends et{constructor(e){super(e,!0),this.mode=`select`,this.allowManualDeselection=!0,this.allowManualSelection=!0,this.dragEventThrottle=5,this.dragEventCount=0,this.selected=[],this.flags={},this.keyEvents=Gn,this.cursors=Kn,this.validations={},this.dragTarget={type:`none`},this.selectionPoints=void 0,this.midPoints=void 0,this.coordinateSnap=void 0,this.featuresAtMouseEvent=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.dragFeature=void 0,this.dragCoordinate=void 0,this.rotateFeature=void 0,this.scaleFeature=void 0,this.dragCoordinateResizeFeature=void 0,this.coordinatePoints=void 0,this.lineSnap=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),this.cursors=e&&e.cursors?F({},this.cursors,e.cursors):Kn,e?.keyEvents===null?this.keyEvents={deselect:null,delete:null,rotate:null,scale:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e?.dragEventThrottle!==void 0&&(this.dragEventThrottle=e.dragEventThrottle),e?.allowManualDeselection!==void 0&&(this.allowManualDeselection=e.allowManualDeselection),e?.allowManualSelection!==void 0&&(this.allowManualSelection=e.allowManualSelection),e!=null&&e.flags){this.flags=F({},this.flags,e.flags),this.validations={};for(let e in this.flags){let t=this.flags[e].feature;t&&t.validation&&(this.validations[e]=t.validation)}}}selectFeature(e){this.select(e,!1)}setSelecting(){if(this._state!==`started`)throw Error(`Mode must be started to move to selecting state`);this._state=`selecting`}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:(e,t)=>{let n=e.properties.mode;return this.validations&&this.validations[n]?this.validations[n](e,t):{valid:!0}}}),this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.featuresAtMouseEvent=new Fn(e,this.clickBoundingBox,this.pixelDistance),this.selectionPoints=new Mn(e,this.mutateFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.midPoints=new jn(e,this.selectionPoints,this.coordinatePoints,this.mutateFeature,this.readFeature,this.pixelDistance),this.coordinateSnap=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.lineSnap=new nn(e,this.pixelDistance,this.clickBoundingBox),this.rotateFeature=new Vn(e,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.dragFeature=new In(e,this.featuresAtMouseEvent,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.dragCoordinate=new Ln(e,this.pixelDistance,this.selectionPoints,this.midPoints,this.coordinatePoints,this.coordinateSnap,this.lineSnap,this.readFeature,this.mutateFeature),this.dragCoordinateResizeFeature=new Wn(e,this.pixelDistance,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.scaleFeature=new Hn(e,this.dragCoordinateResizeFeature)}deselectFeature(e){this.deselect(e)}deselect(e){this.selected.includes(e)&&(this.mutateFeature.setDeselected(this.selected),this.onDeselect(this.selected[0]),this.selected=[],this.selectionPoints.delete(),this.midPoints.delete(),this.dragTarget={type:`none`})}deleteSelected(){this.selected.length&&this.mutateFeature.deleteFeaturesIfPresent(this.selected),this.selected=[],this.dragTarget={type:`none`}}clearDragTargetAndCursor(){this.dragTarget={type:`none`},this.setCursor(`unset`)}getSelectedFlags(e){let t=this.readFeature.getProperties(e),n=this.flags[t.mode]?.feature,r=n?.coordinates;return{featureFlags:n,coordinatesFlags:r,hasDraggableFlags:n&&(n.draggable||r?.draggable||r?.resizable||typeof r?.midpoints==`object`&&r.midpoints.draggable)}}onRightClick(e){if(!this.selectionPoints.ids.length)return;let t,n=1/0;if(this.selectionPoints.ids.forEach(r=>{let i=this.readFeature.getGeometry(r),a=this.pixelDistance.measure(e,i.coordinates);a<this.pointerDistance&&a<n&&(n=a,t=this.readFeature.getProperties(r))}),!t)return;let r=t.selectionPointFeatureId,i=t.index,a=this.readFeature.getProperties(r),o=this.flags[a.mode];if(!(o&&o.feature&&o.feature.coordinates&&o.feature.coordinates.deletable))return;let s=this.readFeature.getGeometry(r),c;if(s.type===`Polygon`){if(c=s.coordinates[0],c.length<=4)return}else if(s.type!==`LineString`||(c=s.coordinates,c.length<=2))return;s.type!==`Polygon`||i!==0&&i!==c.length-1?c.splice(i,1):(c.shift(),c.pop(),c.push([c[0][0],c[0][1]]));let l=null;if(s.type===`Polygon`?l=this.mutateFeature.updatePolygon({featureId:r,coordinateMutations:{type:kt,coordinates:[c]},context:{updateType:I.Commit}}):s.type===`LineString`&&(l=this.mutateFeature.updateLineString({featureId:r,coordinateMutations:{type:kt,coordinates:c},context:{updateType:I.Commit}})),!l)return;let u=l.geometry.coordinates;this.mutateFeature.deleteFeaturesIfPresent([...this.midPoints.ids,...this.selectionPoints.ids]),a.coordinatePointIds&&this.coordinatePoints.createOrUpdate({featureId:r,featureCoordinates:u}),this.selectionPoints.create({featureCoordinates:u,featureId:r}),o&&o.feature&&o.feature.coordinates&&o.feature.coordinates.midpoints&&this.midPoints.create({featureCoordinates:u,featureId:r}),this.onFinish(r,{action:Ke,mode:this.mode})}select(e,t=!0){if(this.selected[0]===e)return;let{mode:n}=this.readFeature.getProperties(e),r=this.flags[n];if(!r||!r.feature)return;let i=this.selected[0];if(i){if(i===e)return;this.deselect(i)}t&&this.setCursor(this.cursors.pointerOver),this.selected=[e],this.mutateFeature.setSelected(e),this.onSelect(e);let{type:a,coordinates:o}=this.readFeature.getGeometry(e);a!==`LineString`&&a!==`Polygon`||o&&r&&r.feature.coordinates&&(this.selectionPoints.create({featureCoordinates:o,featureId:e}),r.feature.coordinates.midpoints&&this.midPoints.create({featureCoordinates:o,featureId:e}))}onLeftClick(e){let{clickedFeature:t}=this.featuresAtMouseEvent.find(e,this.selected.length>0),n=this.midPoints.getNearestMidPoint(e),r=this.selected[0];if(r){var i;let{featureFlags:t}=this.getSelectedFlags(r);if(t!=null&&(i=t.coordinates)!=null&&i.midpoints&&n){if(t.coordinates.draggable){let t=this.pixelDistance.measure(e,this.readFeature.getGeometry(n).coordinates),{dist:i}=this.dragCoordinate.getDraggable(e,r);if(i!==void 0&&t>i)return}this.midPoints.insert({featureId:r,midPointId:n}),this.onFinish(this.selected[0],{action:qe,mode:this.mode});return}}if(t!=null&&t.id)this.allowManualSelection&&this.select(t.id,!0);else if(this.selected.length&&this.allowManualDeselection)return void this.deselect(this.selected[0])}start(){this.setStarted(),this.setSelecting()}stop(){this.cleanUp(),this.setStarted(),this.setStopped()}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}canScale(e){return this.keyEvents.scale&&this.keyEvents.scale.every(t=>e.heldKeys.includes(t))}canRotate(e){return this.keyEvents.rotate&&this.keyEvents.rotate.every(t=>e.heldKeys.includes(t))}preventDefaultKeyEvent(e){let t=this.canRotate(e),n=this.canScale(e);(t||n)&&e.preventDefault()}onKeyDown(e){this.preventDefaultKeyEvent(e)}onKeyUp(e){if(this.preventDefaultKeyEvent(e),this.keyEvents.delete&&e.key===this.keyEvents.delete){if(!this.selected.length)return;let e=this.selected[0];this.onDeselect(this.selected[0]),this.coordinatePoints.deletePointsByFeatureIds([e]),this.deleteSelected(),this.selectionPoints.delete(),this.midPoints.delete()}else this.keyEvents.deselect&&e.key===this.keyEvents.deselect&&this.cleanUp()}cleanUp(){this.selected.length&&this.deselect(this.selected[0])}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e))return;let n=this.selected[0];if(!n)return;let{featureFlags:r,coordinatesFlags:i,hasDraggableFlags:a}=this.getSelectedFlags(n);if(!a)return;this.dragEventCount=0;let o=this.dragTarget.type!==`none`&&this.dragTarget.featureId===n?this.dragTarget:{type:`none`},s=o.type===`coordinate`?o.coordinateIndex:this.dragCoordinate.getDraggableIndex(e,n),c=o.type===`resize`?o.coordinateIndex:this.dragCoordinateResizeFeature.getDraggableIndex(e,n),l=i?.resizable&&c!==-1,u=i?.draggable&&s!==-1,d=i&&typeof i.midpoints==`object`&&i.midpoints.draggable,f=r?.draggable&&(o.type===`feature`||this.dragFeature.canDrag(e,n));if(l)return this.setCursor(this.cursors.dragStart),this.dragCoordinateResizeFeature.startDragging(n,c),void t(!1);if(u)return this.setCursor(this.cursors.dragStart),this.dragCoordinate.startDragging(n,s),void t(!1);if(d){let r=o.type===`midpoint`?o.midPointId:this.midPoints.getNearestMidPoint(e);if(this.selected.length&&r){this.midPoints.insert({featureId:n,midPointId:r}),this.onFinish(this.selected[0],{action:qe,mode:this.mode});let i=this.dragCoordinate.getDraggableIndex(e,n);this.dragCoordinate.startDragging(n,i),t(!1);return}}if(f)return this.setCursor(this.cursors.dragStart),this.dragFeature.startDragging(e,n),void t(!1);this.setCursor(`unset`)}onDrag(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDrag,e))return;let n=this.selected[0];if(!n)return;let r=this.readFeature.getProperties(n),i=this.flags[r.mode],a=!0===(i&&i.feature&&i.feature.selfIntersectable);if(this.dragEventCount++,this.dragEventCount%this.dragEventThrottle!=0){if(i&&i.feature&&i.feature.rotateable&&this.canRotate(e))return t(!1),void this.rotateFeature.rotate(e,n);if(i&&i.feature&&i.feature.scaleable&&this.canScale(e))return t(!1),void this.scaleFeature.scale(e,n);if(this.dragCoordinateResizeFeature.isDragging()&&i.feature&&i.feature.coordinates&&i.feature.coordinates.resizable){if(this.projection===`globe`)throw Error(`Globe is currently unsupported projection for resizable`);t(!1),this.dragCoordinateResizeFeature.drag(e,i.feature.coordinates.resizable);return}if(this.dragCoordinate.isDragging()){var o;let t=(o=i.feature)==null||(o=o.coordinates)==null?void 0:o.snappable,n={toCoordinate:!1};!0===t?n={toCoordinate:!0}:typeof t==`object`&&(n=t),this.dragCoordinate.drag(e,a,n);return}this.dragFeature.isDragging()?this.dragFeature.drag(e):t(!0)}}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&(this.setCursor(this.cursors.dragEnd),this.dragCoordinate.isDragging()?this.onFinish(this.selected[0],{mode:this.mode,action:`dragCoordinate`}):this.dragFeature.isDragging()?this.onFinish(this.selected[0],{mode:this.mode,action:`dragFeature`}):this.dragCoordinateResizeFeature.isDragging()&&this.onFinish(this.selected[0],{mode:this.mode,action:`dragCoordinateResize`}),this.dragCoordinate.stopDragging(),this.dragFeature.stopDragging(),this.dragCoordinateResizeFeature.stopDragging(),this.rotateFeature.reset(),this.scaleFeature.reset(),t(!0))}onMouseMove(e){let t=this.selected[0];if(!t)return void this.clearDragTargetAndCursor();if(this.dragFeature.isDragging()||this.dragCoordinate.isDragging()||this.dragCoordinateResizeFeature.isDragging())return;let{featureFlags:n}=this.getSelectedFlags(t);if(!n)return void this.clearDragTargetAndCursor();let r,i=n.coordinates;if(i!=null&&i.midpoints&&(r=this.midPoints.getNearestMidPoint(e),r&&(this.dragTarget={type:`midpoint`,featureId:t,midPointId:r},this.setCursor(this.cursors.insertMidpoint))),i&&i.draggable){let{index:n,dist:i}=this.dragCoordinate.getDraggable(e,t);if(n>-1){if(r&&this.pixelDistance.measure(e,this.readFeature.getGeometry(r).coordinates)<i)return;this.dragTarget={type:`coordinate`,featureId:t,coordinateIndex:n},this.setCursor(this.cursors.pointerOver);return}}if(i&&i.resizable){let n=this.dragCoordinateResizeFeature.getDraggableIndex(e,t);if(n>-1)return this.dragTarget={type:`resize`,featureId:t,coordinateIndex:n},void this.setCursor(this.cursors.pointerOver)}if(n.draggable&&this.dragFeature.canDrag(e,t)){if(r)return;this.dragTarget={type:`feature`,featureId:t},this.setCursor(this.cursors.pointerOver);return}r||this.clearDragTargetAndCursor()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.properties.mode===this.mode&&e.geometry.type===`Point`){if(e.properties[Ye.SELECTION_POINT])return t.pointColor=this.getHexColorStylingValue(this.styles.selectionPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.selectionPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.selectionPointOutlineColor,t.pointOutlineColor,e),t.pointWidth=this.getNumericStylingValue(this.styles.selectionPointWidth,t.pointWidth,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.selectionPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.selectionPointOutlineWidth,2,e),t.zIndex=30,t;if(e.properties[Ye.MID_POINT])return t.pointColor=this.getHexColorStylingValue(this.styles.midPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.midPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.midPointOutlineColor,t.pointOutlineColor,e),t.pointWidth=this.getNumericStylingValue(this.styles.midPointWidth,4,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.midPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.midPointOutlineWidth,2,e),t.zIndex=50,t}else if(e.properties[Ye.SELECTED]){if(e.geometry.type===`Point`&&e.properties[L.MARKER])return t.markerUrl=this.getUrlStylingValue(this.styles.selectedMarkerUrl,Je,e),t.markerHeight=this.getNumericStylingValue(this.styles.selectedMarkerHeight,40,e),t.markerWidth=this.getNumericStylingValue(this.styles.selectedMarkerWidth,32,e),t;if(e.geometry.type===`Polygon`)return t.polygonFillColor=this.getHexColorStylingValue(this.styles.selectedPolygonColor,t.polygonFillColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.selectedPolygonOutlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.selectedPolygonOutlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.selectedPolygonOutlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.selectedPolygonFillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t;if(e.geometry.type===`LineString`)return t.lineStringColor=this.getHexColorStylingValue(this.styles.selectedLineStringColor,t.lineStringColor,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.selectedLineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t;if(e.geometry.type===`Point`)return t.pointWidth=this.getNumericStylingValue(this.styles.selectedPointWidth,t.pointWidth,e),t.pointColor=this.getHexColorStylingValue(this.styles.selectedPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.selectedPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.selectedPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.selectedPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.selectedPointOutlineWidth,t.pointOutlineWidth,e),t.zIndex=Xe,t}return t}afterFeatureUpdated(e){if(this.selected.length&&e.id===this.selected[0]){var t,n;let r=this.flags[e.properties.mode];if(r==null||(t=r.feature)==null||!t.coordinates)return;let i=e.geometry.type,a=e.id;if(this.selectionPoints.delete(),this.midPoints.delete(),i!==`LineString`&&i!==`Polygon`)return;let o=e.geometry.coordinates;this.selectionPoints.create({featureCoordinates:o,featureId:a}),r!=null&&(n=r.feature)!=null&&(n=n.coordinates)!=null&&n.midpoints&&this.midPoints.create({featureCoordinates:o,featureId:a})}}},Jn=class extends V{constructor(...e){super(...e),this.type=Qe.Static,this.mode=`static`}start(){}stop(){}onKeyUp(){}onKeyDown(){}onClick(){}onDragStart(){}onDrag(){}onDragEnd(){}onMouseMove(){}cleanUp(){}styleFeature(){return F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0})}};function Yn(e,t,n,r,i){for(;r>n;){if(r-n>600){let a=r-n+1,o=t-n+1,s=Math.log(a),c=.5*Math.exp(2*s/3),l=.5*Math.sqrt(s*c*(a-c)/a)*(o-a/2<0?-1:1);Yn(e,t,Math.max(n,Math.floor(t-o*c/a+l)),Math.min(r,Math.floor(t+(a-o)*c/a+l)),i)}let a=e[t],o=n,s=r;for(Xn(e,n,t),i(e[r],a)>0&&Xn(e,n,r);o<s;){for(Xn(e,o,s),o++,s--;i(e[o],a)<0;)o++;for(;i(e[s],a)>0;)s--}i(e[n],a)===0?Xn(e,n,s):(s++,Xn(e,s,r)),s<=t&&(n=s+1),t<=s&&(r=s-1)}}function Xn(e,t,n){let r=e[t];e[t]=e[n],e[n]=r}function Zn(e,t){Qn(e,0,e.children.length,t,e)}function Qn(e,t,n,r,i){i||=sr([]),i.minX=1/0,i.minY=1/0,i.maxX=-1/0,i.maxY=-1/0;for(let a=t;a<n;a++){let t=e.children[a];$n(i,e.leaf?r(t):t)}return i}function $n(e,t){return e.minX=Math.min(e.minX,t.minX),e.minY=Math.min(e.minY,t.minY),e.maxX=Math.max(e.maxX,t.maxX),e.maxY=Math.max(e.maxY,t.maxY),e}function er(e,t){return e.minX-t.minX}function tr(e,t){return e.minY-t.minY}function nr(e){return(e.maxX-e.minX)*(e.maxY-e.minY)}function rr(e){return e.maxX-e.minX+(e.maxY-e.minY)}function ir(e,t){let n=Math.max(e.minX,t.minX),r=Math.max(e.minY,t.minY),i=Math.min(e.maxX,t.maxX),a=Math.min(e.maxY,t.maxY);return Math.max(0,i-n)*Math.max(0,a-r)}function ar(e,t){return e.minX<=t.minX&&e.minY<=t.minY&&t.maxX<=e.maxX&&t.maxY<=e.maxY}function or(e,t){return t.minX<=e.maxX&&t.minY<=e.maxY&&t.maxX>=e.minX&&t.maxY>=e.minY}function sr(e){return{children:e,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function cr(e,t,n,r,i){let a=[t,n];for(;a.length;){if((n=a.pop())-(t=a.pop())<=r)continue;let o=t+Math.ceil((n-t)/r/2)*r;Yn(e,o,t,n,i),a.push(t,o,o,n)}}var lr=class{constructor(e){this._maxEntries=void 0,this._minEntries=void 0,this.data=void 0,this._maxEntries=Math.max(4,e),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()}search(e){let t=this.data,n=[];if(!or(e,t))return n;let r=this.toBBox,i=[];for(;t;){for(let a=0;a<t.children.length;a++){let o=t.children[a],s=t.leaf?r(o):o;or(e,s)&&(t.leaf?n.push(o):ar(e,s)?this._all(o,n):i.push(o))}t=i.pop()}return n}collides(e){let t=this.data;if(or(e,t)){let n=[];for(;t;){for(let r=0;r<t.children.length;r++){let i=t.children[r],a=t.leaf?this.toBBox(i):i;if(or(e,a)){if(t.leaf||ar(e,a))return!0;n.push(i)}}t=n.pop()}}return!1}load(e){if(e.length<this._minEntries){for(let t=0;t<e.length;t++)this.insert(e[t]);return}let t=this._build(e.slice(),0,e.length-1,0);if(this.data.children.length)if(this.data.height===t.height)this._splitRoot(this.data,t);else{if(this.data.height<t.height){let e=this.data;this.data=t,t=e}this._insert(t,this.data.height-t.height-1,!0)}else this.data=t}insert(e){this._insert(e,this.data.height-1)}clear(){this.data=sr([])}remove(e){let t=this.data,n=this.toBBox(e),r=[],i=[],a,o,s=!1;for(;t||r.length;){if(t||(t=r.pop(),o=r[r.length-1],a=i.pop(),s=!0),t.leaf){let n=t.children.indexOf(e);n!==-1&&(t.children.splice(n,1),r.push(t),this._condense(r))}s||t.leaf||!ar(t,n)?o?(a++,t=o.children[a],s=!1):t=null:(r.push(t),i.push(a),a=0,o=t,t=t.children[0])}}toBBox(e){return e}compareMinX(e,t){return e.minX-t.minX}compareMinY(e,t){return e.minY-t.minY}_all(e,t){let n=[];for(;e;)e.leaf?t.push(...e.children):n.push(...e.children),e=n.pop();return t}_build(e,t,n,r){let i=n-t+1,a,o=this._maxEntries;if(i<=o)return a=sr(e.slice(t,n+1)),Zn(a,this.toBBox),a;r||(r=Math.ceil(Math.log(i)/Math.log(o)),o=Math.ceil(i/o**(r-1))),a=sr([]),a.leaf=!1,a.height=r;let s=Math.ceil(i/o),c=s*Math.ceil(Math.sqrt(o));cr(e,t,n,c,this.compareMinX);for(let i=t;i<=n;i+=c){let t=Math.min(i+c-1,n);cr(e,i,t,s,this.compareMinY);for(let n=i;n<=t;n+=s){let i=Math.min(n+s-1,t);a.children.push(this._build(e,n,i,r-1))}}return Zn(a,this.toBBox),a}_chooseSubtree(e,t,n,r){for(;r.push(t),!t.leaf&&r.length-1!==n;){let n,r=1/0,o=1/0;for(let s=0;s<t.children.length;s++){let c=t.children[s],l=nr(c),u=(i=e,a=c,(Math.max(a.maxX,i.maxX)-Math.min(a.minX,i.minX))*(Math.max(a.maxY,i.maxY)-Math.min(a.minY,i.minY))-l);u<o?(o=u,r=l<r?l:r,n=c):u===o&&l<r&&(r=l,n=c)}t=n||t.children[0]}var i,a;return t}_insert(e,t,n){let r=n?e:this.toBBox(e),i=[],a=this._chooseSubtree(r,this.data,t,i);for(a.children.push(e),$n(a,r);t>=0&&i[t].children.length>this._maxEntries;)this._split(i,t),t--;this._adjustParentBBoxes(r,i,t)}_split(e,t){let n=e[t],r=n.children.length,i=this._minEntries;this._chooseSplitAxis(n,i,r);let a=this._chooseSplitIndex(n,i,r),o=sr(n.children.splice(a,n.children.length-a));o.height=n.height,o.leaf=n.leaf,Zn(n,this.toBBox),Zn(o,this.toBBox),t?e[t-1].children.push(o):this._splitRoot(n,o)}_splitRoot(e,t){this.data=sr([e,t]),this.data.height=e.height+1,this.data.leaf=!1,Zn(this.data,this.toBBox)}_chooseSplitIndex(e,t,n){let r,i=1/0,a=1/0;for(let o=t;o<=n-t;o++){let t=Qn(e,0,o,this.toBBox),s=Qn(e,o,n,this.toBBox),c=ir(t,s),l=nr(t)+nr(s);c<i?(i=c,r=o,a=l<a?l:a):c===i&&l<a&&(a=l,r=o)}return r||n-t}_chooseSplitAxis(e,t,n){let r=e.leaf?this.compareMinX:er,i=e.leaf?this.compareMinY:tr;this._allDistMargin(e,t,n,r)<this._allDistMargin(e,t,n,i)&&e.children.sort(r)}_allDistMargin(e,t,n,r){e.children.sort(r);let i=this.toBBox,a=Qn(e,0,t,i),o=Qn(e,n-t,n,i),s=rr(a)+rr(o);for(let r=t;r<n-t;r++){let t=e.children[r];$n(a,e.leaf?i(t):t),s+=rr(a)}for(let r=n-t-1;r>=t;r--){let t=e.children[r];$n(o,e.leaf?i(t):t),s+=rr(o)}return s}_adjustParentBBoxes(e,t,n){for(let r=n;r>=0;r--)$n(t[r],e)}_condense(e){for(let t,n=e.length-1;n>=0;n--)e[n].children.length===0?n>0?(t=e[n-1].children,t.splice(t.indexOf(e[n]),1)):this.clear():Zn(e[n],this.toBBox)}},ur=class{constructor(e){this.tree=void 0,this.idToNode=void 0,this.nodeToId=void 0,this.tree=new lr(e&&e.maxEntries?e.maxEntries:9),this.idToNode=new Map,this.nodeToId=new Map}setMaps(e,t){this.idToNode.set(e.id,t),this.nodeToId.set(t,e.id)}toBBox(e){let t=[],n=[],r;if(e.geometry.type===`Polygon`)r=e.geometry.coordinates[0];else if(e.geometry.type===`LineString`)r=e.geometry.coordinates;else{if(e.geometry.type!==`Point`)throw Error(`Not a valid feature to turn into a bounding box`);r=[e.geometry.coordinates]}for(let e=0;e<r.length;e++)n.push(r[e][1]),t.push(r[e][0]);let i=Math.min(...n),a=Math.max(...n);return{minX:Math.min(...t),minY:i,maxX:Math.max(...t),maxY:a}}insert(e){if(this.idToNode.get(String(e.id)))throw Error(`Feature already exists`);let t=this.toBBox(e);this.setMaps(e,t),this.tree.insert(t)}load(e){let t=[],n=new Set;e.forEach(e=>{let r=this.toBBox(e);if(this.setMaps(e,r),n.has(String(e.id)))throw Error(`Duplicate feature ID found ${e.id}`);n.add(String(e.id)),t.push(r)}),this.tree.load(t)}update(e){this.remove(e.id);let t=this.toBBox(e);this.setMaps(e,t),this.tree.insert(t)}remove(e){let t=this.idToNode.get(e);if(!t)throw Error(`${e} not inserted into the spatial index`);this.tree.remove(t)}clear(){this.tree.clear()}search(e){return this.tree.search(this.toBBox(e)).map(e=>this.nodeToId.get(e))}collides(e){return this.tree.collides(this.toBBox(e))}},dr={getId:()=>`xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx`.replace(/[xy]/g,function(e){let t=16*Math.random()|0;return(e==`x`?t:3&t|8).toString(16)}),isValidId:e=>typeof e==`string`&&e.length===36},fr={target:`geometry`},pr={target:`properties`},mr=class{constructor(e){this.idStrategy=void 0,this.tracked=void 0,this.spatialIndex=void 0,this.store=void 0,this._onChange=()=>{},this.store={},this.spatialIndex=new ur,this.tracked=!e||!1!==e.tracked,this.idStrategy=e&&e.idStrategy?e.idStrategy:dr}clone(e){return JSON.parse(JSON.stringify(e))}getId(){return this.idStrategy.getId()}has(e){return!!this.store[e]}load(e,t,n,r){if(e.length===0)return[];let i=this.clone(e),a=[],o=[];i=i.filter(e=>{e.id??=this.idStrategy.getId();let n=e.id;if(t){let r=t(e);if(!r.valid)return a.push({id:n,valid:!1,reason:r.reason}),!1}if(this.tracked){if(e.properties.createdAt){if(!B(e.properties.createdAt))return a.push({id:e.id,valid:!1,reason:`createdAt is not a valid numeric timestamp`}),!1}else e.properties.createdAt=+new Date;if(e.properties.updatedAt){if(!B(e.properties.updatedAt))return a.push({id:e.id,valid:!1,reason:`updatedAt is not a valid numeric timestamp`}),!1}else e.properties.updatedAt=+new Date}return this.has(n)?(a.push({id:n,valid:!1,reason:`Feature already exists with this id: ${n}`}),!1):(this.store[n]=e,o.push(e),a.push({id:n,valid:!0}),!0)}),this.spatialIndex.load(i);let s=o.map(({id:e})=>e);return s.length>0&&(this._onChange(s,`create`,r),n&&o.forEach(e=>{n(e)})),a}search(e,t){let n=this.spatialIndex.search(e).map(e=>this.store[e]);return this.clone(t?n.filter(t):n)}registerOnChange(e){this._onChange=(t,n,r)=>{e(t,n,r)}}getGeometryCopy(e){let t=this.store[e];if(!t)throw Error(`No feature with this id (${e}), can not get geometry copy`);return this.clone(t.geometry)}getPropertiesCopy(e){let t=this.store[e];if(!t)throw Error(`No feature with this id (${e}), can not get properties copy`);return this.clone(t.properties)}updateProperty(e,t){let n=new Set;e.forEach(({id:e,property:t,value:r})=>{let i=this.store[e];if(!i)throw Error(`No feature with this (${e}), can not update geometry`);i.properties[t]!==r&&(n.add(e),r===void 0?delete i.properties[t]:i.properties[t]=r,this.tracked&&(i.properties.updatedAt=+new Date))}),this._onChange&&n.size>0&&this._onChange(Array.from(n),`update`,t?F({},t,pr):pr)}updateGeometry(e,t){let n=new Set;e.forEach(({id:e,geometry:t})=>{n.add(e);let r=this.store[e];if(!r)throw Error(`No feature with this (${e}), can not update geometry`);r.geometry=this.clone(t),this.spatialIndex.update(r),this.tracked&&(r.properties.updatedAt=+new Date)}),this._onChange&&n.size>0&&this._onChange(Array.from(n),`update`,t?F({},t,fr):fr)}create(e,t){let n=[];return e.forEach(({geometry:e,properties:t})=>{let r,i=F({},t);this.tracked&&(r=+new Date,t?(i.createdAt=typeof t.createdAt==`number`?t.createdAt:r,i.updatedAt=typeof t.updatedAt==`number`?t.updatedAt:r):i={createdAt:r,updatedAt:r});let a=this.getId(),o={id:a,type:`Feature`,geometry:e,properties:i};this.store[a]=o,this.spatialIndex.insert(o),n.push(a)}),this._onChange&&this._onChange([...n],`create`,t),n}delete(e,t){e.forEach(e=>{if(!this.store[e])throw Error(`No feature with id ${e}, can not delete`);delete this.store[e],this.spatialIndex.remove(e)}),this._onChange&&this._onChange([...e],`delete`,t)}copy(e){return this.clone(this.store[e])}copyAll(){return this.clone(Object.keys(this.store).map(e=>this.store[e]))}copyAllWhere(e){return this.clone(Object.keys(this.store).map(e=>this.store[e]).filter(t=>t.properties&&e(t.properties)))}clear(e){let t=Object.keys(this.store);this.store={},this.spatialIndex.clear(),this._onChange(t,`delete`,e)}size(){return Object.keys(this.store).length}};Math.PI/180;var hr=`Feature is not a Polygon or LineString`,gr=`Feature intersects itself`,_r=e=>e.geometry.type!==`Polygon`&&e.geometry.type!==`LineString`?{valid:!1,reason:hr}:ft(e)?{valid:!1,reason:gr}:{valid:!0};function vr(e,t,n){let r=Gt(e,t),i=Gt(t,n)-r;return i<0&&(i+=360),180-Math.abs(i-90-90)}var yr={cancel:`Escape`,finish:`Enter`},br={start:`crosshair`,close:`pointer`},xr=class extends V{constructor(e){super(e,!0),this.mode=`angled-rectangle`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=yr,this.cursors=br,this.mouseMove=!1,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents))}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentId===void 0||this.currentCoordinate===0)return;let t=[];if(this.currentCoordinate===1)t=this.getUpdateForSecondCoordinate(e);else{if(this.currentCoordinate!==2)return;t=this.getNewSecondAndThirdCoordinates(e)}this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:t,context:{updateType:I.Provisional}})}getUpdateForSecondCoordinate(e){return[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}]}getNewSecondAndThirdCoordinates(e){if(!this.currentId)throw Error(`No current feature being drawn`);let t=this.readFeature.getCoordinate(this.currentId,0),n=this.readFeature.getCoordinate(this.currentId,1),r=On(t,n,this.coordinatePrecision,this.project,this.unproject),i=U(t[0],t[1]),a=U(r[0],r[1]),o=U(n[0],n[1]),s=U(e.lng,e.lat),c=Pt(s,i)<Pt(s,o),l=vr(i,a,s),u=c?90-l:vr(i,a,s)-90,d=Pt(a,s),f=Math.cos(rt(u))*d,p=Gt(i,o)+(function(e,t,n){let r=(n.x-t.x)*(e.y-t.y)-(n.y-t.y)*(e.x-t.x);return r>1e-10?`left`:r<-1e-10?`right`:`left`}(i,o,s)===`right`?-90:90),m=Ut(i,f,p),h=Ut(o,f,p),g=lt(m.x,m.y),_=lt(h.x,h.y);return[{type:Dt,index:2,coordinate:[H(_.lng,this.coordinatePrecision),H(_.lat,this.coordinatePrecision)]},{type:Dt,index:3,coordinate:[H(g.lng,this.coordinatePrecision),H(g.lat,this.coordinatePrecision)]}]}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0){let{id:t}=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=t,this.currentCoordinate++,this.setDrawing()}else if(this.currentCoordinate===1&&this.currentId){let t=this.readFeature.getCoordinate(this.currentId,0);if(W([e.lng,e.lat],t)||!this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Et,index:1,coordinate:[e.lng,e.lat]}],context:{updateType:I.Commit}}))return;this.currentCoordinate++}else this.currentCoordinate===2&&this.currentId&&this.close()}onKeyUp(e){if(e.key===this.keyEvents.cancel)this.cleanUp();else if(e.key===this.keyEvents.finish){if(this.currentCoordinate<2)return void this.cleanUp();this.close()}}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&e.geometry.type===`Polygon`&&(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}};function Sr(e,t,n){return(t.x-e.x)*(n.y-e.y)-(t.y-e.y)*(n.x-e.x)<=0}var Cr={cancel:`Escape`,finish:`Enter`},wr={start:`crosshair`,close:`pointer`},Tr=class extends V{constructor(e){super(e,!0),this.mode=`sector`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=Cr,this.direction=void 0,this.arcPoints=64,this.cursors=wr,this.mouseMove=!1,this.readFeature=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.arcPoints&&(this.arcPoints=e.arcPoints)}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},coordinateMutations:{coordinates:this.readFeature.getGeometry(this.currentId).coordinates,type:kt},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.direction=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}getSectorCoordinates(e){let t=this.readFeature.getCoordinates(this.currentId),n=t[0],r=t[1],i=[e.lng,e.lat],a=U(n[0],n[1]),o=U(r[0],r[1]),s=U(i[0],i[1]);this.direction===void 0&&(this.direction=Sr(a,o,s)?`clockwise`:`anticlockwise`);let c=Pt(a,o),l=Gt(a,o),u=Gt(a,s),d=this.arcPoints,f=[n],p=Kt(l),m=Kt(u),h;this.direction===`anticlockwise`?(h=m-p,h<0&&(h+=360)):(h=p-m,h<0&&(h+=360));let g=(this.direction===`anticlockwise`?1:-1)*h/d;f.push(r);for(let e=0;e<=d;e++){let t=Ut(a,c,p+e*g),{lng:n,lat:r}=lt(t.x,t.y),i=[H(n,this.coordinatePrecision),H(r,this.coordinatePrecision)];i[0]!==f[f.length-1][0]&&i[1]!==f[f.length-1][1]&&f.push(i)}return f.push(n),f}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentId===void 0||this.currentCoordinate===0)return;let t;if(this.currentCoordinate===1)t=[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}];else{if(this.currentCoordinate!==2)return;{let n=this.getSectorCoordinates(e);if(!n)return;t={type:kt,coordinates:[n]}}}this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:t,context:{updateType:I.Provisional}})}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0)this.currentId=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}})?.id,this.currentCoordinate++,this.setDrawing();else if(this.currentCoordinate===1&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,index:0,newCoordinate:[e.lng,e.lat]})||!this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}],context:{updateType:I.Provisional}}))return;this.currentCoordinate++}else this.currentCoordinate===2&&this.currentId&&this.close()}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.direction=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&e.geometry.type===`Polygon`&&(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.currentId=void 0,this.direction=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}},Er={cancel:`Escape`,finish:`Enter`},Dr={start:`crosshair`,close:`pointer`},Or=class extends V{constructor(e){super(e,!0),this.mode=`sensor`,this.currentCoordinate=0,this.currentId=void 0,this.currentInitialArcId=void 0,this.currentStartingPointId=void 0,this.keyEvents=Er,this.direction=void 0,this.arcPoints=64,this.cursors=Dr,this.mouseMove=!1,this.readFeature=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.arcPoints&&(this.arcPoints=e.arcPoints)}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentInitialArcId!==void 0&&this.currentStartingPointId!==void 0&&this.currentCoordinate!==0){if(this.currentCoordinate===2){let t=this.getUpdatedLineStringCoordinates(e);if(!t)return;this.mutateFeature.updateLineString({featureId:this.currentInitialArcId,coordinateMutations:{type:kt,coordinates:t},context:{updateType:I.Provisional}})}else if(this.currentCoordinate===3){let t=this.getUpdatedPolygonCoordinates(e);if(!t)return;if(this.currentId)this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:[t]},context:{updateType:I.Provisional}});else{let e=this.mutateFeature.createPolygon({coordinates:t,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});if(!e)return;this.currentId=e.id}}}}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode}});if(!t)return;this.currentStartingPointId=t.id,this.currentCoordinate++,this.setDrawing()}else if(this.currentCoordinate===1&&this.currentStartingPointId){let t=this.mutateFeature.createLineString({coordinates:[[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode}});if(!t)return;this.currentInitialArcId=t.id,this.currentCoordinate++}else this.currentCoordinate===2&&this.currentStartingPointId?this.currentCoordinate++:this.currentCoordinate===3&&this.currentStartingPointId&&this.close()}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){this.mutateFeature.deleteFeatureIfPresent(this.currentStartingPointId),this.mutateFeature.deleteFeatureIfPresent(this.currentInitialArcId),this.mutateFeature.deleteFeatureIfPresent(this.currentId),this.currentStartingPointId=void 0,this.direction=void 0,this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&(e.geometry.type===`Polygon`?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe):e.geometry.type===`LineString`?(t.lineStringColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.zIndex=Xe):e.geometry.type===`Point`&&(t.pointColor=this.getHexColorStylingValue(this.styles.centerPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.centerPointOpacity,1,e),t.pointWidth=this.getNumericStylingValue(this.styles.centerPointWidth,t.pointWidth,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.centerPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.centerPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.centerPointOutlineWidth,t.pointOutlineWidth,e),t.zIndex=20)),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.mutateFeature.deleteFeatureIfPresent(this.currentStartingPointId),this.mutateFeature.deleteFeatureIfPresent(this.currentInitialArcId),this.currentStartingPointId=void 0,this.direction=void 0,this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}close(){if(this.currentStartingPointId===void 0)return;let e=this.currentStartingPointId,t=this.currentInitialArcId;if(this.currentId&&!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},coordinateMutations:{coordinates:this.readFeature.getGeometry(this.currentId).coordinates,type:kt},context:{updateType:I.Finish,action:We}}))return;let n=this.currentId;this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t),this.currentCoordinate=0,this.currentStartingPointId=void 0,this.currentInitialArcId=void 0,this.currentId=void 0,this.direction=void 0,this.state===`drawing`&&this.setStarted(),n&&this.onFinish(n,{mode:this.mode,action:We})}getUpdatedPolygonCoordinates(e){if(this.currentInitialArcId===void 0||this.currentStartingPointId===void 0||this.currentCoordinate<3)return;let t=this.readFeature.getCoordinates(this.currentInitialArcId);if(t.length<2||!this.direction)return;let n=this.readFeature.getGeometry(this.currentStartingPointId).coordinates,r=t[0],i=t[t.length-1],a=U(e.lng,e.lat),o=U(r[0],r[1]),s=U(i[0],i[1]),c=U(n[0],n[1]),l=Pt(c,o),u=Pt(c,a)<l?o:a,d=Gt(c,a),f=Gt(c,o),p=Gt(c,s),m=Kt(f),h=Kt(p),g=Kt(d);if(this.notInSector({normalizedCursor:g,normalizedStart:m,normalizedEnd:h,direction:this.direction}))return;let _=this.getDeltaBearing(this.direction,m,h),v=this.arcPoints,y=(this.direction===`anticlockwise`?1:-1)*_/v,b=Pt(c,u),x=[];for(let e=0;e<=v;e++){let n=Ut(c,b,m+e*y),{lng:r,lat:i}=lt(n.x,n.y),a=[H(r,this.coordinatePrecision),H(i,this.coordinatePrecision)];a[0]!==t[t.length-1][0]&&a[1]!==t[t.length-1][1]&&x.unshift(a)}return t.push(...x),t.push(t[0]),t}getUpdatedLineStringCoordinates(e){if(this.currentInitialArcId===void 0||this.currentStartingPointId===void 0||this.currentCoordinate<2)return;let t=this.readFeature.getGeometry(this.currentInitialArcId).coordinates,n=this.readFeature.getGeometry(this.currentStartingPointId).coordinates,r=t[0],i=[e.lng,e.lat],a=U(r[0],r[1]),o=U(i[0],i[1]),s=U(n[0],n[1]),c=Pt(s,a);this.direction===void 0&&(this.direction=Sr(s,a,o)?`clockwise`:`anticlockwise`);let l=Gt(s,a),u=Gt(s,o),d=this.arcPoints,f=[r],p=Kt(l),m=Kt(u),h;this.direction===`anticlockwise`?(h=m-p,h<0&&(h+=360)):(h=p-m,h<0&&(h+=360));let g=(this.direction===`anticlockwise`?1:-1)*h/d;for(let e=0;e<=d;e++){let t=Ut(s,c,p+e*g),{lng:n,lat:r}=lt(t.x,t.y),i=[H(n,this.coordinatePrecision),H(r,this.coordinatePrecision)];i[0]!==f[f.length-1][0]&&i[1]!==f[f.length-1][1]&&f.push(i)}return f}getDeltaBearing(e,t,n){let r;return e===`anticlockwise`?(r=n-t,r<0&&(r+=360)):(r=t-n,r<0&&(r+=360)),r}notInSector({normalizedCursor:e,normalizedStart:t,normalizedEnd:n,direction:r}){return r===`clockwise`?t<=n?e>=t&&e<=n:e>=t||e<=n:t>=n?e<=t&&e>=n:e<=t||e>=n}},kr=class{constructor({name:e,callback:t,unregister:n,register:r}){this.name=void 0,this.callback=void 0,this.registered=!1,this.register=void 0,this.unregister=void 0,this.name=e,this.register=()=>{this.registered||(this.registered=!0,r(t))},this.unregister=()=>{this.register&&(this.registered=!1,n(t))},this.callback=t}},Ar={__proto__:null,GeoJSONStore:mr,TerraDrawBaseDrawMode:V,TerraDrawBaseSelectMode:et,TerraDrawBaseAdapter:class{constructor(e){this._nextKeyUpIsContextMenu=!1,this._lastPointerDownEventTarget=void 0,this._ignoreMismatchedPointerEvents=!1,this._minPixelDragDistance=void 0,this._minPixelDragDistanceDrawing=void 0,this._minPixelDragDistanceSelecting=void 0,this._lastDrawEvent=void 0,this._coordinatePrecision=void 0,this._heldKeys=new Set,this._listeners=[],this._dragState=`not-dragging`,this._currentModeCallbacks=void 0,this._ignoreMismatchedPointerEvents=typeof e.ignoreMismatchedPointerEvents==`boolean`&&e.ignoreMismatchedPointerEvents,this._minPixelDragDistance=typeof e.minPixelDragDistance==`number`?e.minPixelDragDistance:1,this._minPixelDragDistanceSelecting=typeof e.minPixelDragDistanceSelecting==`number`?e.minPixelDragDistanceSelecting:1,this._minPixelDragDistanceDrawing=typeof e.minPixelDragDistanceDrawing==`number`?e.minPixelDragDistanceDrawing:8,this._coordinatePrecision=typeof e.coordinatePrecision==`number`?e.coordinatePrecision:9}getButton(e){return e.button===-1?`neither`:e.button===0?`left`:e.button===1?`middle`:e.button===2?`right`:`neither`}getMapElementXYPosition(e){let{left:t,top:n}=this.getMapEventElement(e.type).getBoundingClientRect();return{containerX:e.clientX-t,containerY:e.clientY-n}}getDrawEventFromEvent(e,t=!1){let n=this.getLngLatFromEvent(e);if(!n)return null;let{lng:r,lat:i}=n,{containerX:a,containerY:o}=this.getMapElementXYPosition(e),s=this.getButton(e),c=Array.from(this._heldKeys);return{lng:H(r,this._coordinatePrecision),lat:H(i,this._coordinatePrecision),containerX:a,containerY:o,button:s,heldKeys:c,isContextMenu:t}}register(e){this._currentModeCallbacks=e,this._listeners=this.getAdapterListeners(),this._listeners.forEach(e=>{e.register()})}getCoordinatePrecision(){return this._coordinatePrecision}getAdapterListeners(){return[new kr({name:`pointerdown`,callback:e=>{if(!this._currentModeCallbacks||!e.isPrimary)return;let t=this.getDrawEventFromEvent(e);t&&(this._dragState=`pre-dragging`,this._lastDrawEvent=t,this._lastPointerDownEventTarget=e.target?e.target:void 0)},register:e=>{this.getMapEventElement(`pointerdown`).addEventListener(`pointerdown`,e)},unregister:e=>{this.getMapEventElement(`pointerdown`).removeEventListener(`pointerdown`,e)}}),new kr({name:`pointermove`,callback:e=>{if(!this._currentModeCallbacks||!e.isPrimary)return;e.preventDefault();let t=this.getDrawEventFromEvent(e);if(t)if(this._dragState===`not-dragging`)this._currentModeCallbacks.onMouseMove(t),this._lastDrawEvent=t;else if(this._dragState===`pre-dragging`){if(!this._lastDrawEvent)return;let e={x:this._lastDrawEvent.containerX,y:this._lastDrawEvent.containerY},n={x:t.containerX,y:t.containerY},r=this._currentModeCallbacks.getState(),i=Pt(e,n),a=!1;if(a=r===`drawing`?i<this._minPixelDragDistanceDrawing:r===`selecting`?i<this._minPixelDragDistanceSelecting:i<this._minPixelDragDistance,a)return;this._nextKeyUpIsContextMenu=!1,this._dragState=`dragging`,this._currentModeCallbacks.onDragStart(t,e=>{this.setDraggability.bind(this)(e)})}else this._dragState===`dragging`&&this._currentModeCallbacks.onDrag(t,e=>{this.setDraggability.bind(this)(e)})},register:e=>{this.getMapEventElement(`pointermove`).addEventListener(`pointermove`,e)},unregister:e=>{this.getMapEventElement(`pointermove`).removeEventListener(`pointermove`,e)}}),new kr({name:`contextmenu`,callback:e=>{this._currentModeCallbacks&&(e.preventDefault(),this._nextKeyUpIsContextMenu=!0)},register:e=>{this.getMapEventElement(`contextmenu`).addEventListener(`contextmenu`,e)},unregister:e=>{this.getMapEventElement(`contextmenu`).removeEventListener(`contextmenu`,e)}}),new kr({name:`pointerup`,callback:e=>{if(!this._currentModeCallbacks||e.target!==this.getMapEventElement(`pointerup`)||this._ignoreMismatchedPointerEvents&&this._lastPointerDownEventTarget!==e.target||(this._lastPointerDownEventTarget=void 0,!e.isPrimary))return;let t=this.getDrawEventFromEvent(e);t&&(this._dragState===`dragging`?this._currentModeCallbacks.onDragEnd(t,e=>{this.setDraggability.bind(this)(e)}):this._dragState!==`not-dragging`&&this._dragState!==`pre-dragging`||(this._nextKeyUpIsContextMenu&&=(t.isContextMenu=!0,!1),this._currentModeCallbacks.onClick(t)),this._dragState=`not-dragging`,this.setDraggability(!0))},register:e=>{this.getMapEventElement(`pointerup`).addEventListener(`pointerup`,e)},unregister:e=>{this.getMapEventElement(`pointerup`).removeEventListener(`pointerup`,e)}}),new kr({name:`keyup`,callback:e=>{this._currentModeCallbacks&&(this._heldKeys.delete(e.key),this._currentModeCallbacks.onKeyUp({key:e.key,heldKeys:Array.from(this._heldKeys),preventDefault:()=>e.preventDefault()}))},register:e=>{this.getMapEventElement(`keyup`).addEventListener(`keyup`,e)},unregister:e=>{this.getMapEventElement(`keyup`).removeEventListener(`keyup`,e)}}),new kr({name:`keydown`,callback:e=>{this._currentModeCallbacks&&(this._heldKeys.add(e.key),this._currentModeCallbacks.onKeyDown({key:e.key,heldKeys:Array.from(this._heldKeys),preventDefault:()=>e.preventDefault()}))},register:e=>{this.getMapEventElement(`keydown`).addEventListener(`keydown`,e)},unregister:e=>{this.getMapEventElement(`keydown`).removeEventListener(`keydown`,e)}})]}unregister(){this._listeners.forEach(e=>{e.unregister()}),this.clear(),this._currentModeCallbacks=void 0,this._lastDrawEvent=void 0,this._lastPointerDownEventTarget=void 0,this._nextKeyUpIsContextMenu=!1}},getDefaultStyling:()=>({polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0}),SELECT_PROPERTIES:Ye},jr={cancel:`Escape`,finish:`Enter`},Mr={start:`crosshair`,close:`pointer`},Nr=class extends V{constructor(e){super(e,!0),this.mode=`freehand-linestring`,this.canClose=!1,this.currentId=void 0,this.minDistance=20,this.keyEvents=jr,this.cursors=Mr,this.preventNewFeature=!1,this.mutateFeature=void 0,this.readFeature=void 0,this.pixelDistance=void 0,this.closingPoints=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.minDistance&&(this.minDistance=e.minDistance),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors))}close(){if(this.currentId===void 0||!this.mutateFeature.updateLineString({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.closingPoints.delete(),this.canClose=!1,this.currentId=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.currentId===void 0||!1===this.canClose)return void this.setCursor(this.cursors.start);let[t,n]=this.readFeature.getCoordinate(this.currentId,-2),{x:r,y:i}=this.project(t,n),a=Pt({x:r,y:i},{x:e.containerX,y:e.containerY}),[o,s]=this.readFeature.getCoordinate(this.currentId,-1),{x:c,y:l}=this.project(o,s),u=Pt({x:c,y:l},{x:e.containerX,y:e.containerY});if(this.setCursor(u<this.pointerDistance?this.cursors.close:this.cursors.start),a<this.minDistance)return;let d=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:[{type:Et,index:-1,coordinate:[e.lng,e.lat]}],context:{updateType:I.Provisional}});d&&this.closingPoints.update(d.geometry.coordinates)}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)){if(this.preventNewFeature)return;if(!1===this.canClose){let{id:t,geometry:n}=this.mutateFeature.createLineString({coordinates:[[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.closingPoints.create(n.coordinates),this.currentId=t,this.canClose=!0,this.state!==`drawing`&&this.setDrawing();return}this.close()}}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&!0===this.canClose&&this.close()}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.canClose=!1,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e),this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`LineString`&&e.properties.mode===this.mode?(t.lineStringColor=this.getHexColorStylingValue(this.styles.lineStringColor,t.lineStringColor,e),t.lineStringOpacity=this.getNumericStylingValue(this.styles.lineStringOpacity,t.lineStringOpacity===void 0?1:t.lineStringOpacity,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.lineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t):e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode?(t.pointWidth=this.getNumericStylingValue(this.styles.closingPointWidth,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(this.styles.closingPointOpacity,1,e),t.pointColor=this.getHexColorStylingValue(this.styles.closingPointColor,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.closingPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.closingPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.closingPointOutlineWidth,2,e),t.zIndex=50,t):t}validateFeature(e){return this.validateModeFeature(e,e=>Zt(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.closingPoints.delete(),this.canClose=!1,this.currentId=void 0)}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.pixelDistance=new Bt(e),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature)}};function Pr(e){if(e===null||typeof e==`boolean`||typeof e==`string`)return!0;if(e===void 0)return!1;if(typeof e==`number`)return Number.isFinite(e);if(typeof e==`bigint`||typeof e==`symbol`||typeof e==`function`||e instanceof RegExp||e instanceof Map||e instanceof Set||e instanceof Date)return!1;if(typeof e==`object`&&e&&!Array.isArray(e)){let t=Object.getPrototypeOf(e);if(t!==Object.prototype&&t!==null)return!1}if(ArrayBuffer.isView(e)&&!(e instanceof DataView))return!1;if(Array.isArray(e)){for(let t of e)if(!Pr(t))return!1}return typeof e==`object`&&Object.keys(e).every(t=>typeof t==`string`&&Pr(e[t]))}var Fr={create:`crosshair`,dragStart:`grabbing`,dragEnd:`crosshair`},Ir=class extends V{constructor(e){super(e,!0),this.mode=`marker`,this.cursors=Fr,this.editable=!1,this.editedFeatureId=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pointSearch=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.editable&&(this.editable=e.editable)}start(){this.setStarted(),this.setCursor(this.cursors.create)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onMouseMove(){}onKeyDown(){}onKeyUp(){}cleanUp(){this.editedFeatureId=void 0}onDragStart(e,t){this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&(this.editable&&(this.editedFeatureId=this.pointSearch.getNearestPointFeature(e)?.id),this.editedFeatureId&&(this.setCursor(this.cursors.dragStart),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.mutateFeature.updatePoint({featureId:this.editedFeatureId,coordinateMutations:{type:kt,coordinates:[e.lng,e.lat]},propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}})}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||!this.mutateFeature.updatePoint({featureId:this.editedFeatureId,propertyMutations:{mode:this.mode,[L.EDITED]:!1},context:{updateType:I.Finish,action:`edit`}}))return;let n=this.editedFeatureId;this.setCursor(this.cursors.dragEnd),this.editedFeatureId=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:We})}registerBehaviors(e){this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.pointSearch=new gn(e,this.pixelDistance,this.clickBoundingBox),this.mutateFeature=new At(e,{validate:this.validate})}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode&&(t.zIndex=30,t.markerHeight=this.getNumericStylingValue(this.styles?.markerHeight,40,e),t.markerWidth=this.getNumericStylingValue(this.styles?.markerWidth,32,e),t.markerUrl=this.getUrlStylingValue(this.styles?.markerUrl,Je,e)),t}validateFeature(e){return this.validateModeFeature(e,e=>hn(e,this.coordinatePrecision))}onLeftClick(e){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode,[L.MARKER]:!0},context:{updateType:I.Finish,action:We}});t&&this.onFinish(t.id,{mode:this.mode,action:We})}onRightClick(e){if(!this.editable)return;let t=this.pointSearch.getNearestPointFeature(e);t&&this.mutateFeature.deleteFeatureIfPresent(t.id)}afterFeatureUpdated(e){this.editedFeatureId===e.id&&(this.editedFeatureId=void 0,this.setCursor(this.cursors.create))}},Lr=[{key:`z`,heldKeys:[`meta`]},{key:`z`,heldKeys:[`control`]}],Rr=[{key:`z`,heldKeys:[`meta`,`shift`]},{key:`z`,heldKeys:[`control`,`shift`]},{key:`y`,heldKeys:[`control`]}],zr=(e,t)=>{let n=e.key.toLowerCase(),r=new Set(e.heldKeys.map(e=>e.toLowerCase()).filter(e=>e!==n));if(t.key.toLowerCase()!==n)return!1;let i=new Set(t.heldKeys.map(e=>e.toLowerCase()));if(r.size!==i.size)return!1;for(let e of i)if(!r.has(e))return!1;return!0},Br=class{constructor(e){this.undoKeyboardShortcuts=void 0,this.redoKeyboardShortcuts=void 0,this.undoKeyboardShortcuts=e?.undo??Lr,this.redoKeyboardShortcuts=e?.redo??Rr}isUndoKeyboardShortcut(e){return this.undoKeyboardShortcuts.some(t=>zr(e,t))}isRedoKeyboardShortcut(e){return this.redoKeyboardShortcuts.some(t=>zr(e,t))}};function Vr(e){return e!==void 0&&Number.isFinite(e)?Math.max(0,Math.floor(e)):1/0}var Hr=`undo`,Ur=`redo`,Wr=`push`,Gr=`mode`,Kr=`session`,qr=class{constructor(e){this.getModeState=void 0,this.getModeHistorySizes=void 0,this.undoMode=void 0,this.redoMode=void 0,this.clearModeHistory=void 0,this.onHistoryChange=void 0,this.maxStackSize=void 0,this.lastHistorySizes={undoSize:0,redoSize:0},this.maxStackSize=Vr(e?.maxStackSize)}getMaxStackSize(){return this.maxStackSize}register(e){this.getModeState=e.getModeState,this.getModeHistorySizes=e.getModeHistorySizes,this.undoMode=e.undoMode,this.redoMode=e.redoMode,this.clearModeHistory=e.clearModeHistory,this.onHistoryChange=e.onHistoryChange}inDrawingState(){return!!this.getModeState&&this.getModeState()===`drawing`}canUndo(){if(!this.inDrawingState())return!1;let{undoSize:e}=this.getHistorySizes();return e>0}canRedo(){if(!this.inDrawingState())return!1;let{redoSize:e}=this.getHistorySizes();return e>0}undo(){return!(!this.canUndo()||!this.undoMode||(this.undoMode(),this.emitHistoryChange(Hr),0))}redo(){return!(!this.canRedo()||!this.redoMode||(this.redoMode(),this.emitHistoryChange(Ur),0))}clearHistory(){this.clearModeHistory&&this.clearModeHistory(),this.lastHistorySizes={undoSize:0,redoSize:0}}getHistorySizes(){return this.getModeHistorySizes?this.getModeHistorySizes():{undoSize:0,redoSize:0}}undoSize(){return this.getHistorySizes().undoSize}redoSize(){return this.getHistorySizes().redoSize}emitPushIfHistoryChangedFromLastSnapshot(){if(!this.inDrawingState())return;let e=this.getHistorySizes();e.undoSize===this.lastHistorySizes.undoSize&&e.redoSize===this.lastHistorySizes.redoSize||this.emitHistoryChange(Wr)}emitPushIfHistoryChanged(e){if(!this.inDrawingState())return;let t=this.getHistorySizes();t.undoSize===e.undoSize&&t.redoSize===e.redoSize||this.emitHistoryChange(Wr)}emitHistoryChange(e){if(!this.onHistoryChange)return;let{undoSize:t,redoSize:n}=this.getHistorySizes();this.lastHistorySizes={undoSize:t,redoSize:n},this.onHistoryChange({cause:e,stack:Gr,undoStackSize:t,redoStackSize:n})}},Y=class{constructor(e){this.draw=void 0,this.onHistoryChange=void 0,this.maxStackSize=void 0,this.historyById={},this.undoStack=[],this.ignoreProgrammaticCreate={},this.ignoreProgrammaticDelete={},this.deletedFeatureIds={},this.redoStack=[],this.emitStackChange=e=>{this.onHistoryChange&&this.onHistoryChange({cause:e,stack:Kr,undoStackSize:this.undoStack.length,redoStackSize:this.redoStack.length})},this.handleChange=(e,t,n)=>{if(!this.draw||this.isDrawing()||this.maxStackSize===0||t!==`delete`&&t!==`create`)return;if(t===`create`){if(n===void 0||!(`origin`in n)||n.origin!==`api`)return;let t=!1,r=Array.isArray(e)?e:[e],i=[];for(let e of r){if(this.ignoreProgrammaticCreate[e]){delete this.ignoreProgrammaticCreate[e],delete this.deletedFeatureIds[e];continue}let n=String(e),r=this.draw.getSnapshotFeature(e);r&&(this.deletedFeatureIds[e]&&(this.historyById[n]=[],delete this.deletedFeatureIds[e]),this.historyById[n]||(this.historyById[n]=[]),this.historyById[n].push(r),i.push({id:e,toIndex:this.historyById[n].length-1,snapshot:r}),t=!0)}if(i.length>1)this.pushUndoStackEntry({id:i[0].id,toIndex:i[0].toIndex,action:`batch-create`,metadata:{entries:i}});else if(i.length===1){let e=i[0];this.pushUndoStackEntry({id:e.id,toIndex:e.toIndex,action:`single`})}t&&(this.redoStack.length=0,this.emitStackChange(Wr));return}let r=!1,i=Array.isArray(e)?e:[e],a=[];for(let e of i){let t=String(e);if(this.ignoreProgrammaticDelete[e]){delete this.ignoreProgrammaticDelete[e];continue}if(!this.historyById[t])continue;let n=this.historyById[t].length-1;if(n>=0){let i=this.historyById[t][n];if(!i)continue;a.push({id:e,toIndex:n,snapshot:i}),this.deletedFeatureIds[e]=!0,r=!0}}if(a.length>1)this.pushUndoStackEntry({id:a[0].id,toIndex:a[0].toIndex,action:`batch-delete`,metadata:{entries:a}});else if(a.length===1){let e=a[0];this.pushUndoStackEntry({id:e.id,toIndex:e.toIndex,action:`single`})}r&&(this.redoStack.length=0,this.emitStackChange(Wr))},this.handleFinish=e=>{if(!this.draw||this.maxStackSize===0)return;let t=Array.isArray(e)?e:[e],n=!1;for(let e of t){if(e==null)continue;let t=String(e),r=this.draw.getSnapshotFeature(e);r&&(this.historyById[t]||(this.historyById[t]=[]),this.historyById[t].push(r),n||=(this.redoStack.length=0,!0),this.pushUndoStackEntry({id:e,toIndex:this.historyById[t].length-1,action:`single`}),this.emitStackChange(Wr))}},this.maxStackSize=Vr(e?.maxStackSize)}register(e){this.draw===e.draw?this.onHistoryChange=e.onHistoryChange:(this.draw&&(this.draw.off(`change`,this.handleChange),this.draw.off(`finish`,this.handleFinish)),this.draw=e.draw,this.draw.on(`change`,this.handleChange),this.draw.on(`finish`,this.handleFinish),this.onHistoryChange=e.onHistoryChange)}pushUndoStackEntry(e){this.maxStackSize!==0&&(this.undoStack.push(e),this.undoStack.length>this.maxStackSize&&this.undoStack.shift())}pushRedoStackEntry(e){this.maxStackSize!==0&&(this.redoStack.push(e),this.redoStack.length>this.maxStackSize&&this.redoStack.shift())}isDrawing(){return!!this.draw&&this.draw.getModeState()===`drawing`}canUndo(){return!(!this.draw||this.isDrawing())&&this.undoStack.length>0}canRedo(){return!(!this.draw||this.isDrawing())&&this.redoStack.length>0}undo(){if(!this.canUndo()||!this.draw)return!1;let e=this.undoStack.pop();if(!e)return this.emitStackChange(Hr),!1;if(e.action===`batch-create`){let t=e.metadata?.entries||[];if(t.length===0)return this.emitStackChange(Hr),!1;let n=t.map(e=>e.id);return n.forEach(e=>{this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0}),this.draw.removeFeatures(n),this.pushRedoStackEntry({id:t[0].id,toIndex:t[0].toIndex,action:`batch-create`,metadata:{entries:t}}),this.emitStackChange(Hr),!0}if(e.action===`batch-delete`){let t=e.metadata?.entries||[];if(t.length===0)return this.emitStackChange(Hr),!1;let n=t.map(e=>e.snapshot).filter(e=>e!==void 0);return n.length>0&&(t.forEach(e=>{this.ignoreProgrammaticCreate[e.id]=!0,delete this.deletedFeatureIds[e.id]}),this.draw.addFeatures(n)),this.pushRedoStackEntry({id:t[0].id,toIndex:t[0].toIndex,action:`batch-delete`,metadata:{entries:t}}),this.emitStackChange(Hr),!0}let t=e.id,n=e.toIndex,r=String(t),i=this.historyById[r];if(!i||i.length===0)return this.emitStackChange(Hr),!1;let a=Math.min(n,i.length-1);if(!this.draw.hasFeature(t)){let e=i[a];return e?(this.ignoreProgrammaticCreate[t]=!0,delete this.deletedFeatureIds[t],this.draw.addFeatures([e]),this.pushRedoStackEntry({id:t,toIndex:a,action:`delete`,snapshot:e}),this.emitStackChange(Hr),!0):(this.emitStackChange(Hr),!1)}if(a<=0)return this.pushRedoStackEntry({id:t,toIndex:0,action:`create`}),this.ignoreProgrammaticDelete[t]=!0,this.deletedFeatureIds[t]=!0,this.draw.removeFeatures([t]),this.undoStack=this.undoStack.filter(e=>e.id!==t),this.emitStackChange(Hr),!0;let o=i[a],s=i[a-1];return o&&this.pushRedoStackEntry({id:t,toIndex:a,snapshot:o,action:`update`}),this.draw.updateFeatureGeometry(t,s.geometry),i.length=a,this.emitStackChange(Hr),!0}redo(){if(!this.canRedo()||!this.draw)return!1;let{id:e,toIndex:t,snapshot:n,action:r,metadata:i}=this.redoStack.pop();if(r===`batch-create`){let e=i?.entries||[];if(e.length===0)return this.emitStackChange(Ur),!1;let t=e.map(e=>e.snapshot).filter(e=>e!==void 0);return t.length>0&&(e.forEach(e=>{this.ignoreProgrammaticCreate[e.id]=!0}),this.draw.addFeatures(t)),this.pushUndoStackEntry({id:e[0].id,toIndex:e[0].toIndex,action:`batch-create`,metadata:{entries:e}}),this.emitStackChange(Ur),!0}if(r===`batch-delete`){let e=i?.entries||[];if(e.length===0)return this.emitStackChange(Ur),!1;let t=e.map(e=>e.id);return t.forEach(e=>{this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0}),this.draw.removeFeatures(t),this.pushUndoStackEntry({id:e[0].id,toIndex:e[0].toIndex,action:`batch-delete`,metadata:{entries:e}}),this.emitStackChange(Ur),!0}let a=String(e),o=this.historyById[a]||(this.historyById[a]=[]);if(r===`delete`)return this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0,this.draw.removeFeatures([e]),this.pushUndoStackEntry({id:e,toIndex:t,action:`single`}),this.emitStackChange(Ur),!0;if(t<=0){let t=o[0];return!!t&&(this.ignoreProgrammaticCreate[e]=!0,this.draw.addFeatures([t]),this.pushUndoStackEntry({id:e,toIndex:0,action:`single`}),this.emitStackChange(Ur),!0)}let s=n||o[t];return!!s&&(o.length===t?o.push(s):(o[t]=s,o.length=t+1),this.draw.updateFeatureGeometry(e,s.geometry),this.pushUndoStackEntry({id:e,toIndex:t,action:`single`}),this.emitStackChange(Ur),!0)}clearHistory(){let e={};if(this.draw&&!this.isDrawing()){let t=this.draw.getSnapshot();for(let n of t)e[String(n.id)]=[n]}this.historyById=e,this.undoStack=[],this.ignoreProgrammaticCreate={},this.ignoreProgrammaticDelete={},this.deletedFeatureIds={},this.redoStack=[]}undoSize(){return this.undoStack.length}redoSize(){return this.redoStack.length}},Jr=class{constructor(e){this.modeLevel=void 0,this.sessionLevel=void 0,this.shouldPreferMode=void 0,this.onHistoryChange=void 0,this.shouldEmitHistoryChange=void 0,this.modeLevel=e.modeLevel,this.sessionLevel=e.sessionLevel,this.shouldPreferMode=e.shouldPreferMode,this.onHistoryChange=e.onHistoryChange,this.shouldEmitHistoryChange=e.shouldEmitHistoryChange??(()=>!0)}emitStackHistoryChange(e){this.shouldEmitHistoryChange()&&this.onHistoryChange&&this.onHistoryChange({cause:e.cause,stack:e.stack,undoSize:e.undoStackSize,redoSize:e.redoStackSize})}hasSessionUndo(){return!!(this.sessionLevel&&this.sessionLevel.canUndo())}hasSessionRedo(){return!!(this.sessionLevel&&this.sessionLevel.canRedo())}activeStackForUndo(){var e,t;return this.shouldPreferMode()&&(e=this.modeLevel)!=null&&e.canUndo()?Gr:this.hasSessionUndo()?Kr:(t=this.modeLevel)!=null&&t.canUndo()?Gr:void 0}activeStackForRedo(){var e,t;return this.shouldPreferMode()&&(e=this.modeLevel)!=null&&e.canRedo()?Gr:this.hasSessionRedo()?Kr:(t=this.modeLevel)!=null&&t.canRedo()?Gr:void 0}canUndo(){return this.activeStackForUndo()!==void 0}canRedo(){return this.activeStackForRedo()!==void 0}undo(){let e=this.activeStackForUndo();return!!e&&(e===Gr?!!this.modeLevel&&this.modeLevel.undo():!(!this.sessionLevel||!this.sessionLevel.canUndo())&&this.sessionLevel.undo())}redo(){let e=this.activeStackForRedo();return!!e&&(e===Gr?!!this.modeLevel&&this.modeLevel.redo():!(!this.sessionLevel||!this.sessionLevel.canRedo())&&this.sessionLevel.redo())}clearHistory(){this.modeLevel&&this.modeLevel.clearHistory(),this.sessionLevel&&this.sessionLevel.clearHistory()}emitPushAfterFinish(){this.sessionLevel?this.emitStackHistoryChange({cause:Wr,undoStackSize:this.sessionLevel.undoSize(),redoStackSize:this.sessionLevel.redoSize(),stack:Kr}):this.modeLevel&&this.emitStackHistoryChange({cause:Wr,undoStackSize:this.modeLevel.undoSize(),redoStackSize:this.modeLevel.redoSize(),stack:Gr})}},Yr=class{constructor(e){var t,n,r,i;this._modes=void 0,this._mode=void 0,this._adapter=void 0,this._enabled=!1,this._store=void 0,this._eventListeners=void 0,this._instanceSelectModes=void 0,this.sessionUndoRedoEnabled=!1,this.keyboardShortcutsMatcher=void 0,this.drawingUndoRedo=void 0,this.sessionUndoRedo=void 0,this.undoRedoCoordinator=void 0,this._adapter=e.adapter,this._instanceSelectModes=[];let a=e==null||(t=e.undoRedo)==null?void 0:t.modeLevel;a&&(this.drawingUndoRedo=a);let o=e==null||(n=e.undoRedo)==null?void 0:n.keyboardShortcuts;o&&(this.keyboardShortcutsMatcher=o),this.sessionUndoRedoEnabled=!!(!(e==null||(r=e.undoRedo)==null)&&r.sessionLevel);let s=e==null||(i=e.undoRedo)==null?void 0:i.sessionLevel;this._mode=new Jn;let c=new Set,l=e.modes.reduce((e,t)=>{if(c.has(t.mode))throw Error(`There is already a ${t.mode} mode provided`);return c.add(t.mode),e[t.mode]=t,e},{}),u=Object.keys(l);if(u.length===0)throw Error(`No modes provided`);u.forEach(e=>{l[e].type===Qe.Select&&this._instanceSelectModes.push(e)}),this._modes=F({},l,{static:this._mode}),this._eventListeners={change:[],select:[],deselect:[],finish:[],ready:[],history:[]},this._store=new mr({tracked:!!e.tracked,idStrategy:e.idStrategy?e.idStrategy:void 0});let d=e=>{let t=[];return{changed:t,unchanged:this._store.copyAll().filter(n=>!e.includes(n.id)||(t.push(n),!1))}},f=(e,t)=>{this._enabled&&(this._eventListeners.finish.forEach(n=>{n(e,t)}),this.emitHistoryChangeAfterFinish())},p=(e,t,n)=>{if(!this._enabled)return;this._eventListeners.change.forEach(r=>{r(e,t,n)}),this.emitDrawingPushIfHistoryChangedFromLastSnapshot();let{changed:r,unchanged:i}=d(e);t===`create`?this._adapter.render({created:r,deletedIds:[],unchanged:i,updated:[]},this.getModeStyles()):t===`update`?this._adapter.render({created:[],deletedIds:[],unchanged:i,updated:r},this.getModeStyles()):t===`delete`?this._adapter.render({created:[],deletedIds:e,unchanged:i,updated:[]},this.getModeStyles()):t===`styling`&&this._adapter.render({created:[],deletedIds:[],unchanged:i,updated:[]},this.getModeStyles())},m=e=>{if(!this._enabled)return;this._eventListeners.select.forEach(t=>{t(e)});let{changed:t,unchanged:n}=d([e]);this._adapter.render({created:[],deletedIds:[],unchanged:n,updated:t},this.getModeStyles())},h=e=>{if(!this._enabled)return;this._eventListeners.deselect.forEach(t=>{t(e)});let{changed:t,unchanged:n}=d([e]);t&&this._adapter.render({created:[],deletedIds:[],unchanged:n,updated:t},this.getModeStyles())};Object.keys(this._modes).forEach(e=>{var t;this._modes[e].register({mode:e,store:this._store,setCursor:this._adapter.setCursor.bind(this._adapter),project:this._adapter.project.bind(this._adapter),unproject:this._adapter.unproject.bind(this._adapter),setDoubleClickToZoom:this._adapter.setDoubleClickToZoom.bind(this._adapter),onChange:p,onSelect:m,onDeselect:h,onFinish:f,coordinatePrecision:this._adapter.getCoordinatePrecision(),undoRedoMaxStackSize:(t=this.drawingUndoRedo)==null||t.getMaxStackSize==null?void 0:t.getMaxStackSize()})}),this.sessionUndoRedoEnabled&&s&&(this.sessionUndoRedo=s,s.register({draw:this,onHistoryChange:e=>{var t;(t=this.undoRedoCoordinator)==null||t.emitStackHistoryChange(e)}})),this.drawingUndoRedo&&this.drawingUndoRedo.register({getModeState:()=>this.getModeState(),getModeHistorySizes:()=>this.getDrawingHistorySizes(),undoMode:()=>{this._mode.undo&&this._mode.undo()},redoMode:()=>{this._mode.redo&&this._mode.redo()},clearModeHistory:()=>{let e=this._mode;e.clearHistory&&e.clearHistory()},onHistoryChange:e=>{var t;(t=this.undoRedoCoordinator)==null||t.emitStackHistoryChange(e)}}),this.undoRedoCoordinator=new Jr({modeLevel:this.drawingUndoRedo,sessionLevel:this.sessionUndoRedo,shouldPreferMode:()=>this.getModeState()===`drawing`,onHistoryChange:e=>{this._eventListeners.history.forEach(t=>{t(e)})},shouldEmitHistoryChange:()=>this._enabled})}checkEnabled(){if(!this._enabled)throw Error(`Terra Draw is not enabled`)}handleUndoRedoKeyboardShortcut(e){if(!this.drawingUndoRedo&&!this.sessionUndoRedoEnabled||!this.keyboardShortcutsMatcher)return!1;let t=this.keyboardShortcutsMatcher.isUndoKeyboardShortcut(e),n=this.keyboardShortcutsMatcher.isRedoKeyboardShortcut(e);if(t){if(!this.canUndo())return!1;let t=this.undo();return t&&e.preventDefault(),t}if(n){if(!this.canRedo())return!1;let t=this.redo();return t&&e.preventDefault(),t}return!1}getDrawingHistorySizes(){return{undoSize:this._mode.undoSize&&typeof this._mode.undoSize==`function`?this._mode.undoSize():0,redoSize:this._mode.redoSize&&typeof this._mode.redoSize==`function`?this._mode.redoSize():0}}emitDrawingPushIfHistoryChangedFromLastSnapshot(){this.drawingUndoRedo&&this.drawingUndoRedo.emitPushIfHistoryChangedFromLastSnapshot()}emitDrawingPushIfHistoryChanged(e){this.drawingUndoRedo&&this.drawingUndoRedo.emitPushIfHistoryChanged(e)}emitHistoryChangeAfterFinish(){var e;(e=this.undoRedoCoordinator)==null||e.emitPushAfterFinish()}getModeStyles(){let e={},t=this._instanceSelectModes.includes(this._mode.mode)?this._mode.mode:void 0;return Object.keys(this._modes).forEach(n=>{e[n]=e=>t&&e.properties[Ye.SELECTED]?this._modes[t].styleFeature.bind(this._modes[t])(e):this._modes[n].styleFeature.bind(this._modes[n])(e)}),e}featuresAtLocation({lng:e,lat:t},n){let r=n&&n.pointerDistance!==void 0?n.pointerDistance:30,i=!n||n.ignoreSelectFeatures===void 0||n.ignoreSelectFeatures,a=!(!n||n.ignoreCoordinatePoints===void 0)&&n.ignoreCoordinatePoints,o=!(!n||n.ignoreCurrentlyDrawing===void 0)&&n.ignoreCurrentlyDrawing,s=!(!n||n.ignoreClosingPoints===void 0)&&n.ignoreClosingPoints,c=!(!n||n.ignoreSnappingPoints===void 0)&&n.ignoreSnappingPoints,l=this._adapter.unproject.bind(this._adapter),u=this._adapter.project.bind(this._adapter),d=u(e,t),f=Rt({unproject:l,point:d,pointerDistance:r});return this._store.search(f).filter(l=>{if(i&&(l.properties[Ye.MID_POINT]||l.properties[Ye.SELECTION_POINT])||a&&l.properties[L.COORDINATE_POINT]||s&&l.properties[L.CLOSING_POINT]||o&&l.properties[L.CURRENTLY_DRAWING]||c&&l.properties[L.SNAPPING_POINT])return!1;if(l.geometry.type===`Point`){let e=l.geometry.coordinates;return Pt(d,u(e[0],e[1]))<r}if(l.geometry.type===`LineString`){let e=l.geometry.coordinates;for(let t=0;t<e.length-1;t++){let n=e[t],i=e[t+1];if(Pn(d,u(n[0],n[1]),u(i[0],i[1]))<r)return!0}return!1}if(Nn([e,t],l.geometry.coordinates))return!0;if(n!=null&&n.includePolygonsWithinPointerDistance){let e=l.geometry.coordinates;for(let t of e)for(let e=0;e<t.length-1;e++){let n=t[e],i=t[e+1];if(Pn(d,u(n[0],n[1]),u(i[0],i[1]))<r)return!0}}return!1}).map(r=>{if(n==null||!n.addClosestCoordinateInfoToProperties)return r;let i;if(r.geometry.type===`Polygon`)i=r.geometry.coordinates[0].slice(0,-1);else{if(r.geometry.type!==`LineString`)return r;i=r.geometry.coordinates}let a,o=-1,s=1/0;for(let e=0;e<i.length;e++){let t=i[e],n=Pt(u(t[0],t[1]),d);n<s&&(o=e,s=n,a=t)}return r.properties.closestCoordinateIndexToEvent=o,r.properties.closestCoordinatePixelDistanceToEvent=s,r.properties.closestCoordinateDistanceKmToEvent=tt(a,[e,t]),r})}getSelectModeOrThrow(e=void 0){let t=this.getSelectMode({switchToSelectMode:!0,selectMode:e});if(!t)throw Error(`No select mode defined in instance`);return t}getSelectMode({switchToSelectMode:e,selectMode:t}){this.checkEnabled();let n=this.getMode();if(this._instanceSelectModes.length===0)return null;if(t!==void 0&&!this._instanceSelectModes.includes(t))throw Error(`No select mode with this name present: ${t}`);let r;return r=t===void 0?this._instanceSelectModes.includes(n)?n:this._instanceSelectModes[0]:t,e&&n!==r&&this.setMode(r),this._modes[r]}isGuidanceFeature(e){return!!(e.properties[Ye.MID_POINT]||e.properties[Ye.SELECTION_POINT]||e.properties[L.COORDINATE_POINT]||e.properties[L.SNAPPING_POINT])}setModeStyles(e,t){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._modes[e].styles=t}updateModeOptions(e,t){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._modes[e].updateOptions(t)}getSnapshot(){return this._store.copyAll()}getSnapshotFeature(e){if(this._store.has(e))return this._store.copy(e)}clear(){this.checkEnabled(),this._adapter.clear()}get enabled(){return this._enabled}set enabled(e){throw Error(`Enabled is read only`)}getMode(){return this._mode.mode}getModeState(){return this._mode.state}setMode(e){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._mode.stop(),this._mode=this._modes[e],this._mode.start()}removeFeatures(e){this.checkEnabled();let t=[],n=[],r;e.forEach(e=>{if(!this._store.has(e))throw Error(`No feature with id ${e}, can not delete`);let i=this._store.getPropertiesCopy(e);i[Ye.SELECTED]&&this.deselectFeature(e),i[L.CURRENTLY_DRAWING]&&this._modes[i.mode]?r=i.mode:(i[L.COORDINATE_POINT_IDS]&&t.push(...i[L.COORDINATE_POINT_IDS]),n.push(e))}),this._store.delete([...n,...t],{origin:`api`}),r&&this._modes[r]&&this._modes[r].cleanUp()&&this._modes[r].cleanUp()}selectFeature(e,t){this.getSelectModeOrThrow(t).selectFeature(e)}deselectFeature(e){this.getSelectModeOrThrow().deselectFeature(e)}getFeatureId(){return this._store.getId()}hasFeature(e){return this._store.has(e)}checkIsReservedProperty(e){return![...Object.values(Ye),...Object.values(L)].includes(e)}updateFeatureProperties(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);let r=n.properties.mode;if(!this._modes[r])throw Error(`No mode with name ${r} present in instance`);let i=Object.entries(t);i.forEach(([e,t])=>{if(!this.checkIsReservedProperty(e))throw Error(`You are trying to update a reserved property name: ${e}. Please choose another name.`);if(t!==void 0&&!Pr(t))throw Error(`Invalid JSON value provided for property ${e}`)}),this._store.updateProperty(i.map(([e,t])=>({id:n.id,property:e,value:t})),{origin:`api`})}updateFeatureGeometry(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);if(!(n&&t&&t.type&&t.coordinates))throw Error(`Invalid geometry provided`);if(t.type!==n.geometry.type)throw Error(`Geometry type mismatch: expected ${n.geometry.type}, got ${t.type}`);let r=n.properties.mode,i=this._modes[r];if(!i)throw Error(`No mode with name ${r} present in instance`);let a=F({},n,{geometry:t}),o=i.validateFeature(a);if(!o.valid)throw Error(`Feature validation failed: ${o.reason||`Unknown reason`}`);if(this._store.updateGeometry([{id:n.id,geometry:t}],{origin:`api`}),i.afterFeatureUpdated){i.afterFeatureUpdated(a);let e=a.properties[Ye.SELECTED],t=this.getSelectMode({switchToSelectMode:!1});t&&e&&t.afterFeatureUpdated(a)}}transformFeatureGeometry(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);let r=n.properties.mode,i=this._modes[r];if(!i)throw Error(`No mode with name ${r} present in instance`);let a;if(n.geometry.type===`Polygon`)a=n.geometry.coordinates[0];else{if(n.geometry.type!==`LineString`)throw Error(`Feature geometry type ${n.geometry.type} is not supported for transformation`);a=n.geometry.coordinates}if(t.projection!=`web-mercator`)throw Error(`Projection ${t.projection} is not currently supported for transformation`);if(t.type===`scale`){let{x:e,y:n}=U(t.origin[0],t.origin[1]);Un({coordinates:a,originX:e,originY:n,xScale:t.options.xScale||1,yScale:t.options.yScale||1})}else t.type===`rotate`&&(n=zn(n,t.options.angle||0),a=n.geometry.type===`Polygon`?n.geometry.coordinates[0]:n.geometry.coordinates);if(a=a.map(e=>[H(e[0],this._adapter.getCoordinatePrecision()),H(e[1],this._adapter.getCoordinatePrecision())]),n.geometry.coordinates=n.geometry.type===`Polygon`?[a]:a,this._store.updateGeometry([{id:n.id,geometry:n.geometry}],{origin:`api`}),i.afterFeatureUpdated){i.afterFeatureUpdated(n);let e=n.properties[Ye.SELECTED],t=this.getSelectMode({switchToSelectMode:!1});t&&e&&t.afterFeatureUpdated(n)}}undo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.undo()}canUndo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.canUndo()}canRedo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.canRedo()}redo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.redo()}clearUndoRedoHistory(){this.checkEnabled(),this.undoRedoCoordinator&&this.undoRedoCoordinator.clearHistory()}addFeatures(e){return this.checkEnabled(),e.length===0?[]:this._store.load(e,e=>{if(z(e)){let t=e.properties.mode,n=this._modes[t];if(!n)return{id:e.id,valid:!1,reason:`${t} mode is not in the list of instantiated modes`};let r=n.validateFeature.bind(n)(e);return{id:e.id,valid:r.valid,reason:r.reason?r.reason:r.valid?void 0:`Feature is invalid`}}return{id:e.id,valid:!1,reason:`Mode property does not exist`}},e=>{if(z(e)){let t=this._modes[e.properties.mode];t&&t.afterFeatureAdded&&t.afterFeatureAdded(e)}},{origin:`api`})}start(){this._enabled||(this._enabled=!0,this._adapter.register({onReady:()=>{this._eventListeners.ready.forEach(e=>{e()})},getState:()=>this._mode.state,onClick:e=>{let t=this.drawingUndoRedo?this.drawingUndoRedo.getHistorySizes():{undoSize:0,redoSize:0};this._mode.onClick(e),this.emitDrawingPushIfHistoryChanged(t)},onMouseMove:e=>{this._mode.onMouseMove(e)},onKeyDown:e=>{this.handleUndoRedoKeyboardShortcut(e)||this._mode.onKeyDown(e)},onKeyUp:e=>{let t=this.drawingUndoRedo?this.drawingUndoRedo.getHistorySizes():{undoSize:0,redoSize:0};this._mode.onKeyUp(e),this.emitDrawingPushIfHistoryChanged(t)},onDragStart:(e,t)=>{this._mode.onDragStart(e,t)},onDrag:(e,t)=>{this._mode.onDrag(e,t)},onDragEnd:(e,t)=>{this._mode.onDragEnd(e,t)},onClear:()=>{this._mode.cleanUp(),this._store.clear({origin:`api`})}}))}getFeaturesAtLngLat(e,t){let{lng:n,lat:r}=e;return this.featuresAtLocation({lng:n,lat:r},t)}getFeaturesAtPointerEvent(e,t){let n=this._adapter.getLngLatFromEvent.bind(this._adapter)(e);return n===null?[]:this.featuresAtLocation(n,t)}stop(){this._enabled&&(this._enabled=!1,this._adapter.unregister())}on(e,t){let n=this._eventListeners[e];n.includes(t)||n.push(t)}off(e,t){let n=this._eventListeners[e];n.includes(t)&&n.splice(n.indexOf(t),1)}},Xr=class extends Ar.TerraDrawBaseAdapter{constructor(e){super(e),this._renderBeforeLayerId=void 0,this._prefixId=void 0,this._initialDragPan=void 0,this._initialDragRotate=void 0,this._nextRender=void 0,this._map=void 0,this._container=void 0,this.changedIds={deletion:!1,points:!1,linestrings:!1,polygons:!1,styling:!1},this._map=e.map,this._container=this._map.getContainer(),this._initialDragRotate=this._map.dragRotate.isEnabled(),this._initialDragPan=this._map.dragPan.isEnabled(),this._renderBeforeLayerId=e.renderBelowLayerId,this._prefixId=e.prefixId||`td`}hashCode(e){let t=0;for(let n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return Math.abs(t)}resizeImage(e,t,n,r){let i=new Image;i.crossOrigin=`anonymous`,i.onload=()=>{let e=document.createElement(`canvas`);e.width=t,e.height=n;let a=e.getContext(`2d`);if(!a)throw Error(`Could not get canvas context`);a.drawImage(i,0,0,t,n),r(e.toDataURL())},i.src=e}_addGeoJSONSource(e,t){this._map.addSource(e,{type:`geojson`,data:{type:`FeatureCollection`,features:t},tolerance:0})}_addFillLayer(e){return this._map.addLayer({id:e,source:e,type:`fill`,layout:{"fill-sort-key":[`get`,`zIndex`]},paint:{"fill-color":[`get`,`polygonFillColor`],"fill-opacity":[`get`,`polygonFillOpacity`]}})}_addFillOutlineLayer(e){return this._map.addLayer({id:e+`-outline`,source:e,type:`line`,layout:{"line-sort-key":[`get`,`zIndex`]},paint:{"line-width":[`get`,`polygonOutlineWidth`],"line-color":[`get`,`polygonOutlineColor`],"line-opacity":[`get`,`polygonOutlineOpacity`]}})}_addLineLayer(e){return this._map.addLayer({id:e,source:e,type:`line`,layout:{"line-sort-key":[`get`,`zIndex`]},paint:{"line-width":[`get`,`lineStringWidth`],"line-color":[`get`,`lineStringColor`],"line-opacity":[`get`,`lineStringOpacity`]}})}_addPointLayer(e){return this._map.addLayer({id:e,source:e,type:`circle`,layout:{"circle-sort-key":[`get`,`zIndex`]},paint:{"circle-stroke-color":[`get`,`pointOutlineColor`],"circle-stroke-width":[`get`,`pointOutlineWidth`],"circle-stroke-opacity":[`get`,`pointOutlineOpacity`],"circle-radius":[`get`,`pointWidth`],"circle-color":[`get`,`pointColor`],"circle-opacity":[`get`,`pointOpacity`]}})}_addMarkerLayer(e){return this._map.addLayer({id:e+`-marker`,source:e,type:`symbol`,filter:[`has`,`markerId`],layout:{"icon-image":[`image`,[`get`,`markerId`]],"icon-anchor":`bottom`,"icon-allow-overlap":!0}})}_addLayer(e,t){t===`Point`&&(this._addPointLayer(e),this._addMarkerLayer(e)),t===`LineString`&&this._addLineLayer(e),t===`Polygon`&&(this._addFillLayer(e),this._addFillOutlineLayer(e))}_addGeoJSONLayer(e,t){let n=`${this._prefixId}-${e.toLowerCase()}`;return this._addGeoJSONSource(n,t),this._addLayer(n,e),n}_setGeoJSONLayerData(e,t){let n=`${this._prefixId}-${e.toLowerCase()}`;return this._map.getSource(n).setData({type:`FeatureCollection`,features:t}),n}updateChangedIds(e){[...e.updated,...e.created].forEach(e=>{e.geometry.type===`Point`?this.changedIds.points=!0:e.geometry.type===`LineString`?this.changedIds.linestrings=!0:e.geometry.type===`Polygon`&&(this.changedIds.polygons=!0)}),e.deletedIds.length>0&&(this.changedIds.deletion=!0),e.created.length===0&&e.updated.length===0&&e.deletedIds.length===0&&(this.changedIds.styling=!0)}getLngLatFromEvent(e){let{left:t,top:n}=this._container.getBoundingClientRect();return this.unproject(e.clientX-t,e.clientY-n)}getMapEventElement(){return this._map.getCanvas()}setDraggability(e){e?(this._initialDragRotate&&this._map.dragRotate.enable(),this._initialDragPan&&this._map.dragPan.enable()):(this._initialDragRotate&&this._map.dragRotate.disable(),this._initialDragPan&&this._map.dragPan.disable())}project(e,t){let{x:n,y:r}=this._map.project({lng:e,lat:t});return{x:n,y:r}}unproject(e,t){let{lng:n,lat:r}=this._map.unproject({x:e,y:t});return{lng:n,lat:r}}setCursor(e){let t=this._map.getCanvas();e===`unset`?t.style.removeProperty(`cursor`):t.style.cursor=e}setDoubleClickToZoom(e){e?this._map.doubleClickZoom.enable():this._map.doubleClickZoom.disable()}render(e,t){this.updateChangedIds(e),this._nextRender&&cancelAnimationFrame(this._nextRender),this._nextRender=requestAnimationFrame(()=>{if(!this._currentModeCallbacks)return;let n=[...e.created,...e.updated,...e.unchanged],r=[],i=[],a=[];for(let e=0;e<n.length;e++){let o=n[e],{properties:s}=o,c=t[s.mode](o);if(s.zIndex=c.zIndex,s.zIndex=c.zIndex,o.geometry.type===`Point`){s.pointColor=c.pointColor,s.pointOutlineColor=c.pointOutlineColor,s.pointOutlineWidth=c.pointOutlineWidth;let e=c.pointOutlineOpacity;s.pointOutlineOpacity=e===void 0?1:e,s.pointWidth=c.pointWidth;let t=c.pointOpacity;if(s.pointOpacity=t===void 0?1:t,c.markerUrl&&c.markerWidth&&c.markerHeight){let e=`marker-${this.hashCode(c.markerUrl)}`;this._map.hasImage(e)||this.resizeImage(c.markerUrl,c.markerWidth,c.markerHeight,t=>{this._map.loadImage(t).then(t=>{this._map.hasImage(e)||this._map.addImage(e,t.data)})}),s.markerId=e,s.pointWidth=0}r.push(o)}else if(o.geometry.type===`LineString`){s.lineStringColor=c.lineStringColor,s.lineStringWidth=c.lineStringWidth;let e=c.lineStringOpacity;s.lineStringOpacity=e===void 0?1:e,i.push(o)}else if(o.geometry.type===`Polygon`){let e=c.polygonOutlineOpacity;s.polygonFillColor=c.polygonFillColor,s.polygonFillOpacity=c.polygonFillOpacity,s.polygonOutlineOpacity=e===void 0?1:e,s.polygonOutlineColor=c.polygonOutlineColor,s.polygonOutlineWidth=c.polygonOutlineWidth,a.push(o)}}let o=this.changedIds.deletion||this.changedIds.styling,s=o||this.changedIds.linestrings,c=o||this.changedIds.polygons;(o||this.changedIds.points)&&this._setGeoJSONLayerData(`Point`,r),s&&this._setGeoJSONLayerData(`LineString`,i),c&&this._setGeoJSONLayerData(`Polygon`,a),this.changedIds={points:!1,linestrings:!1,polygons:!1,deletion:!1,styling:!1}})}clear(){this._currentModeCallbacks&&(this._currentModeCallbacks.onClear(),this._nextRender&&=(cancelAnimationFrame(this._nextRender),void 0),this._setGeoJSONLayerData(`Point`,[]),this._setGeoJSONLayerData(`LineString`,[]),this._setGeoJSONLayerData(`Polygon`,[]))}getCoordinatePrecision(){return super.getCoordinatePrecision()}unregister(){super.unregister(),this.changedIds={points:!1,linestrings:!1,polygons:!1,deletion:!1,styling:!1},this._map.removeLayer(`${this._prefixId}-point`),this._map.removeLayer(`${this._prefixId}-point-marker`),this._map.removeSource(`${this._prefixId}-point`),this._map.removeLayer(`${this._prefixId}-linestring`),this._map.removeSource(`${this._prefixId}-linestring`),this._map.removeLayer(`${this._prefixId}-polygon`),this._map.removeLayer(`${this._prefixId}-polygon-outline`),this._map.removeSource(`${this._prefixId}-polygon`)}register(e){var t;super.register(e);let n=this._addGeoJSONLayer(`Polygon`,[]),r=this._addGeoJSONLayer(`LineString`,[]),i=this._addGeoJSONLayer(`Point`,[]);var a;this._renderBeforeLayerId&&(this._map.moveLayer(i,this._renderBeforeLayerId),this._map.moveLayer(r,i),this._map.moveLayer(`${n}-outline`,r),this._map.moveLayer(n,`${n}-outline`)),(t=this._currentModeCallbacks)!=null&&t.onReady&&((a=this._currentModeCallbacks)==null||a.onReady())}},Zr={modes:[`render`,`point`,`marker`,`linestring`,`polygon`,`rectangle`,`angled-rectangle`,`sensor`,`sector`,`circle`,`freehand`,`freehand-linestring`,`select`,`delete-selection`,`delete`,`undo`,`redo`,`download`],open:!1},Qr={modes:[`render`,`point`,`marker`,`linestring`,`polygon`,`rectangle`,`angled-rectangle`,`sensor`,`sector`,`circle`,`freehand`,`freehand-linestring`,`select`,`delete-selection`,`delete`,`undo`,`redo`,`download`],open:!1,modeOptions:{point:new vn({editable:!0,styles:{pointColor:`#FFFFFF`,pointWidth:5,pointOutlineColor:`#666666`,pointOutlineWidth:1}}),marker:new Ir({editable:!0,styles:{markerUrl:`data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20inkscape:version='1.0%20(4035a4fb49,%202020-05-01)'%20sodipodi:docname='poi.svg'%20id='svg4460'%20height='100'%20width='100'%20version='1.1'%3e%3csodipodi:namedview%20inkscape:document-rotation='0'%20inkscape:current-layer='svg4460'%20inkscape:window-maximized='1'%20inkscape:window-y='-8'%20inkscape:window-x='-8'%20inkscape:cy='70.031285'%20inkscape:cx='-78.460726'%20inkscape:zoom='2.02'%20showgrid='false'%20id='namedview11'%20inkscape:window-height='1017'%20inkscape:window-width='1920'%20inkscape:pageshadow='2'%20inkscape:pageopacity='0'%20guidetolerance='10'%20gridtolerance='10'%20objecttolerance='10'%20borderopacity='1'%20bordercolor='%23666666'%20pagecolor='%23ffffff'%20/%3e%3cdefs%20id='defs4462'%20/%3e%3cmetadata%20id='metadata4465'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cpath%20d='M%2050.001528,3.3861402e-7%20C%2030.763177,3.3861402e-7%2015,15.718144%2015,34.901534%20c%200,7.432782%202.373565,14.339962%206.391689,20.019029%20l%2024.338528,42.073163%20c%203.40849,4.452814%205.674917,3.607154%208.509014,-0.23458%20L%2081.083105,51.075788%20C%2081.625418,50.0948%2082.050328,49.050173%2082.421327,47.983517%2084.078241,43.936622%2085.000002,39.521943%2085,34.901534%2085,15.718144%2069.23988,3.3861402e-7%2050.001528,3.3861402e-7%20Z%20m%200,16.35400066138598%20c%2010.359296,0%2018.597616,8.21783%2018.597618,18.547533%200,10.329703%20-8.238322,18.544487%20-18.597618,18.544487%20-10.359299,0%20-18.600672,-8.214784%20-18.600672,-18.544487%200,-10.329703%208.241373,-18.547533%2018.600672,-18.547533%20z'%20style='fill:rgb(95,%2099,%20104);stroke-width:4.26019'%20id='path4135'%20/%3e%3c/svg%3e`,markerWidth:27,markerHeight:27}}),linestring:new dn({editable:!0,styles:{lineStringColor:`#666666`,lineStringWidth:2,closingPointColor:`#FFFFFF`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),polygon:new xn({editable:!0,styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,closingPointColor:`#FAFAFA`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),rectangle:new wn({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),"angled-rectangle":new xr({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),circle:new Nt({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),freehand:new Lt({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,closingPointColor:`#FAFAFA`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),"freehand-linestring":new Nr({styles:{lineStringColor:`#666666`,lineStringWidth:2,closingPointColor:`#FFFFFF`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),sensor:new Or({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,centerPointColor:`#FAFAFA`,centerPointWidth:3,centerPointOutlineColor:`#666666`,centerPointOutlineWidth:1}}),sector:new Tr({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),select:new qn({flags:{point:{feature:{draggable:!1}},marker:{feature:{draggable:!1}},polygon:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},linestring:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},freehand:{feature:{draggable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},"freehand-linestring":{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},circle:{feature:{draggable:!0,coordinates:{resizable:`center`,deletable:!1,midpoints:!1}}},rectangle:{feature:{draggable:!0,rotateable:!0,coordinates:{resizable:`opposite`,deletable:!1,midpoints:!1}}},"angled-rectangle":{feature:{draggable:!0,rotateable:!0,coordinates:{resizable:`opposite`,deletable:!1,midpoints:!1}}},sensor:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},sector:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}}}})},pointLayerLabelSpec:{id:`{prefix}-point-label`,type:`symbol`,source:`{prefix}-point`,filter:[`all`,[`==`,`$type`,`Point`],[`any`,[`==`,`mode`,`point`],[`==`,`mode`,`marker`]]],layout:{"text-field":[`case`,[`all`,[`has`,`elevation`],[`>`,[`get`,`elevation`],0]],[`concat`,`Alt. `,[`to-string`,[`floor`,[`get`,`elevation`]]],` `,[`get`,`elevationUnit`]],``],"symbol-placement":`point`,"text-size":[`interpolate`,[`linear`],[`zoom`],5,10,10,12,13,14,14,16,18,18],"text-overlap":`always`,"text-variable-anchor":[`left`,`right`,`top`,`bottom`],"text-radial-offset":.5,"text-justify":`center`,"text-letter-spacing":.05},paint:{"text-halo-color":`#F7F7F7`,"text-halo-width":2,"text-color":`#232E3D`}},lineLayerLabelSpec:{id:`{prefix}-line-label`,type:`symbol`,source:`{prefix}-line-source`,filter:[`==`,`$type`,`Point`],layout:{"text-field":[`concat`,[`to-string`,[`get`,`distance`]],` `,[`get`,`unit`],[`case`,[`==`,[`get`,`total`],0],``,[`concat`,`
756
+ `);an(u)||(x=function(e){return e.replace(/\bin\s/g,`varying `).replace(`out highp vec4 fragColor;`,``).replace(/fragColor/g,`gl_FragColor`).replace(/texture\(/g,`texture2D(`)}(x),S=function(e){return e.replace(/\bin\s/g,`attribute `).replace(/\bout\s/g,`varying `).replace(/texture\(/g,`texture2D(`)}(S));let C=u.createShader(u.FRAGMENT_SHADER);if(u.isContextLost())return void(this.failedToCreate=!0);if(u.shaderSource(C,x),u.compileShader(C),!u.getShaderParameter(C,u.COMPILE_STATUS))throw Error(`Could not compile fragment shader: ${u.getShaderInfoLog(C)}`);u.attachShader(this.program,C);let w=u.createShader(u.VERTEX_SHADER);if(u.isContextLost())return void(this.failedToCreate=!0);if(u.shaderSource(w,S),u.compileShader(w),!u.getShaderParameter(w,u.COMPILE_STATUS))throw Error(`Could not compile vertex shader: ${u.getShaderInfoLog(w)}`);u.attachShader(this.program,w),this.attributes={};let T={};this.numAttributes=p.length;for(let e=0;e<this.numAttributes;e++)p[e]&&(u.bindAttribLocation(this.program,e,p[e]),this.attributes[p[e]]=e);if(u.linkProgram(this.program),!u.getProgramParameter(this.program,u.LINK_STATUS))throw Error(`Program failed to link: ${u.getProgramInfoLog(this.program)}`);u.deleteShader(w),u.deleteShader(C);for(let e=0;e<y.length;e++){let t=y[e];if(t&&!T[t]){let e=u.getUniformLocation(this.program,t);e&&(T[t]=e)}}this.fixedUniforms=i(e,T),this.terrainUniforms=((e,n)=>({u_depth:new t.bY(e,n.u_depth),u_terrain:new t.bY(e,n.u_terrain),u_terrain_dim:new t.bo(e,n.u_terrain_dim),u_terrain_matrix:new t.b_(e,n.u_terrain_matrix),u_terrain_unpack:new t.b$(e,n.u_terrain_unpack),u_terrain_exaggeration:new t.bo(e,n.u_terrain_exaggeration)}))(e,T),this.projectionUniforms=((e,n)=>({u_projection_matrix:new t.b_(e,n.u_projection_matrix),u_projection_tile_mercator_coords:new t.b$(e,n.u_projection_tile_mercator_coords),u_projection_clipping_plane:new t.b$(e,n.u_projection_clipping_plane),u_projection_transition:new t.bo(e,n.u_projection_transition),u_projection_fallback_matrix:new t.b_(e,n.u_projection_fallback_matrix)}))(e,T),this.binderUniforms=r?r.getUniforms(e,T):[]}draw(e,t,n,r,i,a,o,s,c,l,u,d,f,p,m,h,g,_,v){let y=e.gl;if(this.failedToCreate)return;if(e.program.set(this.program),e.setDepthMode(n),e.setStencilMode(r),e.setColorMode(i),e.setCullFace(a),s){e.activeTexture.set(y.TEXTURE2),y.bindTexture(y.TEXTURE_2D,s.depthTexture),e.activeTexture.set(y.TEXTURE3),y.bindTexture(y.TEXTURE_2D,s.texture);for(let e in this.terrainUniforms)this.terrainUniforms[e].set(s[e])}if(c)for(let e in c)this.projectionUniforms[zn[e]].set(c[e]);if(o)for(let e in this.fixedUniforms)this.fixedUniforms[e].set(o[e]);h&&h.setUniforms(e,this.binderUniforms,p,{zoom:m});let b=0;switch(t){case y.LINES:b=2;break;case y.TRIANGLES:b=3;break;case y.LINE_STRIP:b=1}for(let n of f.get()){let r=n.vaos||={};(r[l]||(r[l]=new Ln)).bind(e,this,u,h?h.getPaintVertexBuffers():[],d,n.vertexOffset,g,_,v),y.drawElements(t,n.primitiveLength*b,y.UNSIGNED_SHORT,n.primitiveOffset*b*2)}}}function Hn(e,n,r){let i=1/t.aK(r,1,n.transform.tileZoom),a=2**r.tileID.overscaledZ,o=r.tileSize*2**n.transform.tileZoom/a,s=o*(r.tileID.canonical.x+r.tileID.wrap*a),c=o*r.tileID.canonical.y;return{u_image:0,u_texsize:r.imageAtlasTexture.size,u_scale:[i,e.fromScale,e.toScale],u_fade:e.t,u_pixel_coord_upper:[s>>16,c>>16],u_pixel_coord_lower:[65535&s,65535&c]}}let Un=(e,n,r,i)=>{let a=e.style.light,o=a.properties.get(`position`),s=[o.x,o.y,o.z],c=t.c2();a.properties.get(`anchor`)===`viewport`&&t.c3(c,e.transform.bearingInRadians),t.c4(s,s,c);let l=e.transform.transformLightDirection(s),u=a.properties.get(`color`);return{u_lightpos:s,u_lightpos_globe:l,u_lightintensity:a.properties.get(`intensity`),u_lightcolor:[u.r,u.g,u.b],u_vertical_gradient:+n,u_opacity:r,u_fill_translate:i}},Wn=(e,n,r,i,a,o,s)=>t.e(Un(e,n,r,i),Hn(o,e,s),{u_height_factor:-(2**a.overscaledZ)/s.tileSize/8}),Gn=(e,n,r,i)=>t.e(Hn(n,e,r),{u_fill_translate:i}),Kn=(e,t)=>({u_world:e,u_fill_translate:t}),qn=(e,n,r,i,a)=>t.e(Gn(e,n,r,a),{u_world:i}),Jn=(e,n,r,i,a)=>{let o=e.transform,s,c,l=0;if(r.paint.get(`circle-pitch-alignment`)===`map`){let e=t.aK(n,1,o.zoom);s=!0,c=[e,e],l=e/(t.a5*2**n.tileID.overscaledZ)*2*Math.PI*a}else s=!1,c=o.pixelsToGLUnits;return{u_camera_to_center_distance:o.cameraToCenterDistance,u_scale_with_map:+(r.paint.get(`circle-pitch-scale`)===`map`),u_pitch_with_map:+s,u_device_pixel_ratio:e.pixelRatio,u_extrude_scale:c,u_globe_extrude_scale:l,u_translate:i}},Yn=e=>({u_pixel_extrude_scale:[1/e.width,1/e.height]}),Xn=e=>({u_viewport_size:[e.width,e.height]}),Zn=(e,t=1)=>({u_color:e,u_overlay:0,u_overlay_scale:t}),Qn=(e,n,r,i)=>{let a=t.aK(e,1,n)/(t.a5*2**e.tileID.overscaledZ)*2*Math.PI*i;return{u_extrude_scale:t.aK(e,1,n),u_intensity:r,u_globe_extrude_scale:a}},$n=(e,n,r,i)=>{let a=t.N();t.c5(a,0,e.width,e.height,0,0,1);let o=e.context.gl;return{u_matrix:a,u_world:[o.drawingBufferWidth,o.drawingBufferHeight],u_image:r,u_color_ramp:i,u_opacity:n.paint.get(`heatmap-opacity`)}},er=(e,t,n)=>{let r=n.paint.get(`hillshade-accent-color`),i;switch(n.paint.get(`hillshade-method`)){case`basic`:i=4;break;case`combined`:i=1;break;case`igor`:i=2;break;case`multidirectional`:i=3;break;default:i=0}let a=n.getIlluminationProperties();for(let t=0;t<a.directionRadians.length;t++)n.paint.get(`hillshade-illumination-anchor`)===`viewport`&&(a.directionRadians[t]+=e.transform.bearingInRadians);return{u_image:0,u_latrange:nr(0,t.tileID),u_exaggeration:n.paint.get(`hillshade-exaggeration`),u_altitudes:a.altitudeRadians,u_azimuths:a.directionRadians,u_accent:r,u_method:i,u_highlights:a.highlightColor,u_shadows:a.shadowColor}},tr=(e,n)=>{let r=n.stride,i=t.N();return t.c5(i,0,t.a5,-t.a5,0,0,1),t.O(i,i,[0,-t.a5,0]),{u_matrix:i,u_image:1,u_dimension:[r,r],u_zoom:e.overscaledZ,u_unpack:n.getUnpackVector()}};function nr(e,n){let r=2**n.canonical.z,i=n.canonical.y;return[new t.a6(0,i/r).toLngLat().lat,new t.a6(0,(i+1)/r).toLngLat().lat]}let rr=(e,t,n=0)=>({u_image:0,u_unpack:t.getUnpackVector(),u_dimension:[t.stride,t.stride],u_elevation_stops:1,u_color_stops:4,u_color_ramp_size:n,u_opacity:e.paint.get(`color-relief-opacity`)}),ir=(e,n,r,i)=>{let a=e.transform;return{u_translation:ur(e,n,r),u_ratio:i/t.aK(n,1,a.zoom),u_device_pixel_ratio:e.pixelRatio,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},ar=(e,n,r,i,a)=>t.e(ir(e,n,r,i),{u_image:0,u_image_height:a}),or=(e,n,r,i,a)=>{let o=e.transform,s=lr(n,o);return{u_translation:ur(e,n,r),u_texsize:n.imageAtlasTexture.size,u_ratio:i/t.aK(n,1,o.zoom),u_device_pixel_ratio:e.pixelRatio,u_image:0,u_scale:[s,a.fromScale,a.toScale],u_fade:a.t,u_units_to_pixels:[1/o.pixelsToGLUnits[0],1/o.pixelsToGLUnits[1]]}},sr=(e,n,r,i,a)=>{let o=lr(n,e.transform);return t.e(ir(e,n,r,i),{u_tileratio:o,u_crossfade_from:a.fromScale,u_crossfade_to:a.toScale,u_image:0,u_mix:a.t,u_lineatlas_width:e.lineAtlas.width,u_lineatlas_height:e.lineAtlas.height})},cr=(e,n,r,i,a,o)=>{let s=lr(n,e.transform);return t.e(ir(e,n,r,i),{u_image:0,u_image_height:o,u_tileratio:s,u_crossfade_from:a.fromScale,u_crossfade_to:a.toScale,u_image_dash:1,u_mix:a.t,u_lineatlas_width:e.lineAtlas.width,u_lineatlas_height:e.lineAtlas.height})};function lr(e,n){return 1/t.aK(e,1,n.tileZoom)}function ur(e,n,r){return t.aL(e.transform,n,r.paint.get(`line-translate`),r.paint.get(`line-translate-anchor`))}let dr=(e,t,n,r,i)=>{return{u_tl_parent:e,u_scale_parent:t,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*r.paint.get(`raster-opacity`),u_image0:0,u_image1:1,u_brightness_low:r.paint.get(`raster-brightness-min`),u_brightness_high:r.paint.get(`raster-brightness-max`),u_saturation_factor:(o=r.paint.get(`raster-saturation`),o>0?1-1/(1.001-o):-o),u_contrast_factor:(a=r.paint.get(`raster-contrast`),a>0?1/(1-a):1+a),u_spin_weights:fr(r.paint.get(`raster-hue-rotate`)),u_coords_top:[i[0].x,i[0].y,i[1].x,i[1].y],u_coords_bottom:[i[3].x,i[3].y,i[2].x,i[2].y]};var a,o};function fr(e){e*=Math.PI/180;let t=Math.sin(e),n=Math.cos(e);return[(2*n+1)/3,(-Math.sqrt(3)*t-n+1)/3,(Math.sqrt(3)*t-n+1)/3]}let pr=(e,t,n,r,i,a,o,s,c,l,u,d,f)=>{let p=o.transform;return{u_is_size_zoom_constant:+(e===`constant`||e===`source`),u_is_size_feature_constant:+(e===`constant`||e===`camera`),u_size_t:t?t.uSizeT:0,u_size:t?t.uSize:0,u_camera_to_center_distance:p.cameraToCenterDistance,u_pitch:p.pitch/360*2*Math.PI,u_rotate_symbol:+n,u_aspect_ratio:p.width/p.height,u_fade_change:o.options.fadeDuration?o.symbolFadeChange:1,u_label_plane_matrix:s,u_coord_matrix:c,u_is_text:+u,u_pitch_with_map:+r,u_is_along_line:i,u_is_variable_anchor:a,u_texsize:d,u_texture:0,u_translation:l,u_pitched_scale:f}},mr=(e,n,r,i,a,o,s,c,l,u,d,f,p,m)=>{let h=s.transform;return t.e(pr(e,n,r,i,a,o,s,c,l,u,d,f,m),{u_gamma_scale:i?Math.cos(h.pitch*Math.PI/180)*h.cameraToCenterDistance:1,u_device_pixel_ratio:s.pixelRatio,u_is_halo:1})},hr=(e,n,r,i,a,o,s,c,l,u,d,f,p)=>t.e(mr(e,n,r,i,a,o,s,c,l,u,!0,d,0,p),{u_texsize_icon:f,u_texture_icon:1}),gr=(e,t)=>({u_opacity:e,u_color:t}),_r=(e,n,r,i,a)=>t.e(function(e,n,r,i){let a=r.imageManager.getPattern(e.from.toString()),o=r.imageManager.getPattern(e.to.toString()),{width:s,height:c}=r.imageManager.getPixelSize(),l=2**i.tileID.overscaledZ,u=i.tileSize*2**r.transform.tileZoom/l,d=u*(i.tileID.canonical.x+i.tileID.wrap*l),f=u*i.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:a.tl,u_pattern_br_a:a.br,u_pattern_tl_b:o.tl,u_pattern_br_b:o.br,u_texsize:[s,c],u_mix:n.t,u_pattern_size_a:a.displaySize,u_pattern_size_b:o.displaySize,u_scale_a:n.fromScale,u_scale_b:n.toScale,u_tile_units_to_pixels:1/t.aK(i,1,r.transform.tileZoom),u_pixel_coord_upper:[d>>16,f>>16],u_pixel_coord_lower:[65535&d,65535&f]}}(r,a,n,i),{u_opacity:e}),vr=(e,t)=>{},yr={fillExtrusion:(e,n)=>({u_lightpos:new t.c0(e,n.u_lightpos),u_lightpos_globe:new t.c0(e,n.u_lightpos_globe),u_lightintensity:new t.bo(e,n.u_lightintensity),u_lightcolor:new t.c0(e,n.u_lightcolor),u_vertical_gradient:new t.bo(e,n.u_vertical_gradient),u_opacity:new t.bo(e,n.u_opacity),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillExtrusionPattern:(e,n)=>({u_lightpos:new t.c0(e,n.u_lightpos),u_lightpos_globe:new t.c0(e,n.u_lightpos_globe),u_lightintensity:new t.bo(e,n.u_lightintensity),u_lightcolor:new t.c0(e,n.u_lightcolor),u_vertical_gradient:new t.bo(e,n.u_vertical_gradient),u_height_factor:new t.bo(e,n.u_height_factor),u_opacity:new t.bo(e,n.u_opacity),u_fill_translate:new t.c1(e,n.u_fill_translate),u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade)}),fill:(e,n)=>({u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillPattern:(e,n)=>({u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillOutline:(e,n)=>({u_world:new t.c1(e,n.u_world),u_fill_translate:new t.c1(e,n.u_fill_translate)}),fillOutlinePattern:(e,n)=>({u_world:new t.c1(e,n.u_world),u_image:new t.bY(e,n.u_image),u_texsize:new t.c1(e,n.u_texsize),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade),u_fill_translate:new t.c1(e,n.u_fill_translate)}),circle:(e,n)=>({u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_scale_with_map:new t.bY(e,n.u_scale_with_map),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_extrude_scale:new t.c1(e,n.u_extrude_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_globe_extrude_scale:new t.bo(e,n.u_globe_extrude_scale),u_translate:new t.c1(e,n.u_translate)}),collisionBox:(e,n)=>({u_pixel_extrude_scale:new t.c1(e,n.u_pixel_extrude_scale)}),collisionCircle:(e,n)=>({u_viewport_size:new t.c1(e,n.u_viewport_size)}),debug:(e,n)=>({u_color:new t.bZ(e,n.u_color),u_overlay:new t.bY(e,n.u_overlay),u_overlay_scale:new t.bo(e,n.u_overlay_scale)}),depth:vr,clippingMask:vr,heatmap:(e,n)=>({u_extrude_scale:new t.bo(e,n.u_extrude_scale),u_intensity:new t.bo(e,n.u_intensity),u_globe_extrude_scale:new t.bo(e,n.u_globe_extrude_scale)}),heatmapTexture:(e,n)=>({u_matrix:new t.b_(e,n.u_matrix),u_world:new t.c1(e,n.u_world),u_image:new t.bY(e,n.u_image),u_color_ramp:new t.bY(e,n.u_color_ramp),u_opacity:new t.bo(e,n.u_opacity)}),hillshade:(e,n)=>({u_image:new t.bY(e,n.u_image),u_latrange:new t.c1(e,n.u_latrange),u_exaggeration:new t.bo(e,n.u_exaggeration),u_altitudes:new t.c7(e,n.u_altitudes),u_azimuths:new t.c7(e,n.u_azimuths),u_accent:new t.bZ(e,n.u_accent),u_method:new t.bY(e,n.u_method),u_shadows:new t.c6(e,n.u_shadows),u_highlights:new t.c6(e,n.u_highlights)}),hillshadePrepare:(e,n)=>({u_matrix:new t.b_(e,n.u_matrix),u_image:new t.bY(e,n.u_image),u_dimension:new t.c1(e,n.u_dimension),u_zoom:new t.bo(e,n.u_zoom),u_unpack:new t.b$(e,n.u_unpack)}),colorRelief:(e,n)=>({u_image:new t.bY(e,n.u_image),u_unpack:new t.b$(e,n.u_unpack),u_dimension:new t.c1(e,n.u_dimension),u_elevation_stops:new t.bY(e,n.u_elevation_stops),u_color_stops:new t.bY(e,n.u_color_stops),u_color_ramp_size:new t.bY(e,n.u_color_ramp_size),u_opacity:new t.bo(e,n.u_opacity)}),line:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels)}),lineGradient:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_image_height:new t.bo(e,n.u_image_height)}),linePattern:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_texsize:new t.c1(e,n.u_texsize),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_image:new t.bY(e,n.u_image),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_scale:new t.c0(e,n.u_scale),u_fade:new t.bo(e,n.u_fade)}),lineSDF:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_mix:new t.bo(e,n.u_mix),u_tileratio:new t.bo(e,n.u_tileratio),u_crossfade_from:new t.bo(e,n.u_crossfade_from),u_crossfade_to:new t.bo(e,n.u_crossfade_to),u_lineatlas_width:new t.bo(e,n.u_lineatlas_width),u_lineatlas_height:new t.bo(e,n.u_lineatlas_height)}),lineGradientSDF:(e,n)=>({u_translation:new t.c1(e,n.u_translation),u_ratio:new t.bo(e,n.u_ratio),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_units_to_pixels:new t.c1(e,n.u_units_to_pixels),u_image:new t.bY(e,n.u_image),u_image_height:new t.bo(e,n.u_image_height),u_tileratio:new t.bo(e,n.u_tileratio),u_crossfade_from:new t.bo(e,n.u_crossfade_from),u_crossfade_to:new t.bo(e,n.u_crossfade_to),u_image_dash:new t.bY(e,n.u_image_dash),u_mix:new t.bo(e,n.u_mix),u_lineatlas_width:new t.bo(e,n.u_lineatlas_width),u_lineatlas_height:new t.bo(e,n.u_lineatlas_height)}),raster:(e,n)=>({u_tl_parent:new t.c1(e,n.u_tl_parent),u_scale_parent:new t.bo(e,n.u_scale_parent),u_buffer_scale:new t.bo(e,n.u_buffer_scale),u_fade_t:new t.bo(e,n.u_fade_t),u_opacity:new t.bo(e,n.u_opacity),u_image0:new t.bY(e,n.u_image0),u_image1:new t.bY(e,n.u_image1),u_brightness_low:new t.bo(e,n.u_brightness_low),u_brightness_high:new t.bo(e,n.u_brightness_high),u_saturation_factor:new t.bo(e,n.u_saturation_factor),u_contrast_factor:new t.bo(e,n.u_contrast_factor),u_spin_weights:new t.c0(e,n.u_spin_weights),u_coords_top:new t.b$(e,n.u_coords_top),u_coords_bottom:new t.b$(e,n.u_coords_bottom)}),symbolIcon:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texture:new t.bY(e,n.u_texture),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),symbolSDF:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texture:new t.bY(e,n.u_texture),u_gamma_scale:new t.bo(e,n.u_gamma_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_is_halo:new t.bY(e,n.u_is_halo),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),symbolTextAndIcon:(e,n)=>({u_is_size_zoom_constant:new t.bY(e,n.u_is_size_zoom_constant),u_is_size_feature_constant:new t.bY(e,n.u_is_size_feature_constant),u_size_t:new t.bo(e,n.u_size_t),u_size:new t.bo(e,n.u_size),u_camera_to_center_distance:new t.bo(e,n.u_camera_to_center_distance),u_pitch:new t.bo(e,n.u_pitch),u_rotate_symbol:new t.bY(e,n.u_rotate_symbol),u_aspect_ratio:new t.bo(e,n.u_aspect_ratio),u_fade_change:new t.bo(e,n.u_fade_change),u_label_plane_matrix:new t.b_(e,n.u_label_plane_matrix),u_coord_matrix:new t.b_(e,n.u_coord_matrix),u_is_text:new t.bY(e,n.u_is_text),u_pitch_with_map:new t.bY(e,n.u_pitch_with_map),u_is_along_line:new t.bY(e,n.u_is_along_line),u_is_variable_anchor:new t.bY(e,n.u_is_variable_anchor),u_texsize:new t.c1(e,n.u_texsize),u_texsize_icon:new t.c1(e,n.u_texsize_icon),u_texture:new t.bY(e,n.u_texture),u_texture_icon:new t.bY(e,n.u_texture_icon),u_gamma_scale:new t.bo(e,n.u_gamma_scale),u_device_pixel_ratio:new t.bo(e,n.u_device_pixel_ratio),u_is_halo:new t.bY(e,n.u_is_halo),u_translation:new t.c1(e,n.u_translation),u_pitched_scale:new t.bo(e,n.u_pitched_scale)}),background:(e,n)=>({u_opacity:new t.bo(e,n.u_opacity),u_color:new t.bZ(e,n.u_color)}),backgroundPattern:(e,n)=>({u_opacity:new t.bo(e,n.u_opacity),u_image:new t.bY(e,n.u_image),u_pattern_tl_a:new t.c1(e,n.u_pattern_tl_a),u_pattern_br_a:new t.c1(e,n.u_pattern_br_a),u_pattern_tl_b:new t.c1(e,n.u_pattern_tl_b),u_pattern_br_b:new t.c1(e,n.u_pattern_br_b),u_texsize:new t.c1(e,n.u_texsize),u_mix:new t.bo(e,n.u_mix),u_pattern_size_a:new t.c1(e,n.u_pattern_size_a),u_pattern_size_b:new t.c1(e,n.u_pattern_size_b),u_scale_a:new t.bo(e,n.u_scale_a),u_scale_b:new t.bo(e,n.u_scale_b),u_pixel_coord_upper:new t.c1(e,n.u_pixel_coord_upper),u_pixel_coord_lower:new t.c1(e,n.u_pixel_coord_lower),u_tile_units_to_pixels:new t.bo(e,n.u_tile_units_to_pixels)}),terrain:(e,n)=>({u_texture:new t.bY(e,n.u_texture),u_ele_delta:new t.bo(e,n.u_ele_delta),u_fog_matrix:new t.b_(e,n.u_fog_matrix),u_fog_color:new t.bZ(e,n.u_fog_color),u_fog_ground_blend:new t.bo(e,n.u_fog_ground_blend),u_fog_ground_blend_opacity:new t.bo(e,n.u_fog_ground_blend_opacity),u_horizon_color:new t.bZ(e,n.u_horizon_color),u_horizon_fog_blend:new t.bo(e,n.u_horizon_fog_blend),u_is_globe_mode:new t.bo(e,n.u_is_globe_mode)}),terrainDepth:(e,n)=>({u_ele_delta:new t.bo(e,n.u_ele_delta)}),terrainCoords:(e,n)=>({u_texture:new t.bY(e,n.u_texture),u_terrain_coords_id:new t.bo(e,n.u_terrain_coords_id),u_ele_delta:new t.bo(e,n.u_ele_delta)}),projectionErrorMeasurement:(e,n)=>({u_input:new t.bo(e,n.u_input),u_output_expected:new t.bo(e,n.u_output_expected)}),atmosphere:(e,n)=>({u_sun_pos:new t.c0(e,n.u_sun_pos),u_atmosphere_blend:new t.bo(e,n.u_atmosphere_blend),u_globe_position:new t.c0(e,n.u_globe_position),u_globe_radius:new t.bo(e,n.u_globe_radius),u_inv_proj_matrix:new t.b_(e,n.u_inv_proj_matrix)}),sky:(e,n)=>({u_sky_color:new t.bZ(e,n.u_sky_color),u_horizon_color:new t.bZ(e,n.u_horizon_color),u_horizon:new t.c1(e,n.u_horizon),u_horizon_normal:new t.c1(e,n.u_horizon_normal),u_sky_horizon_blend:new t.bo(e,n.u_sky_horizon_blend),u_sky_blend:new t.bo(e,n.u_sky_blend)})};class br{constructor(e,t,n){this.context=e;let r=e.gl;this.buffer=r.createBuffer(),this.dynamicDraw=!!n,this.context.unbindVAO(),e.bindElementBuffer.set(this.buffer),r.bufferData(r.ELEMENT_ARRAY_BUFFER,t.arrayBuffer,this.dynamicDraw?r.DYNAMIC_DRAW:r.STATIC_DRAW),this.dynamicDraw||t.freeBufferAfterUpload()}bind(){this.context.bindElementBuffer.set(this.buffer)}updateData(e){let t=this.context.gl;if(!this.dynamicDraw)throw Error(`Attempted to update data while not in dynamic mode.`);this.context.unbindVAO(),this.bind(),t.bufferSubData(t.ELEMENT_ARRAY_BUFFER,0,e.arrayBuffer)}destroy(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)}}let xr={Int8:`BYTE`,Uint8:`UNSIGNED_BYTE`,Int16:`SHORT`,Uint16:`UNSIGNED_SHORT`,Int32:`INT`,Uint32:`UNSIGNED_INT`,Float32:`FLOAT`};class Sr{constructor(e,t,n,r){this.length=t.length,this.attributes=n,this.itemSize=t.bytesPerElement,this.dynamicDraw=r,this.context=e;let i=e.gl;this.buffer=i.createBuffer(),e.bindVertexBuffer.set(this.buffer),i.bufferData(i.ARRAY_BUFFER,t.arrayBuffer,this.dynamicDraw?i.DYNAMIC_DRAW:i.STATIC_DRAW),this.dynamicDraw||t.freeBufferAfterUpload()}bind(){this.context.bindVertexBuffer.set(this.buffer)}updateData(e){if(e.length!==this.length)throw Error(`Length of new data is ${e.length}, which doesn't match current length of ${this.length}`);let t=this.context.gl;this.bind(),t.bufferSubData(t.ARRAY_BUFFER,0,e.arrayBuffer)}enableAttributes(e,t){for(let n=0;n<this.attributes.length;n++){let r=t.attributes[this.attributes[n].name];r!==void 0&&e.enableVertexAttribArray(r)}}setVertexAttribPointers(e,t,n){for(let r=0;r<this.attributes.length;r++){let i=this.attributes[r],a=t.attributes[i.name];a!==void 0&&e.vertexAttribPointer(a,i.components,e[xr[i.type]],!1,this.itemSize,i.offset+this.itemSize*(n||0))}}destroy(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)}}class Cr{constructor(e){this.gl=e.gl,this.default=this.getDefault(),this.current=this.default,this.dirty=!1}get(){return this.current}set(e){}getDefault(){return this.default}setDefault(){this.set(this.default)}}class wr extends Cr{getDefault(){return t.bn.transparent}set(e){let t=this.current;(e.r!==t.r||e.g!==t.g||e.b!==t.b||e.a!==t.a||this.dirty)&&(this.gl.clearColor(e.r,e.g,e.b,e.a),this.current=e,this.dirty=!1)}}class Tr extends Cr{getDefault(){return 1}set(e){(e!==this.current||this.dirty)&&(this.gl.clearDepth(e),this.current=e,this.dirty=!1)}}class Er extends Cr{getDefault(){return 0}set(e){(e!==this.current||this.dirty)&&(this.gl.clearStencil(e),this.current=e,this.dirty=!1)}}class Dr extends Cr{getDefault(){return[!0,!0,!0,!0]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3]||this.dirty)&&(this.gl.colorMask(e[0],e[1],e[2],e[3]),this.current=e,this.dirty=!1)}}class Or extends Cr{getDefault(){return!0}set(e){(e!==this.current||this.dirty)&&(this.gl.depthMask(e),this.current=e,this.dirty=!1)}}class kr extends Cr{getDefault(){return 255}set(e){(e!==this.current||this.dirty)&&(this.gl.stencilMask(e),this.current=e,this.dirty=!1)}}class Ar extends Cr{getDefault(){return{func:this.gl.ALWAYS,ref:0,mask:255}}set(e){let t=this.current;(e.func!==t.func||e.ref!==t.ref||e.mask!==t.mask||this.dirty)&&(this.gl.stencilFunc(e.func,e.ref,e.mask),this.current=e,this.dirty=!1)}}class jr extends Cr{getDefault(){let e=this.gl;return[e.KEEP,e.KEEP,e.KEEP]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||this.dirty)&&(this.gl.stencilOp(e[0],e[1],e[2]),this.current=e,this.dirty=!1)}}class Mr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.STENCIL_TEST):t.disable(t.STENCIL_TEST),this.current=e,this.dirty=!1}}class Nr extends Cr{getDefault(){return[0,1]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||this.dirty)&&(this.gl.depthRange(e[0],e[1]),this.current=e,this.dirty=!1)}}class Pr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.DEPTH_TEST):t.disable(t.DEPTH_TEST),this.current=e,this.dirty=!1}}class Fr extends Cr{getDefault(){return this.gl.LESS}set(e){(e!==this.current||this.dirty)&&(this.gl.depthFunc(e),this.current=e,this.dirty=!1)}}class Ir extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.BLEND):t.disable(t.BLEND),this.current=e,this.dirty=!1}}class Lr extends Cr{getDefault(){let e=this.gl;return[e.ONE,e.ZERO]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||this.dirty)&&(this.gl.blendFunc(e[0],e[1]),this.current=e,this.dirty=!1)}}class Rr extends Cr{getDefault(){return t.bn.transparent}set(e){let t=this.current;(e.r!==t.r||e.g!==t.g||e.b!==t.b||e.a!==t.a||this.dirty)&&(this.gl.blendColor(e.r,e.g,e.b,e.a),this.current=e,this.dirty=!1)}}class zr extends Cr{getDefault(){return this.gl.FUNC_ADD}set(e){(e!==this.current||this.dirty)&&(this.gl.blendEquation(e),this.current=e,this.dirty=!1)}}class Br extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;e?t.enable(t.CULL_FACE):t.disable(t.CULL_FACE),this.current=e,this.dirty=!1}}class Vr extends Cr{getDefault(){return this.gl.BACK}set(e){(e!==this.current||this.dirty)&&(this.gl.cullFace(e),this.current=e,this.dirty=!1)}}class Hr extends Cr{getDefault(){return this.gl.CCW}set(e){(e!==this.current||this.dirty)&&(this.gl.frontFace(e),this.current=e,this.dirty=!1)}}class Ur extends Cr{getDefault(){return null}set(e){(e!==this.current||this.dirty)&&(this.gl.useProgram(e),this.current=e,this.dirty=!1)}}class Wr extends Cr{getDefault(){return this.gl.TEXTURE0}set(e){(e!==this.current||this.dirty)&&(this.gl.activeTexture(e),this.current=e,this.dirty=!1)}}class Gr extends Cr{getDefault(){let e=this.gl;return[0,0,e.drawingBufferWidth,e.drawingBufferHeight]}set(e){let t=this.current;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3]||this.dirty)&&(this.gl.viewport(e[0],e[1],e[2],e[3]),this.current=e,this.dirty=!1)}}class Kr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,e),this.current=e,this.dirty=!1}}class qr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindRenderbuffer(t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}class Y extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindTexture(t.TEXTURE_2D,e),this.current=e,this.dirty=!1}}class Jr extends Cr{getDefault(){return null}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.bindBuffer(t.ARRAY_BUFFER,e),this.current=e,this.dirty=!1}}class Yr extends Cr{getDefault(){return null}set(e){let t=this.gl;t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,e),this.current=e,this.dirty=!1}}class Xr extends Cr{getDefault(){return null}set(e){var t;if(e===this.current&&!this.dirty)return;let n=this.gl;an(n)?n.bindVertexArray(e):(t=n.getExtension(`OES_vertex_array_object`))==null||t.bindVertexArrayOES(e),this.current=e,this.dirty=!1}}class Zr extends Cr{getDefault(){return 4}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_ALIGNMENT,e),this.current=e,this.dirty=!1}}class Qr extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,e),this.current=e,this.dirty=!1}}class $r extends Cr{getDefault(){return!1}set(e){if(e===this.current&&!this.dirty)return;let t=this.gl;t.pixelStorei(t.UNPACK_FLIP_Y_WEBGL,e),this.current=e,this.dirty=!1}}class ei extends Cr{constructor(e,t){super(e),this.context=e,this.parent=t}getDefault(){return null}}class ti extends ei{setDirty(){this.dirty=!0}set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_2D,e,0),this.current=e,this.dirty=!1}}class ni extends ei{set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferRenderbuffer(t.FRAMEBUFFER,t.DEPTH_ATTACHMENT,t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}class ri extends ei{set(e){if(e===this.current&&!this.dirty)return;this.context.bindFramebuffer.set(this.parent);let t=this.gl;t.framebufferRenderbuffer(t.FRAMEBUFFER,t.DEPTH_STENCIL_ATTACHMENT,t.RENDERBUFFER,e),this.current=e,this.dirty=!1}}let ii=`Framebuffer is not complete`;class ai{constructor(e,t,n,r,i){this.context=e,this.width=t,this.height=n;let a=e.gl,o=this.framebuffer=a.createFramebuffer();if(this.colorAttachment=new ti(e,o),r)this.depthAttachment=i?new ri(e,o):new ni(e,o);else if(i)throw Error(`Stencil cannot be set without depth`);if(a.checkFramebufferStatus(a.FRAMEBUFFER)!==a.FRAMEBUFFER_COMPLETE)throw Error(ii)}destroy(){let e=this.context.gl,t=this.colorAttachment.get();if(t&&e.deleteTexture(t),this.depthAttachment){let t=this.depthAttachment.get();t&&e.deleteRenderbuffer(t)}e.deleteFramebuffer(this.framebuffer)}}class oi{constructor(e){if(this.gl=e,this.clearColor=new wr(this),this.clearDepth=new Tr(this),this.clearStencil=new Er(this),this.colorMask=new Dr(this),this.depthMask=new Or(this),this.stencilMask=new kr(this),this.stencilFunc=new Ar(this),this.stencilOp=new jr(this),this.stencilTest=new Mr(this),this.depthRange=new Nr(this),this.depthTest=new Pr(this),this.depthFunc=new Fr(this),this.blend=new Ir(this),this.blendFunc=new Lr(this),this.blendColor=new Rr(this),this.blendEquation=new zr(this),this.cullFace=new Br(this),this.cullFaceSide=new Vr(this),this.frontFace=new Hr(this),this.program=new Ur(this),this.activeTexture=new Wr(this),this.viewport=new Gr(this),this.bindFramebuffer=new Kr(this),this.bindRenderbuffer=new qr(this),this.bindTexture=new Y(this),this.bindVertexBuffer=new Jr(this),this.bindElementBuffer=new Yr(this),this.bindVertexArray=new Xr(this),this.pixelStoreUnpack=new Zr(this),this.pixelStoreUnpackPremultiplyAlpha=new Qr(this),this.pixelStoreUnpackFlipY=new $r(this),this.extTextureFilterAnisotropic=e.getExtension(`EXT_texture_filter_anisotropic`),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=e.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.maxTextureSize=e.getParameter(e.MAX_TEXTURE_SIZE),an(e)){this.HALF_FLOAT=e.HALF_FLOAT;let t=e.getExtension(`EXT_color_buffer_half_float`);this.RGBA16F=e.RGBA16F??t?.RGBA16F_EXT,this.RGB16F=e.RGB16F??t?.RGB16F_EXT,e.getExtension(`EXT_color_buffer_float`)}else{e.getExtension(`EXT_color_buffer_half_float`),e.getExtension(`OES_texture_half_float_linear`);let t=e.getExtension(`OES_texture_half_float`);this.HALF_FLOAT=t?.HALF_FLOAT_OES}}setDefault(){this.unbindVAO(),this.clearColor.setDefault(),this.clearDepth.setDefault(),this.clearStencil.setDefault(),this.colorMask.setDefault(),this.depthMask.setDefault(),this.stencilMask.setDefault(),this.stencilFunc.setDefault(),this.stencilOp.setDefault(),this.stencilTest.setDefault(),this.depthRange.setDefault(),this.depthTest.setDefault(),this.depthFunc.setDefault(),this.blend.setDefault(),this.blendFunc.setDefault(),this.blendColor.setDefault(),this.blendEquation.setDefault(),this.cullFace.setDefault(),this.cullFaceSide.setDefault(),this.frontFace.setDefault(),this.program.setDefault(),this.activeTexture.setDefault(),this.bindFramebuffer.setDefault(),this.pixelStoreUnpack.setDefault(),this.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.pixelStoreUnpackFlipY.setDefault()}setDirty(){this.clearColor.dirty=!0,this.clearDepth.dirty=!0,this.clearStencil.dirty=!0,this.colorMask.dirty=!0,this.depthMask.dirty=!0,this.stencilMask.dirty=!0,this.stencilFunc.dirty=!0,this.stencilOp.dirty=!0,this.stencilTest.dirty=!0,this.depthRange.dirty=!0,this.depthTest.dirty=!0,this.depthFunc.dirty=!0,this.blend.dirty=!0,this.blendFunc.dirty=!0,this.blendColor.dirty=!0,this.blendEquation.dirty=!0,this.cullFace.dirty=!0,this.cullFaceSide.dirty=!0,this.frontFace.dirty=!0,this.program.dirty=!0,this.activeTexture.dirty=!0,this.viewport.dirty=!0,this.bindFramebuffer.dirty=!0,this.bindRenderbuffer.dirty=!0,this.bindTexture.dirty=!0,this.bindVertexBuffer.dirty=!0,this.bindElementBuffer.dirty=!0,this.bindVertexArray.dirty=!0,this.pixelStoreUnpack.dirty=!0,this.pixelStoreUnpackPremultiplyAlpha.dirty=!0,this.pixelStoreUnpackFlipY.dirty=!0}createIndexBuffer(e,t){return new br(this,e,t)}createVertexBuffer(e,t,n){return new Sr(this,e,t,n)}createRenderbuffer(e,t,n){let r=this.gl,i=r.createRenderbuffer();return this.bindRenderbuffer.set(i),r.renderbufferStorage(r.RENDERBUFFER,e,t,n),this.bindRenderbuffer.set(null),i}createFramebuffer(e,t,n,r){return new ai(this,e,t,n,r)}clear({color:e,depth:t,stencil:n}){let r=this.gl,i=0;e&&(i|=r.COLOR_BUFFER_BIT,this.clearColor.set(e),this.colorMask.set([!0,!0,!0,!0])),t!==void 0&&(i|=r.DEPTH_BUFFER_BIT,this.depthRange.set([0,1]),this.clearDepth.set(t),this.depthMask.set(!0)),n!==void 0&&(i|=r.STENCIL_BUFFER_BIT,this.clearStencil.set(n),this.stencilMask.set(255)),r.clear(i)}setCullFace(e){!1===e.enable?this.cullFace.set(!1):(this.cullFace.set(!0),this.cullFaceSide.set(e.mode),this.frontFace.set(e.frontFace))}setDepthMode(e){e.func!==this.gl.ALWAYS||e.mask?(this.depthTest.set(!0),this.depthFunc.set(e.func),this.depthMask.set(e.mask),this.depthRange.set(e.range)):this.depthTest.set(!1)}setStencilMode(e){e.test.func!==this.gl.ALWAYS||e.mask?(this.stencilTest.set(!0),this.stencilMask.set(e.mask),this.stencilOp.set([e.fail,e.depthFail,e.pass]),this.stencilFunc.set({func:e.test.func,ref:e.ref,mask:e.test.mask})):this.stencilTest.set(!1)}setColorMode(e){t.bP(e.blendFunction,en.Replace)?this.blend.set(!1):(this.blend.set(!0),this.blendFunc.set(e.blendFunction),this.blendColor.set(e.blendColor)),this.colorMask.set(e.mask)}createVertexArray(){return an(this.gl)?this.gl.createVertexArray():this.gl.getExtension(`OES_vertex_array_object`)?.createVertexArrayOES()}deleteVertexArray(e){return an(this.gl)?this.gl.deleteVertexArray(e):this.gl.getExtension(`OES_vertex_array_object`)?.deleteVertexArrayOES(e)}unbindVAO(){this.bindVertexArray.set(null)}}let si;function ci(e,n,r,i,a){let o=e.context,s=e.transform,c=o.gl,l=e.useProgram(`collisionBox`),u=[],d=0,f=0;for(let t=0;t<i.length;t++){let p=i[t],m=n.getTile(p).getBucket(r);if(!m)continue;let h=a?m.textCollisionBox:m.iconCollisionBox,g=m.collisionCircleArray;g.length>0&&(u.push({circleArray:g,circleOffset:f,coord:p}),d+=g.length/4,f=d),h&&l.draw(o,c.LINES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,Yn(e.transform),e.style.map.terrain&&e.style.map.terrain.getTerrainData(p),s.getProjectionData({overscaledTileID:p,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),r.id,h.layoutVertexBuffer,h.indexBuffer,h.segments,null,e.transform.zoom,null,null,h.collisionVertexBuffer)}if(!a||!u.length)return;let p=e.useProgram(`collisionCircle`),m=new t.c8;m.resize(4*d),m._trim();let h=0;for(let e of u)for(let t=0;t<e.circleArray.length/4;t++){let n=4*t,r=e.circleArray[n+0],i=e.circleArray[n+1],a=e.circleArray[n+2],o=e.circleArray[n+3];m.emplace(h++,r,i,a,o,0),m.emplace(h++,r,i,a,o,1),m.emplace(h++,r,i,a,o,2),m.emplace(h++,r,i,a,o,3)}(!si||si.length<2*d)&&(si=function(e){let n=2*e,r=new t.ca;r.resize(n),r._trim();for(let e=0;e<n;e++){let t=6*e;r.uint16[t+0]=4*e+0,r.uint16[t+1]=4*e+1,r.uint16[t+2]=4*e+2,r.uint16[t+3]=4*e+2,r.uint16[t+4]=4*e+3,r.uint16[t+5]=4*e+0}return r}(d));let g=o.createIndexBuffer(si,!0),_=o.createVertexBuffer(m,t.c9.members,!0);for(let n of u){let i=Xn(e.transform);p.draw(o,c.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,i,e.style.map.terrain&&e.style.map.terrain.getTerrainData(n.coord),null,r.id,_,g,t.aV.simpleSegment(0,2*n.circleOffset,n.circleArray.length,n.circleArray.length/2),null,e.transform.zoom,null,null,null)}_.destroy(),g.destroy()}let li=t.ao(new Float32Array(16));function ui(e,n,r,i,a,o){let{horizontalAlign:s,verticalAlign:c}=t.aP(e);return new t.P((-(s-.5)*n/a+i[0])*o,(-(c-.5)*r/a+i[1])*o)}function di(e,n,r,i,a,o){let s=n.tileAnchorPoint.add(new t.P(n.translation[0],n.translation[1]));if(n.pitchWithMap){let e=i.mult(o);r||(e=e.rotate(-a));let t=s.add(e);return $e(t.x,t.y,n.pitchedLabelPlaneMatrix,n.getElevation).point}if(r){let t=ot(n.tileAnchorPoint.x+1,n.tileAnchorPoint.y,n).point.sub(e),r=Math.atan(t.y/t.x)+(t.x<0?Math.PI:0);return e.add(i.rotate(r))}return e.add(i)}function fi(e,n,r,i,a,o,s,c,l,u,d,f){let p=e.text.placedSymbolArray,m=e.text.dynamicLayoutVertexArray,h=e.icon.dynamicLayoutVertexArray,g={};m.clear();for(let h=0;h<p.length;h++){let _=p.get(h),v=_.hidden||!_.crossTileID||e.allowVerticalPlacement&&!_.placedOrientation?null:i[_.crossTileID];if(v){let i=new t.P(_.anchorX,_.anchorY),p={getElevation:f,width:a.width,height:a.height,pitchedLabelPlaneMatrix:o,pitchWithMap:r,transform:a,tileAnchorPoint:i,translation:u,unwrappedTileID:d},h=r?ct(i.x,i.y,p):ot(i.x,i.y,p),y=V(a.cameraToCenterDistance,h.signedDistanceFromCamera),b=t.ax(e.textSizeData,c,_)*y/t.aJ;r&&(b*=e.tilePixelRatio/s);let{width:x,height:S,anchor:C,textOffset:w,textBoxScale:T}=v,E=ui(C,x,S,w,T,b),D=a.getPitchedTextCorrection(i.x+u[0],i.y+u[1],d),O=di(h.point,p,n,E,-a.bearingInRadians,D),k=e.allowVerticalPlacement&&_.placedOrientation===t.aw.vertical?Math.PI/2:0;for(let e=0;e<_.numGlyphs;e++)t.aD(m,O,k);l&&_.associatedIconIndex>=0&&(g[_.associatedIconIndex]={shiftedAnchor:O,angle:k})}else ft(_.numGlyphs,m)}if(l){h.clear();let n=e.icon.placedSymbolArray;for(let e=0;e<n.length;e++){let r=n.get(e);if(r.hidden)ft(r.numGlyphs,h);else{let n=g[e];if(n)for(let e=0;e<r.numGlyphs;e++)t.aD(h,n.shiftedAnchor,n.angle);else ft(r.numGlyphs,h)}}e.icon.dynamicLayoutVertexBuffer.updateData(h)}e.text.dynamicLayoutVertexBuffer.updateData(m)}function pi(e,t,n){return n.iconsInText&&t?`symbolTextAndIcon`:e?`symbolSDF`:`symbolIcon`}function mi(e,n,r,i,a,o,s,c,l,u,d,f,p){let m=e.context,h=m.gl,g=e.transform,_=c===`map`,v=l===`map`,y=c!==`viewport`&&r.layout.get(`symbol-placement`)!==`point`,b=_&&!v&&!y,x=!r.layout.get(`symbol-sort-key`).isConstant(),S=!1,C=e.getDepthModeForSublayer(0,q.ReadOnly),w=r._unevaluatedLayout.hasValue(`text-variable-anchor`)||r._unevaluatedLayout.hasValue(`text-variable-anchor-offset`),T=[],E=g.getCircleRadiusCorrection();for(let c of i){let i=n.getTile(c),l=i.getBucket(r);if(!l)continue;let d=a?l.text:l.icon;if(!d||!d.segments.get().length||!d.hasVisibleVertices)continue;let f=d.programConfigurations.get(r.id),m=a||l.sdfIcons,C=a?l.textSizeData:l.iconSizeData,D=v||g.pitch!==0,O=e.useProgram(pi(m,a,l),f),k=t.av(C,g.zoom),A=e.style.map.terrain&&e.style.map.terrain.getTerrainData(c),ee,te,j,ne,re=[0,0],ie=null;if(a)te=i.glyphAtlasTexture,j=h.LINEAR,ee=i.glyphAtlasTexture.size,l.iconsInText&&(re=i.imageAtlasTexture.size,ie=i.imageAtlasTexture,ne=D||e.options.rotating||e.options.zooming||C.kind===`composite`||C.kind===`camera`?h.LINEAR:h.NEAREST);else{let t=r.layout.get(`icon-size`).constantOr(0)!==1||l.iconsNeedLinear;te=i.imageAtlasTexture,j=m||e.options.rotating||e.options.zooming||t||D?h.LINEAR:h.NEAREST,ee=i.imageAtlasTexture.size}let M=t.aK(i,1,e.transform.zoom),ae=B(_,e.transform,M),oe=t.N();t.ay(oe,ae);let se=Ze(v,_,e.transform,M),N=t.aL(g,i,o,s),ce=g.getProjectionData({overscaledTileID:c,applyGlobeMatrix:!p,applyTerrainMatrix:!0}),le=w&&l.hasTextData(),ue=r.layout.get(`icon-text-fit`)!==`none`&&le&&l.hasIconData();if(y){let t=e.style.map.terrain?(t,n)=>e.style.map.terrain.getElevation(c,t,n):null;tt(l,e,a,ae,oe,v,u,r.layout.get(`text-rotation-alignment`)===`map`,c.toUnwrapped(),g.width,g.height,N,t)}let de=a&&w||ue,fe=y||de?li:v?ae:e.transform.clipSpaceToPixelsMatrix,pe=m&&r.paint.get(a?`text-halo-width`:`icon-halo-width`).constantOr(1)!==0,me;me=m?l.iconsInText?hr(C.kind,k,b,v,y,de,e,fe,se,N,ee,re,E):mr(C.kind,k,b,v,y,de,e,fe,se,N,a,ee,0,E):pr(C.kind,k,b,v,y,de,e,fe,se,N,a,ee,E);let he={program:O,buffers:d,uniformValues:me,projectionData:ce,atlasTexture:te,atlasTextureIcon:ie,atlasInterpolation:j,atlasInterpolationIcon:ne,isSDF:m,hasHalo:pe};if(x&&l.canOverlap){S=!0;let e=d.segments.get();for(let n of e)T.push({segments:new t.aV([n]),sortKey:n.sortKey,state:he,terrainData:A})}else T.push({segments:d.segments,sortKey:0,state:he,terrainData:A})}S&&T.sort(((e,t)=>e.sortKey-t.sortKey));for(let t of T){let n=t.state;if(m.activeTexture.set(h.TEXTURE0),n.atlasTexture.bind(n.atlasInterpolation,h.CLAMP_TO_EDGE),n.atlasTextureIcon&&(m.activeTexture.set(h.TEXTURE1),n.atlasTextureIcon&&n.atlasTextureIcon.bind(n.atlasInterpolationIcon,h.CLAMP_TO_EDGE)),n.isSDF){let i=n.uniformValues;n.hasHalo&&(i.u_is_halo=1,hi(n.buffers,t.segments,r,e,n.program,C,d,f,i,n.projectionData,t.terrainData)),i.u_is_halo=0}hi(n.buffers,t.segments,r,e,n.program,C,d,f,n.uniformValues,n.projectionData,t.terrainData)}}function hi(e,t,n,r,i,a,o,s,c,l,u){let d=r.context;i.draw(d,d.gl.TRIANGLES,a,o,s,K.backCCW,c,u,l,n.id,e.layoutVertexBuffer,e.indexBuffer,t,n.paint,r.transform.zoom,e.programConfigurations.get(n.id),e.dynamicLayoutVertexBuffer,e.opacityVertexBuffer)}function gi(e,n,r,i,a){let o=e.context,s=o.gl,c=J.disabled,l=new en([s.ONE,s.ONE],t.bn.transparent,[!0,!0,!0,!0]),u=n.getBucket(r);if(!u)return;let d=i.key,f=r.heatmapFbos.get(d);f||(f=vi(o,n.tileSize,n.tileSize),r.heatmapFbos.set(d,f)),o.bindFramebuffer.set(f.framebuffer),o.viewport.set([0,0,n.tileSize,n.tileSize]),o.clear({color:t.bn.transparent});let p=u.programConfigurations.get(r.id),m=e.useProgram(`heatmap`,p,!a),h=e.transform.getProjectionData({overscaledTileID:n.tileID,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),g=e.style.map.terrain.getTerrainData(i);m.draw(o,s.TRIANGLES,q.disabled,c,l,K.disabled,Qn(n,e.transform.zoom,r.paint.get(`heatmap-intensity`),1),g,h,r.id,u.layoutVertexBuffer,u.indexBuffer,u.segments,r.paint,e.transform.zoom,p)}function _i(e,t,n,r,i){let a=e.context,o=a.gl,s=e.transform;a.setColorMode(e.colorModeForRenderPass());let c=yi(a,t),l=n.key,u=t.heatmapFbos.get(l);if(!u)return;a.activeTexture.set(o.TEXTURE0),o.bindTexture(o.TEXTURE_2D,u.colorAttachment.get()),a.activeTexture.set(o.TEXTURE1),c.bind(o.LINEAR,o.CLAMP_TO_EDGE);let d=s.getProjectionData({overscaledTileID:n,applyTerrainMatrix:i,applyGlobeMatrix:!r});e.useProgram(`heatmapTexture`).draw(a,o.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,$n(e,t,0,1),null,d,t.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments,t.paint,s.zoom),u.destroy(),t.heatmapFbos.delete(l)}function vi(e,t,n){let r=e.gl,i=r.createTexture();r.bindTexture(r.TEXTURE_2D,i),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.LINEAR),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.LINEAR);let a=e.HALF_FLOAT??r.UNSIGNED_BYTE,o=e.RGBA16F??r.RGBA;r.texImage2D(r.TEXTURE_2D,0,o,t,n,0,r.RGBA,a,null);let s=e.createFramebuffer(t,n,!1,!1);return s.colorAttachment.set(i),s}function yi(e,n){return n.colorRampTexture||=new t.T(e,n.colorRamp,e.gl.RGBA),n.colorRampTexture}function bi(e,n,r,i,a,o,s,c){let l=256;if(a.stepInterpolant){let i=n.getSource().maxzoom,a=s.canonical.z===i?Math.ceil(1<<e.transform.maxZoom-s.canonical.z):1;l=t.ak(t.cc(o.maxLineLength/t.a5*1024*a),256,r.maxTextureSize)}return c.gradient=t.cd({expression:a.gradientExpression(),evaluationKey:`lineProgress`,resolution:l,image:c.gradient||void 0,clips:o.lineClipsArray}),c.texture?c.texture.update(c.gradient):c.texture=new t.T(r,c.gradient,i.RGBA),c.version=a.gradientVersion,c.texture}function xi(e,t,n,r,i){e.activeTexture.set(t.TEXTURE0),n.imageAtlasTexture.bind(t.LINEAR,t.CLAMP_TO_EDGE),r.updatePaintBuffers(i)}function Si(e,t,n,r,i,a){(i||e.lineAtlas.dirty)&&(t.activeTexture.set(n.TEXTURE0),e.lineAtlas.bind(t)),r.updatePaintBuffers(a)}function Ci(e,t,n,r,i,a,o){let s=a.gradients[i.id],c=s.texture;i.gradientVersion!==s.version&&(c=bi(e,t,n,r,i,a,o,s)),n.activeTexture.set(r.TEXTURE0),c.bind(i.stepInterpolant?r.NEAREST:r.LINEAR,r.CLAMP_TO_EDGE)}function wi(e,t,n,r,i,a,o,s,c){let l=a.gradients[i.id],u=l.texture;i.gradientVersion!==l.version&&(u=bi(e,t,n,r,i,a,o,l)),n.activeTexture.set(r.TEXTURE0),u.bind(i.stepInterpolant?r.NEAREST:r.LINEAR,r.CLAMP_TO_EDGE),n.activeTexture.set(r.TEXTURE1),e.lineAtlas.bind(n),s.updatePaintBuffers(c)}function Ti(e,t,n,r,i){if(!n||!r||!r.imageAtlas)return;let a=r.imageAtlas.patternPositions,o=a[n.to.toString()],s=a[n.from.toString()];if(!o&&s&&(o=s),!s&&o&&(s=o),!o||!s){let e=i.getPaintProperty(t);o=a[e],s=a[e]}o&&s&&e.setConstantPatternPositions(o,s)}function Ei(e,n,r,i,a,o,s,c){let l=e.context.gl,u=`fill-pattern`,d=r.paint.get(u),f=d&&d.constantOr(1),p=r.getCrossfadeParameters(),m,h,g,_,v,y=e.transform,b=r.paint.get(`fill-translate`),x=r.paint.get(`fill-translate-anchor`);s?(h=f&&!r.getPaintProperty(`fill-outline-color`)?`fillOutlinePattern`:`fillOutline`,m=l.LINES):(h=f?`fillPattern`:`fill`,m=l.TRIANGLES);let S=d.constantOr(null);for(let d of i){let i=n.getTile(d);if(f&&!i.patternsLoaded())continue;let C=i.getBucket(r);if(!C)continue;let w=C.programConfigurations.get(r.id),T=e.useProgram(h,w),E=e.style.map.terrain&&e.style.map.terrain.getTerrainData(d);f&&(e.context.activeTexture.set(l.TEXTURE0),i.imageAtlasTexture.bind(l.LINEAR,l.CLAMP_TO_EDGE),w.updatePaintBuffers(p)),Ti(w,u,S,i,r);let D=y.getProjectionData({overscaledTileID:d,applyGlobeMatrix:!c,applyTerrainMatrix:!0}),O=t.aL(y,i,b,x);if(s){_=C.indexBuffer2,v=C.segments2;let t=[l.drawingBufferWidth,l.drawingBufferHeight];g=h===`fillOutlinePattern`&&f?qn(e,p,i,t,O):Kn(t,O)}else _=C.indexBuffer,v=C.segments,g=f?Gn(e,p,i,O):{u_fill_translate:O};let k=e.stencilModeForClipping(d);T.draw(e.context,m,a,k,o,K.backCCW,g,E,D,r.id,C.layoutVertexBuffer,_,v,r.paint,e.transform.zoom,w)}}function Di(e,n,r,i,a,o,s,c){let l=e.context,u=l.gl,d=`fill-extrusion-pattern`,f=r.paint.get(d),p=f.constantOr(1),m=r.getCrossfadeParameters(),h=r.paint.get(`fill-extrusion-opacity`),g=f.constantOr(null),_=e.transform;for(let f of i){let i=n.getTile(f),v=i.getBucket(r);if(!v)continue;let y=e.style.map.terrain&&e.style.map.terrain.getTerrainData(f),b=v.programConfigurations.get(r.id),x=e.useProgram(p?`fillExtrusionPattern`:`fillExtrusion`,b);p&&(e.context.activeTexture.set(u.TEXTURE0),i.imageAtlasTexture.bind(u.LINEAR,u.CLAMP_TO_EDGE),b.updatePaintBuffers(m));let S=_.getProjectionData({overscaledTileID:f,applyGlobeMatrix:!c,applyTerrainMatrix:!0});Ti(b,d,g,i,r);let C=t.aL(_,i,r.paint.get(`fill-extrusion-translate`),r.paint.get(`fill-extrusion-translate-anchor`)),w=r.paint.get(`fill-extrusion-vertical-gradient`),T=p?Wn(e,w,h,C,f,m,i):Un(e,w,h,C);x.draw(l,l.gl.TRIANGLES,a,o,s,K.backCCW,T,y,S,r.id,v.layoutVertexBuffer,v.indexBuffer,v.segments,r.paint,e.transform.zoom,b,e.style.map.terrain&&v.centroidVertexBuffer)}}function Oi(e,t,n,r,i,a,o,s,c){let l=e.style.projection,u=e.context,d=e.transform,f=u.gl,p=[`#define NUM_ILLUMINATION_SOURCES ${n.paint.get(`hillshade-highlight-color`).values.length}`],m=e.useProgram(`hillshade`,null,!1,p),h=!e.options.moving;for(let p of r){let r=t.getTile(p),g=r.fbo;if(!g)continue;let _=l.getMeshFromTileID(u,p.canonical,s,!0,`raster`),v=e.style.map.terrain?.getTerrainData(p);u.activeTexture.set(f.TEXTURE0),f.bindTexture(f.TEXTURE_2D,g.colorAttachment.get());let y=d.getProjectionData({overscaledTileID:p,aligned:h,applyGlobeMatrix:!c,applyTerrainMatrix:!0});m.draw(u,f.TRIANGLES,a,i[p.overscaledZ],o,K.backCCW,er(e,r,n),v,y,n.id,_.vertexBuffer,_.indexBuffer,_.segments)}}function ki(e,n,r,i,a,o,s,c,l){let u=e.style.projection,d=e.context,f=e.transform,p=d.gl,m=e.useProgram(`colorRelief`),h=!e.options.moving,g=r.paint.get(`resampling`)===`nearest`?p.NEAREST:p.LINEAR,_=!0,v=0;for(let y of i){let i=n.getTile(y),b=i.dem;if(_){let e=p.getParameter(p.MAX_TEXTURE_SIZE),{elevationTexture:t,colorTexture:n}=r.getColorRampTextures(d,e,b.getUnpackVector());d.activeTexture.set(p.TEXTURE1),t.bind(p.NEAREST,p.CLAMP_TO_EDGE),d.activeTexture.set(p.TEXTURE4),n.bind(p.LINEAR,p.CLAMP_TO_EDGE),_=!1,v=t.size[0]}if(!b||!b.data)continue;let x=b.stride,S=b.getPixels();if(d.activeTexture.set(p.TEXTURE0),d.pixelStoreUnpackPremultiplyAlpha.set(!1),i.demTexture=i.demTexture||e.getTileTexture(x),i.demTexture){let e=i.demTexture;e.update(S,{premultiply:!1}),e.bind(g,p.CLAMP_TO_EDGE)}else i.demTexture=new t.T(d,S,p.RGBA,{premultiply:!1}),i.demTexture.bind(g,p.CLAMP_TO_EDGE);let C=u.getMeshFromTileID(d,y.canonical,c,!0,`raster`),w=e.style.map.terrain?.getTerrainData(y),T=f.getProjectionData({overscaledTileID:y,aligned:h,applyGlobeMatrix:!l,applyTerrainMatrix:!0});m.draw(d,p.TRIANGLES,o,a[y.overscaledZ],s,K.backCCW,rr(r,i.dem,v),w,T,r.id,C.vertexBuffer,C.indexBuffer,C.segments)}}let Ai=[new t.P(0,0),new t.P(t.a5,0),new t.P(t.a5,t.a5),new t.P(0,t.a5)];function ji(e,t,n,r,i,a,o,s,c=!1,l=!1){let u=r[r.length-1].overscaledZ,d=e.context,f=d.gl,p=e.useProgram(`raster`),m=e.transform,h=e.style.projection,g=e.colorModeForRenderPass(),_=!e.options.moving,v=n.paint.get(`raster-opacity`),y=n.paint.get(`resampling`)===`nearest`||n.paint.get(`raster-resampling`)===`nearest`?f.NEAREST:f.LINEAR,b=n.paint.get(`raster-fade-duration`),x=!!e.style.map.terrain;for(let S of r){let r=e.getDepthModeForSublayer(S.overscaledZ-u,v===1?q.ReadWrite:q.ReadOnly,f.LESS),C=t.getTile(S);d.activeTexture.set(f.TEXTURE0),C.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST),d.activeTexture.set(f.TEXTURE1);let{parentTile:w,parentScaleBy:T,parentTopLeft:E,fadeValues:D}=Mi(C,t,b,x);C.fadeOpacity=D.tileOpacity,w?(w.fadeOpacity=D.parentTileOpacity,w.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST)):C.texture.bind(y,f.CLAMP_TO_EDGE,f.LINEAR_MIPMAP_NEAREST),C.texture.useMipmap&&d.extTextureFilterAnisotropic&&e.transform.pitch>e.options.anisotropicFilterPitch&&f.texParameterf(f.TEXTURE_2D,d.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,d.extTextureFilterAnisotropicMax);let O=e.style.map.terrain&&e.style.map.terrain.getTerrainData(S),k=m.getProjectionData({overscaledTileID:S,aligned:_,applyGlobeMatrix:!l,applyTerrainMatrix:!0}),A=dr(E,T,D.fadeMix,n,s),ee=h.getMeshFromTileID(d,S.canonical,a,o,`raster`);p.draw(d,f.TRIANGLES,r,i?i[S.overscaledZ]:J.disabled,g,c?K.frontCCW:K.backCCW,A,O,k,n.id,ee.vertexBuffer,ee.indexBuffer,ee.segments)}}function Mi(e,n,r,i){let a={parentTile:null,parentScaleBy:1,parentTopLeft:[0,0],fadeValues:{tileOpacity:1,parentTileOpacity:1,fadeMix:{opacity:1,mix:0}}};if(r===0||i)return a;if(e.fadingParentID){let i=n.getLoadedTile(e.fadingParentID);if(!i)return a;let o=2**(i.tileID.overscaledZ-e.tileID.overscaledZ);return{parentTile:i,parentScaleBy:o,parentTopLeft:[e.tileID.canonical.x*o%1,e.tileID.canonical.y*o%1],fadeValues:function(e,n,r){let i=l(),a=(i-n.timeAdded)/r,o=e.fadingDirection===ke.Incoming,s=t.ak((i-e.timeAdded)/r,0,1),c=t.ak(1-a,0,1),u=o?s:c;return{tileOpacity:u,parentTileOpacity:o?c:s,fadeMix:{opacity:1,mix:1-u}}}(e,i,r)}}return e.selfFading?{parentTile:null,parentScaleBy:1,parentTopLeft:[0,0],fadeValues:function(e,n){let r=(l()-e.timeAdded)/n,i=t.ak(r,0,1);return{tileOpacity:i,fadeMix:{opacity:i,mix:0}}}(e,r)}:a}let Ni=new t.bn(1,0,0,1),Pi=new t.bn(0,1,0,1),Fi=new t.bn(0,0,1,1),Ii=new t.bn(1,0,1,1),Li=new t.bn(0,1,1,1);function Ri(e,t,n,r){Bi(e,0,t+n/2,e.transform.width,n,r)}function zi(e,t,n,r){Bi(e,t-n/2,0,n,e.transform.height,r)}function Bi(e,t,n,r,i,a){let o=e.context,s=o.gl;s.enable(s.SCISSOR_TEST),s.scissor(t*e.pixelRatio,n*e.pixelRatio,r*e.pixelRatio,i*e.pixelRatio),o.clear({color:a}),s.disable(s.SCISSOR_TEST)}function Vi(e,n,r){let i=e.context,a=i.gl,o=e.useProgram(`debug`),s=q.disabled,c=J.disabled,l=e.colorModeForRenderPass(),u=`$debug`,d=e.style.map.terrain&&e.style.map.terrain.getTerrainData(r);i.activeTexture.set(a.TEXTURE0);let f=n.getTileByID(r.key).latestRawTileData,p=Math.floor((f&&f.byteLength||0)/1024),m=n.getTile(r).tileSize,h=512/Math.min(m,512)*(r.overscaledZ/e.transform.zoom)*.5,g=r.canonical.toString();r.overscaledZ!==r.canonical.z&&(g+=` => ${r.overscaledZ}`),function(e,t){e.initDebugOverlayCanvas();let n=e.debugOverlayCanvas,r=e.context.gl,i=e.debugOverlayCanvas.getContext(`2d`);i.clearRect(0,0,n.width,n.height),i.shadowColor=`white`,i.shadowBlur=2,i.lineWidth=1.5,i.strokeStyle=`white`,i.textBaseline=`top`,i.font=`bold 36px Open Sans, sans-serif`,i.fillText(t,5,5),i.strokeText(t,5,5),e.debugOverlayTexture.update(n),e.debugOverlayTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)}(e,`${g} ${p}kB`);let _=e.transform.getProjectionData({overscaledTileID:r,applyGlobeMatrix:!0,applyTerrainMatrix:!0});o.draw(i,a.TRIANGLES,s,c,en.alphaBlended,K.disabled,Zn(t.bn.transparent,h),null,_,u,e.debugBuffer,e.quadTriangleIndexBuffer,e.debugSegments),o.draw(i,a.LINE_STRIP,s,c,l,K.disabled,Zn(t.bn.red),d,_,u,e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments)}function Hi(e,t,n,r){let{isRenderingGlobe:i}=r,a=e.context,o=a.gl,s=e.transform,c=e.colorModeForRenderPass(),l=e.getDepthModeFor3D(),u=e.useProgram(`terrain`);a.bindFramebuffer.set(null),a.viewport.set([0,0,e.width,e.height]);for(let r of n){let n=t.getTerrainMesh(r.tileID),d=e.renderToTexture.getTexture(r),f=t.getTerrainData(r.tileID);a.activeTexture.set(o.TEXTURE0),o.bindTexture(o.TEXTURE_2D,d.texture);let p=Rn(t.getMeshFrameDelta(s.zoom),s.calculateFogMatrix(r.tileID.toUnwrapped()),e.style.sky,s.pitch,i),m=s.getProjectionData({overscaledTileID:r.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0});u.draw(a,o.TRIANGLES,l,J.disabled,c,K.backCCW,p,f,m,`terrain`,n.vertexBuffer,n.indexBuffer,n.segments)}}function Ui(e,n){if(!n.mesh){let r=new t.aU;r.emplaceBack(-1,-1),r.emplaceBack(1,-1),r.emplaceBack(1,1),r.emplaceBack(-1,1);let i=new t.aW;i.emplaceBack(0,1,2),i.emplaceBack(0,2,3),n.mesh=new Lt(e.createVertexBuffer(r,Rt.members),e.createIndexBuffer(i),t.aV.simpleSegment(0,0,r.length,i.length))}return n.mesh}class Wi{constructor(e,n){this.context=new oi(e),this.transform=n,this._tileTextures={},this.terrainFacilitator={dirty:!0,matrix:t.ao(new Float64Array(16)),renderTime:0},this.setup(),this.numSublayers=L.maxOverzooming+L.maxUnderzooming+1,this.depthEpsilon=1/2**16,this.crossTileSymbolIndex=new W}resize(e,t,n){if(this.width=Math.floor(e*n),this.height=Math.floor(t*n),this.pixelRatio=n,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(let e of this.style._order)this.style._layers[e].resize()}setup(){let e=this.context,n=new t.aU;n.emplaceBack(0,0),n.emplaceBack(t.a5,0),n.emplaceBack(0,t.a5),n.emplaceBack(t.a5,t.a5),this.tileExtentBuffer=e.createVertexBuffer(n,Rt.members),this.tileExtentSegments=t.aV.simpleSegment(0,0,4,2);let r=new t.aU;r.emplaceBack(0,0),r.emplaceBack(t.a5,0),r.emplaceBack(0,t.a5),r.emplaceBack(t.a5,t.a5),this.debugBuffer=e.createVertexBuffer(r,Rt.members),this.debugSegments=t.aV.simpleSegment(0,0,4,5);let i=new t.cf;i.emplaceBack(0,0,0,0),i.emplaceBack(t.a5,0,t.a5,0),i.emplaceBack(0,t.a5,0,t.a5),i.emplaceBack(t.a5,t.a5,t.a5,t.a5),this.rasterBoundsBuffer=e.createVertexBuffer(i,In.members),this.rasterBoundsSegments=t.aV.simpleSegment(0,0,4,2);let a=new t.aU;a.emplaceBack(0,0),a.emplaceBack(t.a5,0),a.emplaceBack(0,t.a5),a.emplaceBack(t.a5,t.a5),this.rasterBoundsBufferPosOnly=e.createVertexBuffer(a,Rt.members),this.rasterBoundsSegmentsPosOnly=t.aV.simpleSegment(0,0,4,5);let o=new t.aU;o.emplaceBack(0,0),o.emplaceBack(1,0),o.emplaceBack(0,1),o.emplaceBack(1,1),this.viewportBuffer=e.createVertexBuffer(o,Rt.members),this.viewportSegments=t.aV.simpleSegment(0,0,4,2);let s=new t.cg;s.emplaceBack(0),s.emplaceBack(1),s.emplaceBack(3),s.emplaceBack(2),s.emplaceBack(0),this.tileBorderIndexBuffer=e.createIndexBuffer(s);let c=new t.aW;c.emplaceBack(1,0,2),c.emplaceBack(1,2,3),this.quadTriangleIndexBuffer=e.createIndexBuffer(c);let l=this.context.gl;this.stencilClearMode=new J({func:l.ALWAYS,mask:0},0,255,l.ZERO,l.ZERO,l.ZERO),this.tileExtentMesh=new Lt(this.tileExtentBuffer,this.quadTriangleIndexBuffer,this.tileExtentSegments)}clearStencil(){let e=this.context,n=e.gl;this.nextStencilID=1,this.currentStencilSource=void 0;let r=t.N();t.c5(r,0,this.width,this.height,0,0,1),t.Q(r,r,[n.drawingBufferWidth,n.drawingBufferHeight,0]);let i={mainMatrix:r,tileMercatorCoords:[0,0,1,1],clippingPlane:[0,0,0,0],projectionTransition:0,fallbackMatrix:r};this.useProgram(`clippingMask`,null,!0).draw(e,n.TRIANGLES,q.disabled,this.stencilClearMode,en.disabled,K.disabled,null,null,i,`$clipping`,this.viewportBuffer,this.quadTriangleIndexBuffer,this.viewportSegments)}_renderTileClippingMasks(e,t,n){if(this.currentStencilSource===e.source||!e.isTileClipped()||!t||!t.length)return;this.currentStencilSource=e.source,this.nextStencilID+t.length>256&&this.clearStencil();let r=this.context;r.setColorMode(en.disabled),r.setDepthMode(q.disabled);let i={};for(let e of t)i[e.key]=this.nextStencilID++;this._renderTileMasks(i,t,n,!0),this._renderTileMasks(i,t,n,!1),this._tileClippingMaskIDs=i}_renderTileMasks(e,t,n,r){let i=this.context,a=i.gl,o=this.style.projection,s=this.transform,c=this.useProgram(`clippingMask`);for(let l of t){let t=e[l.key],u=this.style.map.terrain&&this.style.map.terrain.getTerrainData(l),d=o.getMeshFromTileID(this.context,l.canonical,r,!0,`stencil`),f=s.getProjectionData({overscaledTileID:l,applyGlobeMatrix:!n,applyTerrainMatrix:!0});c.draw(i,a.TRIANGLES,q.disabled,new J({func:a.ALWAYS,mask:0},t,255,a.KEEP,a.KEEP,a.REPLACE),en.disabled,n?K.disabled:K.backCCW,null,u,f,`$clipping`,d.vertexBuffer,d.indexBuffer,d.segments)}}_renderTilesDepthBuffer(){let e=this.context,t=e.gl,n=this.style.projection,r=this.transform,i=this.useProgram(`depth`),a=this.getDepthModeFor3D(),o=Ue(r,{tileSize:r.tileSize});for(let s of o){let o=this.style.map.terrain&&this.style.map.terrain.getTerrainData(s),c=n.getMeshFromTileID(this.context,s.canonical,!0,!0,`raster`),l=r.getProjectionData({overscaledTileID:s,applyGlobeMatrix:!0,applyTerrainMatrix:!0});i.draw(e,t.TRIANGLES,a,J.disabled,en.disabled,K.backCCW,null,o,l,`$clipping`,c.vertexBuffer,c.indexBuffer,c.segments)}}stencilModeFor3D(){this.currentStencilSource=void 0,this.nextStencilID+1>256&&this.clearStencil();let e=this.nextStencilID++,t=this.context.gl;return new J({func:t.NOTEQUAL,mask:255},e,255,t.KEEP,t.KEEP,t.REPLACE)}stencilModeForClipping(e){let t=this.context.gl;return new J({func:t.EQUAL,mask:255},this._tileClippingMaskIDs[e.key],0,t.KEEP,t.KEEP,t.REPLACE)}getStencilConfigForOverlapAndUpdateStencilID(e){let t=this.context.gl,n=e.sort(((e,t)=>t.overscaledZ-e.overscaledZ)),r=n[n.length-1].overscaledZ,i=n[0].overscaledZ-r+1;if(i>1){this.currentStencilSource=void 0,this.nextStencilID+i>256&&this.clearStencil();let e={};for(let n=0;n<i;n++)e[n+r]=new J({func:t.GEQUAL,mask:255},n+this.nextStencilID,255,t.KEEP,t.KEEP,t.REPLACE);return this.nextStencilID+=i,[e,n]}return[{[r]:J.disabled},n]}stencilConfigForOverlapTwoPass(e){let t=this.context.gl,n=e.sort(((e,t)=>t.overscaledZ-e.overscaledZ)),r=n[n.length-1].overscaledZ,i=n[0].overscaledZ-r+1;if(this.clearStencil(),i>1){let e={},a={};for(let n=0;n<i;n++)e[n+r]=new J({func:t.GREATER,mask:255},i+1+n,255,t.KEEP,t.KEEP,t.REPLACE),a[n+r]=new J({func:t.GREATER,mask:255},1+n,255,t.KEEP,t.KEEP,t.REPLACE);return this.nextStencilID=2*i+1,[e,a,n]}return this.nextStencilID=3,[{[r]:new J({func:t.GREATER,mask:255},2,255,t.KEEP,t.KEEP,t.REPLACE)},{[r]:new J({func:t.GREATER,mask:255},1,255,t.KEEP,t.KEEP,t.REPLACE)},n]}colorModeForRenderPass(){let e=this.context.gl;if(this._showOverdrawInspector){let n=1/8;return new en([e.CONSTANT_COLOR,e.ONE],new t.bn(n,n,n,0),[!0,!0,!0,!0])}return this.renderPass===`opaque`?en.unblended:en.alphaBlended}getDepthModeForSublayer(e,t,n){if(!this.opaquePassEnabledForLayer())return q.disabled;let r=1-((1+this.currentLayer)*this.numSublayers+e)*this.depthEpsilon;return new q(n||this.context.gl.LEQUAL,t,[r,r])}getDepthModeFor3D(){return new q(this.context.gl.LEQUAL,q.ReadWrite,this.depthRangeFor3D)}opaquePassEnabledForLayer(){return this.currentLayer<this.opaquePassCutoff}render(e,n){var r;this.style=e,this.options=n,this.lineAtlas=e.lineAtlas,this.imageManager=e.imageManager,this.glyphManager=e.glyphManager,this.symbolFadeChange=e.placement.symbolFadeChange(l()),this.imageManager.beginFrame();let i=this.style._order,a=this.style.tileManagers,o={},s={},c={},u={isRenderingToTexture:!1,isRenderingGlobe:e.projection?.transitionState>0};for(let e in a){let t=a[e];t.used&&t.prepare(this.context),o[e]=t.getVisibleCoordinates(!1),s[e]=o[e].slice().reverse(),c[e]=t.getVisibleCoordinates(!0).reverse()}this.opaquePassCutoff=1/0;for(let e=0;e<i.length;e++)if(this.style._layers[i[e]].is3D()){this.opaquePassCutoff=e;break}this.maybeDrawDepthAndCoords(!1),this.renderToTexture&&(this.renderToTexture.prepareForRender(this.style,this.transform.zoom),this.opaquePassCutoff=0),this.renderPass=`offscreen`;for(let e of i){let t=this.style._layers[e];if(!t.hasOffscreenPass()||t.isHidden(this.transform.zoom))continue;let n=s[t.source];(t.type===`custom`||n.length)&&this.renderLayer(this,a[t.source],t,n,u)}if((r=this.style.projection)==null||r.updateGPUdependent({context:this.context,useProgram:e=>this.useProgram(e)}),this.context.viewport.set([0,0,this.width,this.height]),this.context.bindFramebuffer.set(null),this.context.clear({color:n.showOverdrawInspector?t.bn.black:t.bn.transparent,depth:1}),this.clearStencil(),this.style.sky&&function(e,t){let n=e.context,r=n.gl,i=((e,t,n)=>{let r=Math.cos(t.rollInRadians),i=Math.sin(t.rollInRadians),a=Fe(t),o=t.getProjectionData({overscaledTileID:null,applyGlobeMatrix:!0,applyTerrainMatrix:!0}).projectionTransition;return{u_sky_color:e.properties.get(`sky-color`),u_horizon_color:e.properties.get(`horizon-color`),u_horizon:[(t.width/2-a*i)*n,(t.height/2+a*r)*n],u_horizon_normal:[-i,r],u_sky_horizon_blend:e.properties.get(`sky-horizon-blend`)*t.height/2*n,u_sky_blend:o}})(t,e.style.map.transform,e.pixelRatio),a=new q(r.LEQUAL,q.ReadWrite,[0,1]),o=J.disabled,s=e.colorModeForRenderPass(),c=e.useProgram(`sky`),l=Ui(n,t);c.draw(n,r.TRIANGLES,a,o,s,K.disabled,i,null,void 0,`sky`,l.vertexBuffer,l.indexBuffer,l.segments)}(this,this.style.sky),this._showOverdrawInspector=n.showOverdrawInspector,this.depthRangeFor3D=[0,1-(e._order.length+2)*this.numSublayers*this.depthEpsilon],!this.renderToTexture)for(this.renderPass=`opaque`,this.currentLayer=i.length-1;this.currentLayer>=0;this.currentLayer--){let e=this.style._layers[i[this.currentLayer]],t=a[e.source],n=o[e.source];this._renderTileClippingMasks(e,n,!1),this.renderLayer(this,t,e,n,u)}this.renderPass=`translucent`;let d=!1;for(this.currentLayer=0;this.currentLayer<i.length;this.currentLayer++){let e=this.style._layers[i[this.currentLayer]],t=a[e.source];if(this.renderToTexture&&this.renderToTexture.renderLayer(e,u))continue;this.opaquePassEnabledForLayer()||d||(d=!0,u.isRenderingGlobe&&!this.style.map.terrain&&this._renderTilesDepthBuffer());let n=(e.type===`symbol`?c:s)[e.source];this._renderTileClippingMasks(e,o[e.source],!!this.renderToTexture),this.renderLayer(this,t,e,n,u)}if(u.isRenderingGlobe&&function(e,n,r){let i=e.context,a=i.gl,o=e.useProgram(`atmosphere`),s=new q(a.LEQUAL,q.ReadOnly,[0,1]),c=e.transform,l=function(e,n){let r=e.properties.get(`position`),i=[-r.x,-r.y,-r.z],a=t.ao(new Float64Array(16));return e.properties.get(`anchor`)===`map`&&(t.be(a,a,n.rollInRadians),t.bf(a,a,-n.pitchInRadians),t.be(a,a,n.bearingInRadians),t.bf(a,a,n.center.lat*Math.PI/180),t.bH(a,a,-n.center.lng*Math.PI/180)),t.ce(i,i,a),i}(r,e.transform),u=c.getProjectionData({overscaledTileID:null,applyGlobeMatrix:!0,applyTerrainMatrix:!0}),d=n.properties.get(`atmosphere-blend`)*u.projectionTransition;if(d===0)return;let f=gn(c.worldSize,c.center.lat),p=c.inverseProjectionMatrix,m=new Float64Array(4);m[3]=1,t.aE(m,m,c.modelViewProjectionMatrix),m[0]/=m[3],m[1]/=m[3],m[2]/=m[3],m[3]=1,t.aE(m,m,p),m[0]/=m[3],m[1]/=m[3],m[2]/=m[3],m[3]=1;let h=((e,t,n,r,i)=>({u_sun_pos:e,u_atmosphere_blend:t,u_globe_position:n,u_globe_radius:r,u_inv_proj_matrix:i}))(l,d,[m[0],m[1],m[2]],f,p),g=Ui(i,n);o.draw(i,a.TRIANGLES,s,J.disabled,en.alphaBlended,K.disabled,h,null,null,`atmosphere`,g.vertexBuffer,g.indexBuffer,g.segments)}(this,this.style.sky,this.style.light),this.options.showTileBoundaries){let e=function(e,t){let n=null,r=Object.values(e._layers).flatMap((n=>n.source&&!n.isHidden(t)?[e.tileManagers[n.source]]:[])),i=r.filter((e=>e.getSource().type===`vector`)),a=r.filter((e=>e.getSource().type!==`vector`)),o=e=>{(!n||n.getSource().maxzoom<e.getSource().maxzoom)&&(n=e)};return i.forEach((e=>o(e))),n||a.forEach((e=>o(e))),n}(this.style,this.transform.zoom);e&&function(e,t,n){for(let r=0;r<n.length;r++)Vi(e,t,n[r])}(this,e,e.getVisibleCoordinates())}this.options.showPadding&&function(e){let t=e.transform.padding;Ri(e,e.transform.height-(t.top||0),3,Ni),Ri(e,t.bottom||0,3,Pi),zi(e,t.left||0,3,Fi),zi(e,e.transform.width-(t.right||0),3,Ii);let n=e.transform.centerPoint;(function(e,t,n,r){Bi(e,t-1,n-10,2,20,r),Bi(e,t-10,n-1,20,2,r)})(e,n.x,e.transform.height-n.y,Li)}(this),this.context.setDefault()}maybeDrawDepthAndCoords(e){if(!this.style||!this.style.map||!this.style.map.terrain)return;let n=this.terrainFacilitator.matrix,r=this.transform.modelViewProjectionMatrix,i=this.terrainFacilitator.dirty;i||=e?!t.ch(n,r):!t.ci(n,r),i||=this.style.map.terrain.tileManager.anyTilesAfterTime(this.terrainFacilitator.renderTime),i&&(t.cj(n,r),this.terrainFacilitator.renderTime=Date.now(),this.terrainFacilitator.dirty=!1,function(e,n){let r=e.context,i=r.gl,a=e.transform,o=en.unblended,s=new q(i.LEQUAL,q.ReadWrite,[0,1]),c=n.tileManager.getRenderableTiles(),l=e.useProgram(`terrainDepth`);r.bindFramebuffer.set(n.getFramebuffer(`depth`).framebuffer),r.viewport.set([0,0,e.width/devicePixelRatio,e.height/devicePixelRatio]),r.clear({color:t.bn.transparent,depth:1});for(let e of c){let t=n.getTerrainMesh(e.tileID),c=n.getTerrainData(e.tileID),u=a.getProjectionData({overscaledTileID:e.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0}),d={u_ele_delta:n.getMeshFrameDelta(a.zoom)};l.draw(r,i.TRIANGLES,s,J.disabled,o,K.backCCW,d,c,u,`terrain`,t.vertexBuffer,t.indexBuffer,t.segments)}r.bindFramebuffer.set(null),r.viewport.set([0,0,e.width,e.height])}(this,this.style.map.terrain),function(e,n){let r=e.context,i=r.gl,a=e.transform,o=en.unblended,s=new q(i.LEQUAL,q.ReadWrite,[0,1]),c=n.getCoordsTexture(),l=n.tileManager.getRenderableTiles(),u=e.useProgram(`terrainCoords`);r.bindFramebuffer.set(n.getFramebuffer(`coords`).framebuffer),r.viewport.set([0,0,e.width/devicePixelRatio,e.height/devicePixelRatio]),r.clear({color:t.bn.transparent,depth:1}),n.coordsIndex=[];for(let e of l){let t=n.getTerrainMesh(e.tileID),l=n.getTerrainData(e.tileID);r.activeTexture.set(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,c.texture);let d={u_terrain_coords_id:(255-n.coordsIndex.length)/255,u_texture:0,u_ele_delta:n.getMeshFrameDelta(a.zoom)},f=a.getProjectionData({overscaledTileID:e.tileID,applyTerrainMatrix:!1,applyGlobeMatrix:!0});u.draw(r,i.TRIANGLES,s,J.disabled,o,K.backCCW,d,l,f,`terrain`,t.vertexBuffer,t.indexBuffer,t.segments),n.coordsIndex.push(e.tileID.key)}r.bindFramebuffer.set(null),r.viewport.set([0,0,e.width,e.height])}(this,this.style.map.terrain))}renderLayer(e,n,r,i,a){r.isHidden(this.transform.zoom)||(r.type===`background`||r.type===`custom`||(i||[]).length)&&(this.id=r.id,t.aQ(r)?function(e,n,r,i,a,o){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:s}=o,c=J.disabled,l=e.colorModeForRenderPass();(r._unevaluatedLayout.hasValue(`text-variable-anchor`)||r._unevaluatedLayout.hasValue(`text-variable-anchor-offset`))&&function(e,n,r,i,a,o,s,c,l){let u=n.transform,d=n.style.map.terrain,f=a===`map`,p=o===`map`;for(let a of e){let e=i.getTile(a),o=e.getBucket(r);if(!o||!o.text||!o.text.segments.get().length)continue;let m=t.av(o.textSizeData,u.zoom),h=t.aK(e,1,n.transform.zoom),g=B(f,n.transform,h),_=r.layout.get(`icon-text-fit`)!==`none`&&o.hasIconData();if(m){let n=2**(u.zoom-e.tileID.overscaledZ),r=d?(e,t)=>d.getElevation(a,e,t):null;fi(o,f,p,l,u,g,n,m,_,t.aL(u,e,s,c),a.toUnwrapped(),r)}}}(i,e,r,n,r.layout.get(`text-rotation-alignment`),r.layout.get(`text-pitch-alignment`),r.paint.get(`text-translate`),r.paint.get(`text-translate-anchor`),a),r.paint.get(`icon-opacity`).constantOr(1)!==0&&mi(e,n,r,i,!1,r.paint.get(`icon-translate`),r.paint.get(`icon-translate-anchor`),r.layout.get(`icon-rotation-alignment`),r.layout.get(`icon-pitch-alignment`),r.layout.get(`icon-keep-upright`),c,l,s),r.paint.get(`text-opacity`).constantOr(1)!==0&&mi(e,n,r,i,!0,r.paint.get(`text-translate`),r.paint.get(`text-translate-anchor`),r.layout.get(`text-rotation-alignment`),r.layout.get(`text-pitch-alignment`),r.layout.get(`text-keep-upright`),c,l,s),n.map.showCollisionBoxes&&(ci(e,n,r,i,!0),ci(e,n,r,i,!1))}(e,n,r,i,this.style.placement.variableOffsets,a):t.ck(r)?function(e,n,r,i,a){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:o}=a,s=r.paint.get(`circle-opacity`),c=r.paint.get(`circle-stroke-width`),l=r.paint.get(`circle-stroke-opacity`),u=!r.layout.get(`circle-sort-key`).isConstant();if(s.constantOr(1)===0&&(c.constantOr(1)===0||l.constantOr(1)===0))return;let d=e.context,f=d.gl,p=e.transform,m=e.getDepthModeForSublayer(0,q.ReadOnly),h=J.disabled,g=e.colorModeForRenderPass(),_=[],v=p.getCircleRadiusCorrection();for(let a=0;a<i.length;a++){let s=i[a],c=n.getTile(s),l=c.getBucket(r);if(!l)continue;let d=r.paint.get(`circle-translate`),f=r.paint.get(`circle-translate-anchor`),m=t.aL(p,c,d,f),h=l.programConfigurations.get(r.id),g=e.useProgram(`circle`,h),y=l.layoutVertexBuffer,b=l.indexBuffer,x=e.style.map.terrain&&e.style.map.terrain.getTerrainData(s),S={programConfiguration:h,program:g,layoutVertexBuffer:y,indexBuffer:b,uniformValues:Jn(e,c,r,m,v),terrainData:x,projectionData:p.getProjectionData({overscaledTileID:s,applyGlobeMatrix:!o,applyTerrainMatrix:!0})};if(u){let e=l.segments.get();for(let n of e)_.push({segments:new t.aV([n]),sortKey:n.sortKey,state:S})}else _.push({segments:l.segments,sortKey:0,state:S})}u&&_.sort(((e,t)=>e.sortKey-t.sortKey));for(let t of _){let{programConfiguration:n,program:i,layoutVertexBuffer:a,indexBuffer:o,uniformValues:s,terrainData:c,projectionData:l}=t.state;i.draw(d,f.TRIANGLES,m,h,g,K.backCCW,s,c,l,r.id,a,o,t.segments,r.paint,e.transform.zoom,n)}}(e,n,r,i,a):t.cl(r)?function(e,n,r,i,a){if(r.paint.get(`heatmap-opacity`)===0)return;let o=e.context,{isRenderingToTexture:s,isRenderingGlobe:c}=a;if(e.style.map.terrain){for(let t of i){let i=n.getTile(t);n.hasRenderableParent(t)||(e.renderPass===`offscreen`?gi(e,i,r,t,c):e.renderPass===`translucent`&&_i(e,r,t,s,c))}o.viewport.set([0,0,e.width,e.height])}else e.renderPass===`offscreen`?function(e,n,r,i){let a=e.context,o=a.gl,s=e.transform,c=J.disabled,l=new en([o.ONE,o.ONE],t.bn.transparent,[!0,!0,!0,!0]);(function(e,n,r){let i=e.gl;e.activeTexture.set(i.TEXTURE1),e.viewport.set([0,0,n.width/4,n.height/4]);let a=r.heatmapFbos.get(t.cb);a?(i.bindTexture(i.TEXTURE_2D,a.colorAttachment.get()),e.bindFramebuffer.set(a.framebuffer)):(a=vi(e,n.width/4,n.height/4),r.heatmapFbos.set(t.cb,a))})(a,e,r),a.clear({color:t.bn.transparent});for(let t=0;t<i.length;t++){let u=i[t];if(n.hasRenderableParent(u))continue;let d=n.getTile(u),f=d.getBucket(r);if(!f)continue;let p=f.programConfigurations.get(r.id),m=e.useProgram(`heatmap`,p),h=s.getProjectionData({overscaledTileID:u,applyGlobeMatrix:!0,applyTerrainMatrix:!1}),g=s.getCircleRadiusCorrection();m.draw(a,o.TRIANGLES,q.disabled,c,l,K.backCCW,Qn(d,s.zoom,r.paint.get(`heatmap-intensity`),g),null,h,r.id,f.layoutVertexBuffer,f.indexBuffer,f.segments,r.paint,s.zoom,p)}a.viewport.set([0,0,e.width,e.height])}(e,n,r,i):e.renderPass===`translucent`&&function(e,n){let r=e.context,i=r.gl;r.setColorMode(e.colorModeForRenderPass());let a=n.heatmapFbos.get(t.cb);a&&(r.activeTexture.set(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,a.colorAttachment.get()),r.activeTexture.set(i.TEXTURE1),yi(r,n).bind(i.LINEAR,i.CLAMP_TO_EDGE),e.useProgram(`heatmapTexture`).draw(r,i.TRIANGLES,q.disabled,J.disabled,e.colorModeForRenderPass(),K.disabled,$n(e,n,0,1),null,null,n.id,e.viewportBuffer,e.quadTriangleIndexBuffer,e.viewportSegments,n.paint,e.transform.zoom))}(e,r)}(e,n,r,i,a):t.cm(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`)return;let{isRenderingToTexture:a}=i,o=n.paint.get(`line-opacity`),s=n.paint.get(`line-width`);if(o.constantOr(1)===0||s.constantOr(1)===0)return;let c=e.getDepthModeForSublayer(0,q.ReadOnly),l=e.colorModeForRenderPass(),u=n.paint.get(`line-dasharray`),d=u.constantOr(1),f=n.paint.get(`line-pattern`),p=f.constantOr(1),m=n.paint.get(`line-gradient`),h=n.getCrossfadeParameters(),g;g=p?`linePattern`:d&&m?`lineGradientSDF`:d?`lineSDF`:m?`lineGradient`:`line`;let _=e.context,v=_.gl,y=e.transform,b=!0;for(let i of r){let r=t.getTile(i);if(p&&!r.patternsLoaded())continue;let o=r.getBucket(n);if(!o)continue;let s=o.programConfigurations.get(n.id),x=e.context.program.get(),S=e.useProgram(g,s),C=b||S.program!==x,w=e.style.map.terrain&&e.style.map.terrain.getTerrainData(i),T=f.constantOr(null),E=u&&u.constantOr(null);if(T&&r.imageAtlas){let e=r.imageAtlas,t=e.patternPositions[T.to.toString()],n=e.patternPositions[T.from.toString()];t&&n&&s.setConstantPatternPositions(t,n)}else if(E){let t=n.layout.get(`line-cap`)===`round`,r=e.lineAtlas.getDash(E.to,t),i=e.lineAtlas.getDash(E.from,t);s.setConstantDashPositions(r,i)}let D=y.getProjectionData({overscaledTileID:i,applyGlobeMatrix:!a,applyTerrainMatrix:!0}),O=y.getPixelScale(),k;p?(k=or(e,r,n,O,h),xi(_,v,r,s,h)):d&&m?(k=cr(e,r,n,O,h,o.lineClipsArray.length),wi(e,t,_,v,n,o,i,s,h)):d?(k=sr(e,r,n,O,h),Si(e,_,v,s,C,h)):m?(k=ar(e,r,n,O,o.lineClipsArray.length),Ci(e,t,_,v,n,o,i)):k=ir(e,r,n,O);let A=e.stencilModeForClipping(i);S.draw(_,v.TRIANGLES,c,A,l,K.disabled,k,w,D,n.id,o.layoutVertexBuffer,o.indexBuffer,o.segments,n.paint,e.transform.zoom,s,o.layoutVertexBuffer2),b=!1}}(e,n,r,i,a):t.cn(r)?function(e,n,r,i,a){let o=r.paint.get(`fill-color`),s=r.paint.get(`fill-opacity`);if(s.constantOr(1)===0)return;let{isRenderingToTexture:c}=a,l=e.colorModeForRenderPass(),u=r.paint.get(`fill-pattern`),d=e.opaquePassEnabledForLayer()&&!u.constantOr(1)&&o.constantOr(t.bn.transparent).a===1&&s.constantOr(0)===1?`opaque`:`translucent`;e.renderPass===d&&Ei(e,n,r,i,e.getDepthModeForSublayer(1,e.renderPass===`opaque`?q.ReadWrite:q.ReadOnly),l,!1,c),e.renderPass===`translucent`&&r.paint.get(`fill-antialias`)&&Ei(e,n,r,i,e.getDepthModeForSublayer(r.getPaintProperty(`fill-outline-color`)?2:0,q.ReadOnly),l,!0,c)}(e,n,r,i,a):t.co(r)?function(e,t,n,r,i){let a=n.paint.get(`fill-extrusion-opacity`);if(a===0)return;let{isRenderingToTexture:o}=i;if(e.renderPass===`translucent`){let i=new q(e.context.gl.LEQUAL,q.ReadWrite,e.depthRangeFor3D);if(a!==1||n.paint.get(`fill-extrusion-pattern`).constantOr(1))Di(e,t,n,r,i,J.disabled,en.disabled,o),Di(e,t,n,r,i,e.stencilModeFor3D(),e.colorModeForRenderPass(),o);else{let a=e.colorModeForRenderPass();Di(e,t,n,r,i,J.disabled,a,o)}}}(e,n,r,i,a):t.cp(r)?function(e,n,r,i,a){if(e.renderPass!==`offscreen`&&e.renderPass!==`translucent`)return;let{isRenderingToTexture:o}=a,s=e.context,c=e.style.projection.useSubdivision,l=e.getDepthModeForSublayer(0,q.ReadOnly),u=e.colorModeForRenderPass();if(e.renderPass===`offscreen`)(function(e,n,r,i,a,o,s){let c=e.context,l=c.gl,u=i.paint.get(`resampling`)===`nearest`?l.NEAREST:l.LINEAR;for(let d of r){let r=n.getTile(d),f=r.dem;if(!f||!f.data||!r.needsHillshadePrepare)continue;let p=f.dim,m=f.stride,h=f.getPixels();if(c.activeTexture.set(l.TEXTURE1),c.pixelStoreUnpackPremultiplyAlpha.set(!1),r.demTexture=r.demTexture||e.getTileTexture(m),r.demTexture){let e=r.demTexture;e.update(h,{premultiply:!1}),e.bind(l.NEAREST,l.CLAMP_TO_EDGE)}else r.demTexture=new t.T(c,h,l.RGBA,{premultiply:!1}),r.demTexture.bind(l.NEAREST,l.CLAMP_TO_EDGE);c.activeTexture.set(l.TEXTURE0);let g=r.fbo;if(!g){let e=new t.T(c,{width:p,height:p,data:null},l.RGBA);e.bind(u,l.CLAMP_TO_EDGE),g=r.fbo=c.createFramebuffer(p,p,!0,!1),g.colorAttachment.set(e.texture)}c.bindFramebuffer.set(g.framebuffer),c.viewport.set([0,0,p,p]),e.useProgram(`hillshadePrepare`).draw(c,l.TRIANGLES,a,o,s,K.disabled,tr(r.tileID,f),null,null,i.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments),r.needsHillshadePrepare=!1}})(e,n,i,r,l,J.disabled,u),s.viewport.set([0,0,e.width,e.height]);else if(e.renderPass===`translucent`)if(c){let[t,a,s]=e.stencilConfigForOverlapTwoPass(i);Oi(e,n,r,s,t,l,u,!1,o),Oi(e,n,r,s,a,l,u,!0,o)}else{let[t,a]=e.getStencilConfigForOverlapAndUpdateStencilID(i);Oi(e,n,r,a,t,l,u,!1,o)}}(e,n,r,i,a):t.cq(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`||!r.length)return;let{isRenderingToTexture:a}=i,o=e.style.projection.useSubdivision,s=e.getDepthModeForSublayer(0,q.ReadOnly),c=e.colorModeForRenderPass();if(o){let[i,o,l]=e.stencilConfigForOverlapTwoPass(r);ki(e,t,n,l,i,s,c,!1,a),ki(e,t,n,l,o,s,c,!0,a)}else{let[i,o]=e.getStencilConfigForOverlapAndUpdateStencilID(r);ki(e,t,n,o,i,s,c,!1,a)}}(e,n,r,i,a):t.bS(r)?function(e,t,n,r,i){if(e.renderPass!==`translucent`||n.paint.get(`raster-opacity`)===0||!r.length)return;let{isRenderingToTexture:a}=i,o=t.getSource(),s=e.style.projection.useSubdivision;if(o instanceof ye)ji(e,t,n,r,null,!1,!1,o.tileCoords,o.flippedWindingOrder,a);else if(s){let[i,o,s]=e.stencilConfigForOverlapTwoPass(r);ji(e,t,n,s,i,!1,!0,Ai,!1,a),ji(e,t,n,s,o,!0,!0,Ai,!1,a)}else{let[i,o]=e.getStencilConfigForOverlapAndUpdateStencilID(r);ji(e,t,n,o,i,!1,!0,Ai,!1,a)}}(e,n,r,i,a):t.cr(r)?function(e,t,n,r,i){let a=n.paint.get(`background-color`),o=n.paint.get(`background-opacity`);if(o===0)return;let{isRenderingToTexture:s}=i,c=e.context,l=c.gl,u=e.style.projection,d=e.transform,f=d.tileSize,p=n.paint.get(`background-pattern`);if(e.isPatternMissing(p))return;let m=!p&&a.a===1&&o===1&&e.opaquePassEnabledForLayer()?`opaque`:`translucent`;if(e.renderPass!==m)return;let h=J.disabled,g=e.getDepthModeForSublayer(0,m===`opaque`?q.ReadWrite:q.ReadOnly),_=e.colorModeForRenderPass(),v=e.useProgram(p?`backgroundPattern`:`background`),y=r||Ue(d,{tileSize:f,terrain:e.style.map.terrain});p&&(c.activeTexture.set(l.TEXTURE0),e.imageManager.bind(e.context));let b=n.getCrossfadeParameters();for(let t of y){let r=d.getProjectionData({overscaledTileID:t,applyGlobeMatrix:!s,applyTerrainMatrix:!0}),i=p?_r(o,e,p,{tileID:t,tileSize:f},b):gr(o,a),m=e.style.map.terrain&&e.style.map.terrain.getTerrainData(t),y=u.getMeshFromTileID(c,t.canonical,!1,!0,`raster`);v.draw(c,l.TRIANGLES,g,h,_,K.backCCW,i,m,r,n.id,y.vertexBuffer,y.indexBuffer,y.segments)}}(e,0,r,i,a):t.cs(r)&&function(e,t,n,r){let{isRenderingGlobe:i}=r,a=e.context,o=n.implementation,s=e.style.projection,c=e.transform,l=c.getProjectionDataForCustomLayer(i),u={farZ:c.farZ,nearZ:c.nearZ,fov:c.fov*Math.PI/180,modelViewProjectionMatrix:c.modelViewProjectionMatrix,projectionMatrix:c.projectionMatrix,shaderData:{variantName:s.shaderVariantName,vertexShaderPrelude:`const float PI = 3.141592653589793;\nuniform mat4 u_projection_matrix;\n${s.shaderPreludeCode.vertexSource}`,define:s.shaderDefine},defaultProjectionData:l},d=o.renderingMode?o.renderingMode:`2d`;if(e.renderPass===`offscreen`){let t=o.prerender;t&&(e.setCustomLayerDefaults(),a.setColorMode(e.colorModeForRenderPass()),t.call(o,a.gl,u),a.setDirty(),e.setBaseState())}else if(e.renderPass===`translucent`){e.setCustomLayerDefaults(),a.setColorMode(e.colorModeForRenderPass()),a.setStencilMode(J.disabled);let t=d===`3d`?e.getDepthModeFor3D():e.getDepthModeForSublayer(0,q.ReadOnly);a.setDepthMode(t),o.render(a.gl,u),a.setDirty(),e.setBaseState(),a.bindFramebuffer.set(null)}}(e,0,r,a))}saveTileTexture(e){let t=this._tileTextures[e.size[0]];t?t.length<Wi.MAX_TEXTURE_POOL_SIZE_PER_BUCKET?t.push(e):e.destroy():this._tileTextures[e.size[0]]=[e]}getTileTexture(e){let t=this._tileTextures[e];return t&&t.length>0?t.pop():null}isPatternMissing(e){if(!e)return!1;if(!e.from||!e.to)return!0;let t=this.imageManager.getPattern(e.from.toString()),n=this.imageManager.getPattern(e.to.toString());return!t||!n}useProgram(e,t,n=!1,r=[]){this.cache=this.cache||{};let i=!!this.style.map.terrain,a=this.style.projection,o=n?It.projectionMercator:a.shaderPreludeCode,s=n?zt:a.shaderDefine,c=e+(t?t.cacheKey:``)+`/${n?Bt:a.shaderVariantName}`+(this._showOverdrawInspector?`/overdraw`:``)+(i?`/terrain`:``)+(r?`/${r.join(`/`)}`:``);return this.cache[c]||(this.cache[c]=new Vn(this.context,It[e],t,yr[e],this._showOverdrawInspector,i,o,s,r)),this.cache[c]}setCustomLayerDefaults(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()}setBaseState(){let e=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(e.FUNC_ADD)}initDebugOverlayCanvas(){this.debugOverlayCanvas??(this.debugOverlayCanvas=document.createElement(`canvas`),this.debugOverlayCanvas.width=512,this.debugOverlayCanvas.height=512,this.debugOverlayTexture=new t.T(this.context,this.debugOverlayCanvas,this.context.gl.RGBA))}destroy(){var e,t;if(this._tileTextures){for(let e in this._tileTextures){let t=this._tileTextures[e];if(t)for(let e of t)e.destroy()}this._tileTextures={}}if(this.tileExtentBuffer&&this.tileExtentBuffer.destroy(),this.debugBuffer&&this.debugBuffer.destroy(),this.rasterBoundsBuffer&&this.rasterBoundsBuffer.destroy(),this.rasterBoundsBufferPosOnly&&this.rasterBoundsBufferPosOnly.destroy(),this.viewportBuffer&&this.viewportBuffer.destroy(),this.tileBorderIndexBuffer&&this.tileBorderIndexBuffer.destroy(),this.quadTriangleIndexBuffer&&this.quadTriangleIndexBuffer.destroy(),this.tileExtentMesh&&((e=this.tileExtentMesh.vertexBuffer)==null||e.destroy()),this.tileExtentMesh&&((t=this.tileExtentMesh.indexBuffer)==null||t.destroy()),this.debugOverlayTexture&&this.debugOverlayTexture.destroy(),this.cache){for(let e in this.cache){let t=this.cache[e];t&&t.program&&this.context.gl.deleteProgram(t.program)}this.cache={}}this.context&&this.context.setDefault()}overLimit(){let{drawingBufferWidth:e,drawingBufferHeight:t}=this.context.gl;return this.width!==e||this.height!==t}}function Gi(e,t){let n,r=!1,i=null,a=null,o=()=>{i=null,r&&=(e.apply(a,n),i=setTimeout(o,t),!1)};return(...e)=>(r=!0,a=this,n=e,i||o(),i)}Wi.MAX_TEXTURE_POOL_SIZE_PER_BUCKET=50;class Ki{constructor(e){this._getCurrentHash=()=>{let e=window.location.hash.replace(`#`,``);if(this._hashName){let t;return e.split(`&`).map((e=>e.split(`=`))).forEach((e=>{e[0]===this._hashName&&(t=e)})),(t&&t[1]||``).split(`/`)}return e.split(`/`)},this._onHashChange=()=>{let e=this._getCurrentHash();if(!this._isValidHash(e))return!1;let t=this._map.dragRotate.isEnabled()&&this._map.touchZoomRotate.isEnabled()?+(e[3]||0):this._map.getBearing();return this._map.jumpTo({center:[+e[2],+e[1]],zoom:+e[0],bearing:t,pitch:+(e[4]||0)}),!0},this._updateHashUnthrottled=()=>{let e=window.location.href.replace(/(#.*)?$/,this.getHashString());window.history.replaceState(window.history.state,null,e)},this._removeHash=()=>{let e=this._getCurrentHash();if(e.length===0)return;let t=e.join(`/`),n=t;n.split(`&`).length>0&&(n=n.split(`&`)[0]),this._hashName&&(n=`${this._hashName}=${t}`);let r=window.location.hash.replace(n,``);r.startsWith(`#&`)?r=r.slice(0,1)+r.slice(2):r===`#`&&(r=``);let i=window.location.href.replace(/(#.+)?$/,r);i=i.replace(`&&`,`&`),window.history.replaceState(window.history.state,null,i)},this._updateHash=Gi(this._updateHashUnthrottled,300),this._hashName=e&&encodeURIComponent(e)}addTo(e){return this._map=e,addEventListener(`hashchange`,this._onHashChange,!1),this._map.on(`moveend`,this._updateHash),this}remove(){return removeEventListener(`hashchange`,this._onHashChange,!1),this._map.off(`moveend`,this._updateHash),clearTimeout(this._updateHash()),this._removeHash(),delete this._map,this}getHashString(e){let t=this._map.getCenter(),n=Math.round(100*this._map.getZoom())/100,r=10**Math.ceil((n*Math.LN2+Math.log(512/360/.5))/Math.LN10),i=Math.round(t.lng*r)/r,a=Math.round(t.lat*r)/r,o=this._map.getBearing(),s=this._map.getPitch(),c=``;if(c+=e?`/${i}/${a}/${n}`:`${n}/${a}/${i}`,(o||s)&&(c+=`/`+Math.round(10*o)/10),s&&(c+=`/${Math.round(s)}`),this._hashName){let e=this._hashName,t=!1,n=window.location.hash.slice(1).split(`&`).map((n=>{let r=n.split(`=`)[0];return r===e?(t=!0,`${r}=${c}`):n})).filter((e=>e));return t||n.push(`${e}=${c}`),`#${n.join(`&`)}`}return`#${c}`}_isValidHash(e){if(e.length<3||e.some(isNaN))return!1;try{new t.V(+e[2],+e[1])}catch{return!1}let n=+e[0],r=+(e[3]||0),i=+(e[4]||0);return n>=this._map.getMinZoom()&&n<=this._map.getMaxZoom()&&r>=-180&&r<=180&&i>=this._map.getMinPitch()&&i<=this._map.getMaxPitch()}}let qi={linearity:.3,easing:t.ct(0,0,.3,1)},Ji=t.e({deceleration:2500,maxSpeed:1400},qi),Yi=t.e({deceleration:20,maxSpeed:1400},qi),Xi=t.e({deceleration:1e3,maxSpeed:360},qi),Zi=t.e({deceleration:1e3,maxSpeed:90},qi),Qi=t.e({deceleration:1e3,maxSpeed:360},qi);class $i{constructor(e){this._map=e,this.clear()}clear(){this._inertiaBuffer=[]}record(e){this._drainInertiaBuffer(),this._inertiaBuffer.push({time:l(),settings:e})}_drainInertiaBuffer(){let e=this._inertiaBuffer,t=l();for(;e.length>0&&t-e[0].time>160;)e.shift()}_onMoveEnd(e){if(this._drainInertiaBuffer(),this._inertiaBuffer.length<2)return;let n={zoom:0,bearing:0,pitch:0,roll:0,pan:new t.P(0,0),pinchAround:void 0,around:void 0};for(let{settings:e}of this._inertiaBuffer)n.zoom+=e.zoomDelta||0,n.bearing+=e.bearingDelta||0,n.pitch+=e.pitchDelta||0,n.roll+=e.rollDelta||0,e.panDelta&&n.pan._add(e.panDelta),e.around&&(n.around=e.around),e.pinchAround&&(n.pinchAround=e.pinchAround);let r=this._inertiaBuffer[this._inertiaBuffer.length-1].time-this._inertiaBuffer[0].time,i={};if(n.pan.mag()){let a=ta(n.pan.mag(),r,t.e({},Ji,e||{})),o=n.pan.mult(a.amount/n.pan.mag()),s=this._map.cameraHelper.handlePanInertia(o,this._map.transform);i.center=s.easingCenter,i.offset=s.easingOffset,ea(i,a)}if(n.zoom){let e=ta(n.zoom,r,Yi);i.zoom=t.cu(this._map.transform.zoom+e.amount,this._map.getZoomSnap(),e.amount),ea(i,e)}if(n.bearing){let e=ta(n.bearing,r,Xi);i.bearing=this._map.transform.bearing+t.ak(e.amount,-179,179),ea(i,e)}if(n.pitch){let e=ta(n.pitch,r,Zi);i.pitch=this._map.transform.pitch+e.amount,ea(i,e)}if(n.roll){let e=ta(n.roll,r,Qi);i.roll=this._map.transform.roll+t.ak(e.amount,-179,179),ea(i,e)}if(i.zoom||i.bearing){let e=n.pinchAround===void 0?n.around:n.pinchAround;i.around=e?this._map.unproject(e):this._map.getCenter()}return this.clear(),t.e(i,{noMoveStart:!0})}}function ea(e,t){(!e.duration||e.duration<t.duration)&&(e.duration=t.duration,e.easing=t.easing)}function ta(e,n,r){let{maxSpeed:i,linearity:a,deceleration:o}=r,s=t.ak(e*a/(n/1e3),-i,i),c=Math.abs(s)/(o*a);return{easing:r.easing,duration:1e3*c,amount:c/2*s}}class na extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,n,r,i={}){r=r instanceof MouseEvent?r:new MouseEvent(e,r);let a=u.mousePos(n.getCanvas(),r),o=n.unproject(a);super(e,t.e({point:a,lngLat:o,originalEvent:r},i)),this._defaultPrevented=!1,this.target=n}}class ra extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,n,r){let i=e===`touchend`?r.changedTouches:r.touches,a=u.touchPos(n.getCanvasContainer(),i),o=a.map((e=>n.unproject(e))),s=a.reduce(((e,t,n,r)=>e.add(t.div(r.length))),new t.P(0,0));super(e,{points:a,point:s,lngLats:o,lngLat:n.unproject(s),originalEvent:r}),this._defaultPrevented=!1}}class ia extends t.l{preventDefault(){this._defaultPrevented=!0}get defaultPrevented(){return this._defaultPrevented}constructor(e,t,n){super(e,{originalEvent:n}),this._defaultPrevented=!1}}class aa{constructor(e,t){this._map=e,this._clickTolerance=t.clickTolerance}reset(){delete this._mousedownPos}wheel(e){return this._firePreventable(new ia(e.type,this._map,e))}mousedown(e,t){return this._mousedownPos=t,this._firePreventable(new na(e.type,this._map,e))}mouseup(e){this._map.fire(new na(e.type,this._map,e))}click(e,t){this._mousedownPos&&this._mousedownPos.dist(t)>=this._clickTolerance||this._map.fire(new na(e.type,this._map,e))}dblclick(e){return this._firePreventable(new na(e.type,this._map,e))}mouseover(e){this._map.fire(new na(e.type,this._map,e))}mouseout(e){this._map.fire(new na(e.type,this._map,e))}touchstart(e){return this._firePreventable(new ra(e.type,this._map,e))}touchmove(e){this._map.fire(new ra(e.type,this._map,e))}touchend(e){this._map.fire(new ra(e.type,this._map,e))}touchcancel(e){this._map.fire(new ra(e.type,this._map,e))}_firePreventable(e){if(this._map.fire(e),e.defaultPrevented)return{}}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class oa{constructor(e){this._map=e}reset(){this._delayContextMenu=!1,this._ignoreContextMenu=!0,delete this._contextMenuEvent}mousemove(e){this._map.fire(new na(e.type,this._map,e))}mousedown(){this._delayContextMenu=!0,this._ignoreContextMenu=!1}mouseup(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new na(`contextmenu`,this._map,this._contextMenuEvent)),delete this._contextMenuEvent)}contextmenu(e){this._delayContextMenu?this._contextMenuEvent=e:this._ignoreContextMenu||this._map.fire(new na(e.type,this._map,e)),this._map.listens(`contextmenu`)&&e.preventDefault()}isEnabled(){return!0}isActive(){return!1}enable(){}disable(){}}class sa{constructor(e){this._map=e}get transform(){return this._map._requestedCameraState||this._map.transform}get center(){return{lng:this.transform.center.lng,lat:this.transform.center.lat}}get zoom(){return this.transform.zoom}get pitch(){return this.transform.pitch}get bearing(){return this.transform.bearing}unproject(e){return this.transform.screenPointToLocation(t.P.convert(e),this._map.terrain)}}class ca{constructor(e,t){this._map=e,this._tr=new sa(e),this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=t.clickTolerance||1,t.boxZoom&&typeof t.boxZoom==`object`&&(this._boxZoomEnd=t.boxZoom.boxZoomEnd)}isEnabled(){return!!this._enabled}isActive(){return!!this._active}enable(){this.isEnabled()||(this._enabled=!0)}disable(){this.isEnabled()&&(this._enabled=!1)}mousedown(e,t){this.isEnabled()&&e.shiftKey&&e.button===0&&(u.disableDrag(),this._startPos=this._lastPos=t,this._active=!0)}mousemoveWindow(e,t){if(!this._active)return;let n=t;if(this._lastPos.equals(n)||!this._box&&n.dist(this._startPos)<this._clickTolerance)return;let r=this._startPos;this._lastPos=n,this._box||(this._box=u.create(`div`,`maplibregl-boxzoom`,this._container),this._container.classList.add(`maplibregl-crosshair`),this._fireEvent(`boxzoomstart`,e));let i=Math.min(r.x,n.x),a=Math.max(r.x,n.x),o=Math.min(r.y,n.y),s=Math.max(r.y,n.y);this._box.style.transform=`translate(${i}px,${o}px)`,this._box.style.width=a-i+`px`,this._box.style.height=s-o+`px`}mouseupWindow(e,n){if(!this._active||e.button!==0)return;let r=this._startPos,i=n;if(this.reset(),u.suppressClick(),r.x!==i.x||r.y!==i.y)return this._map.fire(new t.l(`boxzoomend`,{originalEvent:e})),this._boxZoomEnd?void this._boxZoomEnd(this._map,r,i,e):{cameraAnimation:e=>e.fitScreenCoordinates(r,i,this._tr.bearing,{linear:!0})};this._fireEvent(`boxzoomcancel`,e)}keydown(e){this._active&&e.keyCode===27&&(this.reset(),this._fireEvent(`boxzoomcancel`,e))}reset(){this._active=!1,this._container.classList.remove(`maplibregl-crosshair`),this._box&&=(this._box.remove(),null),u.enableDrag(),delete this._startPos,delete this._lastPos}_fireEvent(e,n){return this._map.fire(new t.l(e,{originalEvent:n}))}}function la(e,t){if(e.length!==t.length)throw Error(`The number of touches and points are not equal - touches ${e.length}, points ${t.length}`);let n={};for(let r=0;r<e.length;r++)n[e[r].identifier]=t[r];return n}class ua{constructor(e){this.reset(),this.numTouches=e.numTouches}reset(){delete this.centroid,delete this.startTime,delete this.touches,this.aborted=!1}touchstart(e,n,r){(this.centroid||r.length>this.numTouches)&&(this.aborted=!0),this.aborted||(this.startTime===void 0&&(this.startTime=e.timeStamp),r.length===this.numTouches&&(this.centroid=function(e){let n=new t.P(0,0);for(let t of e)n._add(t);return n.div(e.length)}(n),this.touches=la(r,n)))}touchmove(e,t,n){if(this.aborted||!this.centroid)return;let r=la(n,t);for(let e in this.touches){let t=r[e];(!t||t.dist(this.touches[e])>30)&&(this.aborted=!0)}}touchend(e,t,n){if((!this.centroid||e.timeStamp-this.startTime>500)&&(this.aborted=!0),n.length===0){let e=!this.aborted&&this.centroid;if(this.reset(),e)return e}}}class da{constructor(e){this.singleTap=new ua(e),this.numTaps=e.numTaps,this.reset()}reset(){this.lastTime=1/0,delete this.lastTap,this.count=0,this.singleTap.reset()}touchstart(e,t,n){this.singleTap.touchstart(e,t,n)}touchmove(e,t,n){this.singleTap.touchmove(e,t,n)}touchend(e,t,n){let r=this.singleTap.touchend(e,t,n);if(r){let t=e.timeStamp-this.lastTime<500,n=!this.lastTap||this.lastTap.dist(r)<30;if(t&&n||this.reset(),this.count++,this.lastTime=e.timeStamp,this.lastTap=r,this.count===this.numTaps)return this.reset(),r}}}class fa{constructor(e){this._tr=new sa(e),this._zoomIn=new da({numTouches:1,numTaps:2}),this._zoomOut=new da({numTouches:2,numTaps:1}),this.reset()}reset(){this._active=!1,this._zoomIn.reset(),this._zoomOut.reset()}touchstart(e,t,n){this._zoomIn.touchstart(e,t,n),this._zoomOut.touchstart(e,t,n)}touchmove(e,t,n){this._zoomIn.touchmove(e,t,n),this._zoomOut.touchmove(e,t,n)}touchend(e,n,r){let i=this._zoomIn.touchend(e,n,r),a=this._zoomOut.touchend(e,n,r),o=this._tr;return i?(this._active=!0,e.preventDefault(),setTimeout((()=>this.reset()),0),{cameraAnimation:n=>n.easeTo({duration:300,zoom:t.cu(o.zoom+1,n.getZoomSnap()),around:o.unproject(i)},{originalEvent:e})}):a?(this._active=!0,e.preventDefault(),setTimeout((()=>this.reset()),0),{cameraAnimation:n=>n.easeTo({duration:300,zoom:t.cu(o.zoom-1,n.getZoomSnap()),around:o.unproject(a)},{originalEvent:e})}):void 0}touchcancel(){this.reset()}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class X{constructor(e){this._enabled=!!e.enable,this._moveStateManager=e.moveStateManager,this._clickTolerance=e.clickTolerance||1,this._moveFunction=e.move,this._activateOnStart=!!e.activateOnStart,e.assignEvents(this),this.reset()}reset(e){this._active=!1,this._moved=!1,delete this._lastPoint,this._moveStateManager.endMove(e)}_move(...e){let t=this._moveFunction(...e);if(t.bearingDelta||t.pitchDelta||t.rollDelta||t.around||t.panDelta)return this._active=!0,t}dragStart(e,t){this.isEnabled()&&!this._lastPoint&&this._moveStateManager.isValidStartEvent(e)&&(this._moveStateManager.startMove(e),this._lastPoint=Array.isArray(t)?t[0]:t,this._activateOnStart&&this._lastPoint&&(this._active=!0))}dragMove(e,t){if(!this.isEnabled())return;let n=this._lastPoint;if(!n)return;if(e.preventDefault(),!this._moveStateManager.isValidMoveEvent(e))return void this.reset(e);let r=Array.isArray(t)?t[0]:t;return!this._moved&&r.dist(n)<this._clickTolerance?void 0:(this._moved=!0,this._lastPoint=r,this._move(n,r))}dragEnd(e){this.isEnabled()&&this._lastPoint&&this._moveStateManager.isValidEndEvent(e)&&(this._moved&&u.suppressClick(),this.reset(e))}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}getClickTolerance(){return this._clickTolerance}}let pa={0:1,2:2};class ma{constructor(e){this._correctEvent=e.checkCorrectEvent}startMove(e){this._eventButton=e.button}endMove(e){delete this._eventButton}isValidStartEvent(e){return this._correctEvent(e)}isValidMoveEvent(e){return!function(e,t){let n=pa[t];return e.buttons===void 0||(e.buttons&n)!==n}(e,this._eventButton)}isValidEndEvent(e){return e.button===this._eventButton}}class ha{constructor(){this._firstTouch=void 0}_isOneFingerTouch(e){return e.targetTouches.length===1}_isSameTouchEvent(e){return e.targetTouches[0].identifier===this._firstTouch}startMove(e){this._firstTouch=e.targetTouches[0].identifier}endMove(e){delete this._firstTouch}isValidStartEvent(e){return this._isOneFingerTouch(e)}isValidMoveEvent(e){return this._isOneFingerTouch(e)&&this._isSameTouchEvent(e)}isValidEndEvent(e){return this._isOneFingerTouch(e)&&this._isSameTouchEvent(e)}}class ga{constructor(e=new ma({checkCorrectEvent:()=>!0}),t=new ha){this.mouseMoveStateManager=e,this.oneFingerTouchMoveStateManager=t}_executeRelevantHandler(e,t,n){return e instanceof MouseEvent?t(e):typeof TouchEvent<`u`&&e instanceof TouchEvent?n(e):void 0}startMove(e){this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.startMove(e)),(e=>this.oneFingerTouchMoveStateManager.startMove(e)))}endMove(e){this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.endMove(e)),(e=>this.oneFingerTouchMoveStateManager.endMove(e)))}isValidStartEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidStartEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidStartEvent(e)))}isValidMoveEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidMoveEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidMoveEvent(e)))}isValidEndEvent(e){return this._executeRelevantHandler(e,(e=>this.mouseMoveStateManager.isValidEndEvent(e)),(e=>this.oneFingerTouchMoveStateManager.isValidEndEvent(e)))}}let _a=e=>{e.mousedown=e.dragStart,e.mousemoveWindow=e.dragMove,e.mouseup=e.dragEnd,e.contextmenu=e=>{e.preventDefault()}};class va{constructor(e,t){this._clickTolerance=e.clickTolerance||1,this._map=t,this.reset()}reset(){this._active=!1,this._touches={},this._sum=new t.P(0,0)}_shouldBePrevented(e){return e<(this._map.cooperativeGestures.isEnabled()?2:1)}touchstart(e,t,n){return this._calculateTransform(e,t,n)}touchmove(e,t,n){if(this._active){if(!this._shouldBePrevented(n.length))return e.preventDefault(),this._calculateTransform(e,t,n);this._map.cooperativeGestures.notifyGestureBlocked(`touch_pan`,e)}}touchend(e,t,n){this._calculateTransform(e,t,n),this._active&&this._shouldBePrevented(n.length)&&this.reset()}touchcancel(){this.reset()}_calculateTransform(e,n,r){r.length>0&&(this._active=!0);let i=la(r,n),a=new t.P(0,0),o=new t.P(0,0),s=0;for(let e in i){let t=i[e],n=this._touches[e];n&&(a._add(t),o._add(t.sub(n)),s++,i[e]=t)}if(this._touches=i,this._shouldBePrevented(s)||!o.mag())return;let c=o.div(s);return this._sum._add(c),this._sum.mag()<this._clickTolerance?void 0:{around:a.div(s),panDelta:c}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class ya{constructor(){this.reset()}reset(){this._active=!1,delete this._firstTwoTouches}touchstart(e,t,n){this._firstTwoTouches||n.length<2||(this._firstTwoTouches=[n[0].identifier,n[1].identifier],this._start([t[0],t[1]]))}touchmove(e,t,n){if(!this._firstTwoTouches)return;e.preventDefault();let[r,i]=this._firstTwoTouches,a=ba(n,t,r),o=ba(n,t,i);if(!a||!o)return;let s=this._aroundCenter?null:a.add(o).div(2);return this._move([a,o],s,e)}touchend(e,t,n){if(!this._firstTwoTouches)return;let[r,i]=this._firstTwoTouches,a=ba(n,t,r),o=ba(n,t,i);a&&o||(this._active&&u.suppressClick(),this.reset())}touchcancel(){this.reset()}enable(e){this._enabled=!0,this._aroundCenter=!!e&&e.around===`center`}disable(){this._enabled=!1,this.reset()}isEnabled(){return!!this._enabled}isActive(){return!!this._active}}function ba(e,t,n){for(let r=0;r<e.length;r++)if(e[r].identifier===n)return t[r]}function xa(e,t){return Math.log(e/t)/Math.LN2}class Sa extends ya{reset(){super.reset(),delete this._distance,delete this._startDistance}_start(e){this._startDistance=this._distance=e[0].dist(e[1])}_move(e,t){let n=this._distance;if(this._distance=e[0].dist(e[1]),this._active||!(Math.abs(xa(this._distance,this._startDistance))<.1))return this._active=!0,{zoomDelta:xa(this._distance,n),pinchAround:t}}}function Ca(e,t){return 180*e.angleWith(t)/Math.PI}class wa extends ya{reset(){super.reset(),delete this._minDiameter,delete this._startVector,delete this._vector}_start(e){this._startVector=this._vector=e[0].sub(e[1]),this._minDiameter=e[0].dist(e[1])}_move(e,t,n){let r=this._vector;if(this._vector=e[0].sub(e[1]),this._active||!this._isBelowThreshold(this._vector))return this._active=!0,{bearingDelta:Ca(this._vector,r),pinchAround:t}}_isBelowThreshold(e){this._minDiameter=Math.min(this._minDiameter,e.mag());let t=25/(Math.PI*this._minDiameter)*360,n=Ca(e,this._startVector);return Math.abs(n)<t}}function Ta(e){return Math.abs(e.y)>Math.abs(e.x)}class Ea extends ya{constructor(e){super(),this._currentTouchCount=0,this._map=e}reset(){super.reset(),this._valid=void 0,delete this._firstMove,delete this._lastPoints}touchstart(e,t,n){super.touchstart(e,t,n),this._currentTouchCount=n.length}_start(e){this._lastPoints=e,Ta(e[0].sub(e[1]))&&(this._valid=!1)}_move(e,t,n){if(this._map.cooperativeGestures.isEnabled()&&this._currentTouchCount<3)return;let r=e[0].sub(this._lastPoints[0]),i=e[1].sub(this._lastPoints[1]);return this._valid=this.gestureBeginsVertically(r,i,n.timeStamp),this._valid?(this._lastPoints=e,this._active=!0,{pitchDelta:(r.y+i.y)/2*-.5}):void 0}gestureBeginsVertically(e,t,n){if(this._valid!==void 0)return this._valid;let r=e.mag()>=2,i=t.mag()>=2;if(!r&&!i)return;if(!r||!i)return this._firstMove===void 0&&(this._firstMove=n),n-this._firstMove<100&&void 0;let a=e.y>0==t.y>0;return Ta(e)&&Ta(t)&&a}}let Da={panStep:100,bearingStep:15,pitchStep:10};class Oa{constructor(e){this._tr=new sa(e);let t=Da;this._panStep=t.panStep,this._bearingStep=t.bearingStep,this._pitchStep=t.pitchStep,this._rotationDisabled=!1}reset(){this._active=!1}keydown(e){if(e.altKey||e.ctrlKey||e.metaKey)return;let n=0,r=0,i=0,a=0,o=0;switch(e.keyCode){case 61:case 107:case 171:case 187:n=1;break;case 189:case 109:case 173:n=-1;break;case 37:e.shiftKey?r=-1:(e.preventDefault(),a=-1);break;case 39:e.shiftKey?r=1:(e.preventDefault(),a=1);break;case 38:e.shiftKey?i=1:(e.preventDefault(),o=-1);break;case 40:e.shiftKey?i=-1:(e.preventDefault(),o=1);break;default:return}return this._rotationDisabled&&(r=0,i=0),{cameraAnimation:s=>{let c=this._tr;s.easeTo({duration:300,easeId:`keyboardHandler`,easing:ka,zoom:n?t.cu(c.zoom+n*(e.shiftKey?2:1),s.getZoomSnap()):c.zoom,bearing:c.bearing+r*this._bearingStep,pitch:c.pitch+i*this._pitchStep,offset:[-a*this._panStep,-o*this._panStep],center:c.center},{originalEvent:e})}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}disableRotation(){this._rotationDisabled=!0}enableRotation(){this._rotationDisabled=!1}}function ka(e){return e*(2-e)}let Aa=4.000244140625;class ja{constructor(e,t){this._onTimeout=e=>{this._type=`wheel`,this._delta-=this._lastValue,this._active||this._start(e)},this._map=e,this._tr=new sa(e),this._triggerRenderFrame=t,this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=.0022222222222222222}setZoomRate(e){this._defaultZoomRate=e}setWheelZoomRate(e){this._wheelZoomRate=e}isEnabled(){return!!this._enabled}isActive(){return!!this._active||this._finishTimeout!==void 0}isZooming(){return!!this._zooming}enable(e){this.isEnabled()||(this._enabled=!0,this._aroundCenter=!!e&&e.around===`center`)}disable(){this.isEnabled()&&(this._enabled=!1)}_shouldBePrevented(e){return!!this._map.cooperativeGestures.isEnabled()&&!(e.ctrlKey||this._map.cooperativeGestures.isBypassed(e))}wheel(e){if(!this.isEnabled())return;if(this._shouldBePrevented(e))return void this._map.cooperativeGestures.notifyGestureBlocked(`wheel_zoom`,e);let t=e.deltaMode===WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=l(),r=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,t!==0&&t%Aa==0?this._type=`wheel`:t!==0&&Math.abs(t)<4?this._type=`trackpad`:r>400?(this._type=null,this._lastValue=t,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(r*t)<200?`trackpad`:`wheel`,this._timeout&&(clearTimeout(this._timeout),this._timeout=null,t+=this._lastValue)),e.shiftKey&&t&&(t/=4),this._type&&(this._lastWheelEvent=e,this._delta-=t,this._active||this._start(e)),e.preventDefault()}_start(e){if(!this._delta)return;this._frameId&&=null,this._active=!0,this.isZooming()||(this._zooming=!0),this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout);let n=u.mousePos(this._map.getCanvas(),e),r=this._tr;this._aroundPoint=this._aroundCenter?r.transform.locationToScreenPoint(t.V.convert(r.center)):n,this._frameId||(this._frameId=!0,this._triggerRenderFrame())}renderFrame(){if(!this._frameId||(this._frameId=null,!this.isActive()))return;let e=this._tr.transform;if(typeof this._lastExpectedZoom==`number`){let t=e.zoom-this._lastExpectedZoom;typeof this._startZoom==`number`&&(this._startZoom+=t),typeof this._targetZoom==`number`&&(this._targetZoom+=t)}if(this._delta!==0){let n=this._type===`wheel`&&Math.abs(this._delta)>Aa?this._wheelZoomRate:this._defaultZoomRate,r=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&r!==0&&(r=1/r);let i=typeof this._targetZoom==`number`?t.an(this._targetZoom):e.scale,a=e.applyConstrain(e.getCameraLngLat(),t.aq(i*r)).zoom,o=this._map.getZoomSnap();if(this._type===`wheel`&&o>0){let n=t.cu(e.zoom,o);this._targetZoom=t.cu(a,o,a-n)}else this._targetZoom=a;this._type===`wheel`&&(this._startZoom=e.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}let n=typeof this._targetZoom==`number`?this._targetZoom:e.zoom,r=this._startZoom,i=this._easing,a,o=!1;if(this._type===`wheel`&&r&&i){let e=l()-this._lastWheelEventTime,s=Math.min((e+5)/200,1),c=i(s);a=t.G.number(r,n,c),s<1?this._frameId||=!0:o=!0}else a=n,o=!0;return this._active=!0,o&&(this._active=!1,this._finishTimeout=setTimeout((()=>{this._zooming=!1,this._triggerRenderFrame(),delete this._targetZoom,delete this._lastExpectedZoom,delete this._finishTimeout}),200)),this._lastExpectedZoom=a,{noInertia:!0,needsRenderFrame:!o,zoomDelta:a-e.zoom,around:this._aroundPoint,originalEvent:this._lastWheelEvent}}_smoothOutEasing(e){let n=t.cw;if(this._prevEase){let e=this._prevEase,r=(l()-e.start)/e.duration,i=e.easing(r+.01)-e.easing(r),a=.27/Math.sqrt(i*i+1e-4)*.01,o=Math.sqrt(.0729-a*a);n=t.ct(a,o,.25,1)}return this._prevEase={start:l(),duration:e,easing:n},n}reset(){this._active=!1,this._zooming=!1,delete this._targetZoom,delete this._lastExpectedZoom,this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout)}}class Ma{constructor(e,t){this._clickZoom=e,this._tapZoom=t}enable(){this._clickZoom.enable(),this._tapZoom.enable()}disable(){this._clickZoom.disable(),this._tapZoom.disable()}isEnabled(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()}isActive(){return this._clickZoom.isActive()||this._tapZoom.isActive()}}class Na{constructor(e){this._tr=new sa(e),this.reset()}reset(){this._active=!1}dblclick(e,n){return e.preventDefault(),{cameraAnimation:r=>{r.easeTo({duration:300,zoom:t.cu(this._tr.zoom+(e.shiftKey?-1:1),r.getZoomSnap()),around:this._tr.unproject(n)},{originalEvent:e})}}}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class Pa{constructor(){this._tap=new da({numTouches:1,numTaps:1}),this.reset()}reset(){this._active=!1,delete this._swipePoint,delete this._swipeTouch,delete this._tapTime,delete this._tapPoint,this._tap.reset()}touchstart(e,t,n){if(!this._swipePoint)if(this._tapTime){let r=t[0],i=e.timeStamp-this._tapTime<500,a=this._tapPoint.dist(r)<30;i&&a?n.length>0&&(this._swipePoint=r,this._swipeTouch=n[0].identifier):this.reset()}else this._tap.touchstart(e,t,n)}touchmove(e,t,n){if(this._tapTime){if(this._swipePoint){if(n[0].identifier!==this._swipeTouch)return;let r=t[0],i=r.y-this._swipePoint.y;return this._swipePoint=r,e.preventDefault(),this._active=!0,{zoomDelta:i/128}}}else this._tap.touchmove(e,t,n)}touchend(e,t,n){if(this._tapTime)this._swipePoint&&n.length===0&&this.reset();else{let r=this._tap.touchend(e,t,n);r&&(this._tapTime=e.timeStamp,this._tapPoint=r)}}touchcancel(){this.reset()}enable(){this._enabled=!0}disable(){this._enabled=!1,this.reset()}isEnabled(){return this._enabled}isActive(){return this._active}}class Fa{constructor(e,t,n){this._el=e,this._mousePan=t,this._touchPan=n}enable(e){this._inertiaOptions=e||{},this._mousePan.enable(),this._touchPan.enable(),this._el.classList.add(`maplibregl-touch-drag-pan`)}disable(){this._mousePan.disable(),this._touchPan.disable(),this._el.classList.remove(`maplibregl-touch-drag-pan`)}isEnabled(){return this._mousePan.isEnabled()&&this._touchPan.isEnabled()}isActive(){return this._mousePan.isActive()||this._touchPan.isActive()}}class Ia{constructor(e,t,n,r){this._pitchWithRotate=e.pitchWithRotate,this._rollEnabled=e.rollEnabled,this._mouseRotate=t,this._mousePitch=n,this._mouseRoll=r}enable(){this._mouseRotate.enable(),this._pitchWithRotate&&this._mousePitch.enable(),this._rollEnabled&&this._mouseRoll.enable()}disable(){this._mouseRotate.disable(),this._mousePitch.disable(),this._mouseRoll.disable()}isEnabled(){return this._mouseRotate.isEnabled()&&(!this._pitchWithRotate||this._mousePitch.isEnabled())&&(!this._rollEnabled||this._mouseRoll.isEnabled())}isActive(){return this._mouseRotate.isActive()||this._mousePitch.isActive()||this._mouseRoll.isActive()}}class La{constructor(e,t,n,r){this._el=e,this._touchZoom=t,this._touchRotate=n,this._tapDragZoom=r,this._rotationDisabled=!1,this._enabled=!0}enable(e){this._touchZoom.enable(e),this._rotationDisabled||this._touchRotate.enable(e),this._tapDragZoom.enable(),this._el.classList.add(`maplibregl-touch-zoom-rotate`)}disable(){this._touchZoom.disable(),this._touchRotate.disable(),this._tapDragZoom.disable(),this._el.classList.remove(`maplibregl-touch-zoom-rotate`)}isEnabled(){return this._touchZoom.isEnabled()&&(this._rotationDisabled||this._touchRotate.isEnabled())&&this._tapDragZoom.isEnabled()}isActive(){return this._touchZoom.isActive()||this._touchRotate.isActive()||this._tapDragZoom.isActive()}disableRotation(){this._rotationDisabled=!0,this._touchRotate.disable()}enableRotation(){this._rotationDisabled=!1,this._touchZoom.isEnabled()&&this._touchRotate.enable()}}class Ra{constructor(e,t){this._bypassKey=navigator.userAgent.indexOf(`Mac`)===-1?`ctrlKey`:`metaKey`,this._map=e,this._options=t,this._enabled=!1}isActive(){return!1}reset(){}_setupUI(){if(this._container)return;let e=this._map.getCanvasContainer();e.classList.add(`maplibregl-cooperative-gestures`),this._container=u.create(`div`,`maplibregl-cooperative-gesture-screen`,e);let t=this._map._getUIString(`CooperativeGesturesHandler.WindowsHelpText`);this._bypassKey===`metaKey`&&(t=this._map._getUIString(`CooperativeGesturesHandler.MacHelpText`));let n=this._map._getUIString(`CooperativeGesturesHandler.MobileHelpText`),r=document.createElement(`div`);r.className=`maplibregl-desktop-message`,r.textContent=t,this._container.appendChild(r);let i=document.createElement(`div`);i.className=`maplibregl-mobile-message`,i.textContent=n,this._container.appendChild(i),this._container.setAttribute(`aria-hidden`,`true`)}_destroyUI(){this._container&&(this._container.remove(),this._map.getCanvasContainer().classList.remove(`maplibregl-cooperative-gestures`)),delete this._container}enable(){this._setupUI(),this._enabled=!0}disable(){this._enabled=!1,this._destroyUI()}isEnabled(){return this._enabled}isBypassed(e){return e[this._bypassKey]}notifyGestureBlocked(e,n){this._enabled&&(this._map.fire(new t.l(`cooperativegestureprevented`,{gestureType:e,originalEvent:n})),this._container.classList.add(`maplibregl-show`),setTimeout((()=>{this._container.classList.remove(`maplibregl-show`)}),100))}}let za=e=>e.zoom||e.drag||e.roll||e.pitch||e.rotate;class Ba extends t.l{}function Va(e){return e.panDelta&&e.panDelta.mag()||e.zoomDelta||e.bearingDelta||e.pitchDelta||e.rollDelta}class Ha{get _ownerDocument(){return this._el?.ownerDocument||document}get _ownerWindow(){return this._el?.ownerDocument?.defaultView||window}constructor(e,n){this.handleWindowEvent=e=>{this.handleEvent(e,`${e.type}Window`)},this.handleEvent=(e,n)=>{if(e.type===`blur`)return void this.stop(!0);this._updatingCamera=!0;let r=e.type===`renderFrame`?void 0:e,i={needsRenderFrame:!1},a={},o={};for(let{handlerName:s,handler:c,allowed:l}of this._handlers){if(!c.isEnabled())continue;let d;if(this._blockedByActive(o,l,s))c.reset();else if(c[n||e.type]){if(t.cx(e,n||e.type)){let t=u.mousePos(this._map.getCanvas(),e);d=c[n||e.type](e,t)}else if(t.cy(e,n||e.type)){let t=this._getMapTouches(e.touches),r=u.touchPos(this._map.getCanvas(),t);d=c[n||e.type](e,r,t)}else t.cz(n||e.type)||(d=c[n||e.type](e));this.mergeHandlerResult(i,a,d,s,r),d&&d.needsRenderFrame&&this._triggerRenderFrame()}(d||c.isActive())&&(o[s]=c)}let s={};for(let e in this._previousActiveHandlers)o[e]||(s[e]=r);this._previousActiveHandlers=o,(Object.keys(s).length||Va(i))&&(this._changes.push([i,a,s]),this._triggerRenderFrame()),(Object.keys(o).length||Va(i))&&this._map._stop(!0),this._updatingCamera=!1;let{cameraAnimation:c}=i;c&&(this._inertia.clear(),this._fireEvents({},{},!0),this._changes=[],c(this._map))},this._map=e,this._el=this._map.getCanvasContainer(),this._handlers=[],this._handlersById={},this._changes=[],this._inertia=new $i(e),this._bearingSnap=n.bearingSnap,this._previousActiveHandlers={},this._eventsInProgress={},this._addDefaultHandlers(n);let r=this._el;this._listeners=[[r,`touchstart`,{passive:!0}],[r,`touchmove`,{passive:!1}],[r,`touchend`,void 0],[r,`touchcancel`,void 0],[r,`mousedown`,void 0],[r,`mousemove`,void 0],[r,`mouseup`,void 0],[this._ownerDocument,`mousemove`,{capture:!0}],[this._ownerDocument,`mouseup`,void 0],[r,`mouseover`,void 0],[r,`mouseout`,void 0],[r,`dblclick`,void 0],[r,`click`,void 0],[r,`keydown`,{capture:!1}],[r,`keyup`,void 0],[r,`wheel`,{passive:!1}],[r,`contextmenu`,void 0],[this._ownerWindow,`blur`,void 0]];for(let[e,t,n]of this._listeners)e.addEventListener(t,e===this._ownerDocument?this.handleWindowEvent:this.handleEvent,n)}destroy(){for(let[e,t,n]of this._listeners)e.removeEventListener(t,e===this._ownerDocument?this.handleWindowEvent:this.handleEvent,n)}_addDefaultHandlers(e){let n=this._map,r=n.getCanvasContainer();this._add(`mapEvent`,new aa(n,e));let i=n.boxZoom=new ca(n,e);this._add(`boxZoom`,i),e.interactive&&e.boxZoom&&i.enable();let a=n.cooperativeGestures=new Ra(n,e.cooperativeGestures);this._add(`cooperativeGestures`,a),e.cooperativeGestures&&a.enable();let o=new fa(n),s=new Na(n);n.doubleClickZoom=new Ma(s,o),this._add(`tapZoom`,o),this._add(`clickZoom`,s),e.interactive&&e.doubleClickZoom&&n.doubleClickZoom.enable();let c=new Pa;this._add(`tapDragZoom`,c);let l=n.touchPitch=new Ea(n);this._add(`touchPitch`,l),e.interactive&&e.touchPitch&&n.touchPitch.enable(e.touchPitch);let u=()=>n.project(n.getCenter()),d=function({enable:e,clickTolerance:n,aroundCenter:r=!0,minPixelCenterThreshold:i=100,rotateDegreesPerPixelMoved:a=.8},o){return new X({clickTolerance:n,move:(e,n)=>{let s=o();if(r&&Math.abs(s.y-e.y)>i)return{bearingDelta:t.cv(new t.P(e.x,n.y),n,s)};let c=(n.x-e.x)*a;return r&&n.y<s.y&&(c=-c),{bearingDelta:c}},moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&e.ctrlKey||e.button===2&&!e.ctrlKey}),enable:e,assignEvents:_a})}(e,u),f=function({enable:e,clickTolerance:t,pitchDegreesPerPixelMoved:n=-.5}){return new X({clickTolerance:t,move:(e,t)=>({pitchDelta:(t.y-e.y)*n}),moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&e.ctrlKey||e.button===2}),enable:e,assignEvents:_a})}(e),p=function({enable:e,clickTolerance:t,rollDegreesPerPixelMoved:n=.3},r){return new X({clickTolerance:t,move:(e,t)=>{let i=r(),a=(t.x-e.x)*n;return t.y<i.y&&(a=-a),{rollDelta:a}},moveStateManager:new ma({checkCorrectEvent:e=>e.button===2&&e.ctrlKey}),enable:e,assignEvents:_a})}(e,u);n.dragRotate=new Ia(e,d,f,p),this._add(`mouseRotate`,d,[`mousePitch`]),this._add(`mousePitch`,f,[`mouseRotate`,`mouseRoll`]),this._add(`mouseRoll`,p,[`mousePitch`]),e.interactive&&e.dragRotate&&n.dragRotate.enable();let m=function({enable:e,clickTolerance:t}){return new X({clickTolerance:t,move:(e,t)=>({around:t,panDelta:t.sub(e)}),activateOnStart:!0,moveStateManager:new ma({checkCorrectEvent:e=>e.button===0&&!e.ctrlKey}),enable:e,assignEvents:_a})}(e),h=new va(e,n);n.dragPan=new Fa(r,m,h),this._add(`mousePan`,m),this._add(`touchPan`,h,[`touchZoom`,`touchRotate`]),e.interactive&&e.dragPan&&n.dragPan.enable(e.dragPan);let g=new wa,_=new Sa;n.touchZoomRotate=new La(r,_,g,c),this._add(`touchRotate`,g,[`touchPan`,`touchZoom`]),this._add(`touchZoom`,_,[`touchPan`,`touchRotate`]),e.interactive&&e.touchZoomRotate&&n.touchZoomRotate.enable(e.touchZoomRotate),this._add(`blockableMapEvent`,new oa(n));let v=n.scrollZoom=new ja(n,(()=>this._triggerRenderFrame()));this._add(`scrollZoom`,v,[`mousePan`]),e.interactive&&e.scrollZoom&&n.scrollZoom.enable(e.scrollZoom);let y=n.keyboard=new Oa(n);this._add(`keyboard`,y),e.interactive&&e.keyboard&&n.keyboard.enable()}_add(e,t,n){this._handlers.push({handlerName:e,handler:t,allowed:n}),this._handlersById[e]=t}stop(e){if(!this._updatingCamera){for(let{handler:e}of this._handlers)e.reset();this._inertia.clear(),this._fireEvents({},{},e),this._changes=[]}}isActive(){for(let{handler:e}of this._handlers)if(e.isActive())return!0;return!1}isZooming(){return!!this._eventsInProgress.zoom||this._map.scrollZoom.isZooming()}isRotating(){return!!this._eventsInProgress.rotate}isMoving(){return!!za(this._eventsInProgress)||this.isZooming()}_blockedByActive(e,t,n){for(let r in e)if(r!==n&&(!t||t.indexOf(r)<0))return!0;return!1}_getMapTouches(e){let t=[];for(let n of e)this._el.contains(n.target)&&t.push(n);return t}mergeHandlerResult(e,n,r,i,a){if(!r)return;t.e(e,r);let o={handlerName:i,originalEvent:r.originalEvent||a};r.zoomDelta!==void 0&&(n.zoom=o),r.panDelta!==void 0&&(n.drag=o),r.rollDelta!==void 0&&(n.roll=o),r.pitchDelta!==void 0&&(n.pitch=o),r.bearingDelta!==void 0&&(n.rotate=o)}_applyChanges(){let e={},n={},r={};for(let[i,a,o]of this._changes)i.panDelta&&(e.panDelta=(e.panDelta||new t.P(0,0))._add(i.panDelta)),i.zoomDelta&&(e.zoomDelta=(e.zoomDelta||0)+i.zoomDelta),i.bearingDelta&&(e.bearingDelta=(e.bearingDelta||0)+i.bearingDelta),i.pitchDelta&&(e.pitchDelta=(e.pitchDelta||0)+i.pitchDelta),i.rollDelta&&(e.rollDelta=(e.rollDelta||0)+i.rollDelta),i.around!==void 0&&(e.around=i.around),i.pinchAround!==void 0&&(e.pinchAround=i.pinchAround),i.noInertia&&(e.noInertia=i.noInertia),t.e(n,a),t.e(r,o);this._updateMapTransform(e,n,r),this._changes=[]}_updateMapTransform(e,t,n){let r=this._map,i=r._getTransformForUpdate(),a=r.terrain;if(!(Va(e)||a&&this._terrainMovement))return this._fireEvents(t,n,!0);r._stop(!0);let{panDelta:o,zoomDelta:s,bearingDelta:c,pitchDelta:l,rollDelta:u,around:d,pinchAround:f}=e;f!==void 0&&(d=f),d||=r.transform.centerPoint,a&&!i.isPointOnMapSurface(d)&&(d=i.centerPoint);let p={panDelta:o,zoomDelta:s,rollDelta:u,pitchDelta:l,bearingDelta:c,around:d};this._map.cameraHelper.useGlobeControls&&!i.isPointOnMapSurface(d)&&(d=i.centerPoint);let m=d.distSqr(i.centerPoint)<.01?i.center:i.screenPointToLocation(o?d.sub(o):d);this._handleMapControls({terrain:a,tr:i,deltasForHelper:p,preZoomAroundLoc:m,combinedEventsInProgress:t,panDelta:o}),r._applyUpdatedTransform(i),this._map._update(),e.noInertia||this._inertia.record(e),this._fireEvents(t,n,!0)}_handleMapControls({terrain:e,tr:t,deltasForHelper:n,preZoomAroundLoc:r,combinedEventsInProgress:i,panDelta:a}){let o=this._map.cameraHelper;if(o.handleMapControlsRollPitchBearingZoom(n,t),e)return o.useGlobeControls?(this._terrainMovement||!i.drag&&!i.zoom||(this._terrainMovement=!0,this._map._elevationFreeze=!0),void o.handleMapControlsPan(n,t,r)):this._terrainMovement||!i.drag&&!i.zoom?void(i.drag&&this._terrainMovement&&a?t.setCenter(t.screenPointToLocation(t.centerPoint.sub(a))):o.handleMapControlsPan(n,t,r)):(this._terrainMovement=!0,this._map._elevationFreeze=!0,void o.handleMapControlsPan(n,t,r));o.handleMapControlsPan(n,t,r)}_fireEvents(e,n,r){let i=za(this._eventsInProgress),a=za(e),o={};for(let t in e){let{originalEvent:n}=e[t];this._eventsInProgress[t]||(o[`${t}start`]=n),this._eventsInProgress[t]=e[t]}!i&&a&&this._fireEvent(`movestart`,a.originalEvent);for(let e in o)this._fireEvent(e,o[e]);a&&this._fireEvent(`move`,a.originalEvent);for(let t in e){let{originalEvent:n}=e[t];this._fireEvent(t,n)}let c={},l;for(let e in this._eventsInProgress){let{handlerName:t,originalEvent:r}=this._eventsInProgress[e];this._handlersById[t].isActive()||(delete this._eventsInProgress[e],l=n[t]||r,c[`${e}end`]=l)}for(let e in c)this._fireEvent(e,c[e]);let u=za(this._eventsInProgress),d=(i||a)&&!u;if(d&&this._terrainMovement){this._map._elevationFreeze=!1,this._terrainMovement=!1;let e=this._map._getTransformForUpdate();this._map.getCenterClampedToGround()&&e.recalculateZoomAndCenter(this._map.terrain),this._map._applyUpdatedTransform(e)}if(r&&d){this._updatingCamera=!0;let e=this._inertia._onMoveEnd(this._map.dragPan._inertiaOptions),n=e=>e!==0&&-this._bearingSnap<e&&e<this._bearingSnap;!e||!e.essential&&s.prefersReducedMotion?(this._map.fire(new t.l(`moveend`,{originalEvent:l})),n(this._map.getBearing())&&this._map.resetNorth()):(n(e.bearing||this._map.getBearing())&&(e.bearing=0),e.freezeElevation=!0,this._map.easeTo(e,{originalEvent:l})),this._updatingCamera=!1}}_fireEvent(e,n){this._map.fire(new t.l(e,n?{originalEvent:n}:{}))}_requestFrame(){return this._map.triggerRepaint(),this._map._renderTaskQueue.add((e=>{delete this._frameId,this.handleEvent(new Ba(`renderFrame`,{timeStamp:e})),this._applyChanges()}))}_triggerRenderFrame(){this._frameId===void 0&&(this._frameId=this._requestFrame())}}class Ua extends t.E{constructor(e,t,n){super(),this._renderFrameCallback=()=>{let e=Math.min((l()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1&&this._easeFrameId?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},this._moving=!1,this._zooming=!1,this.transform=e,this._bearingSnap=n.bearingSnap,this._zoomSnap=n.zoomSnap,this.cameraHelper=t,this.on(`moveend`,(()=>{delete this._requestedCameraState}))}migrateProjection(e,t){e.apply(this.transform,!0),this.transform=e,this.cameraHelper=t}getCenter(){return new t.V(this.transform.center.lng,this.transform.center.lat)}setCenter(e,t){return this.jumpTo({center:e},t)}getCenterElevation(){return this.transform.elevation}setCenterElevation(e,t){return this.jumpTo({elevation:e},t),this}getCenterClampedToGround(){return this._centerClampedToGround}setCenterClampedToGround(e){this._centerClampedToGround=e}panBy(e,n,r){return e=t.P.convert(e).mult(-1),this.panTo(this.transform.center,t.e({offset:e},n),r)}panTo(e,n,r){return this.easeTo(t.e({center:e},n),r)}getZoom(){return this.transform.zoom}setZoom(e,t){return this.jumpTo({zoom:e},t),this}zoomTo(e,n,r){return this.easeTo(t.e({zoom:e},n),r)}zoomIn(e,n){return this.zoomTo(t.cu(this.getZoom()+1,this._zoomSnap),e,n),this}zoomOut(e,n){return this.zoomTo(t.cu(this.getZoom()-1,this._zoomSnap),e,n),this}getVerticalFieldOfView(){return this.transform.fov}setVerticalFieldOfView(e,n){return e!=this.transform.fov&&(this.transform.setFov(e),this.fire(new t.l(`movestart`,n)).fire(new t.l(`move`,n)).fire(new t.l(`moveend`,n))),this}getBearing(){return this.transform.bearing}setZoomSnap(e){return this._zoomSnap=e,this}getZoomSnap(){return this._zoomSnap}setBearing(e,t){return this.jumpTo({bearing:e},t),this}getPadding(){return this.transform.padding}setPadding(e,t){return this.jumpTo({padding:e},t),this}rotateTo(e,n,r){return this.easeTo(t.e({bearing:e},n),r)}resetNorth(e,n){return this.rotateTo(0,t.e({duration:1e3},e),n),this}resetNorthPitch(e,n){return this.easeTo(t.e({bearing:0,pitch:0,roll:0,duration:1e3},e),n),this}snapToNorth(e,t){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(e,t):this}getPitch(){return this.transform.pitch}setPitch(e,t){return this.jumpTo({pitch:e},t),this}getRoll(){return this.transform.roll}setRoll(e,t){return this.jumpTo({roll:e},t),this}cameraForBounds(e,t){e=N.convert(e).adjustAntiMeridian();let n=t&&t.bearing||0;return this._cameraForBoxAndBearing(e.getNorthWest(),e.getSouthEast(),n,t)}_cameraForBoxAndBearing(e,n,r,i){let a={top:0,bottom:0,right:0,left:0};if(typeof(i=t.e({padding:a,offset:[0,0],maxZoom:this.transform.maxZoom},i)).padding==`number`){let e=i.padding;i.padding={top:e,bottom:e,right:e,left:e}}let o=t.e(a,i.padding);i.padding=o;let s=this.transform,c=new N(e,n);return this.cameraHelper.cameraForBoxAndBearing(i,o,c,r,s)}fitBounds(e,t,n){return this._fitInternal(this.cameraForBounds(e,t),t,n)}fitScreenCoordinates(e,n,r,i,a){return this._fitInternal(this._cameraForBoxAndBearing(this.transform.screenPointToLocation(t.P.convert(e)),this.transform.screenPointToLocation(t.P.convert(n)),r,i),i,a)}_fitInternal(e,n,r){return e?(delete(n=t.e(e,n)).padding,n.linear?this.easeTo(n,r):this.flyTo(n,r)):this}jumpTo(e,n){this.stop();let r=this._getTransformForUpdate(),i=!1,a=!1,o=!1,s=r.zoom;this.terrain&&r.setElevation(this.terrain.getElevationForLngLatZoom(e.center?t.V.convert(e.center):r.center,e.zoom||r.tileZoom)),this.cameraHelper.handleJumpToCenterZoom(r,e);let c=r.zoom!==s;return`elevation`in e&&r.elevation!==+e.elevation&&r.setElevation(+e.elevation),`bearing`in e&&r.bearing!==+e.bearing&&(i=!0,r.setBearing(+e.bearing)),`pitch`in e&&r.pitch!==+e.pitch&&(a=!0,r.setPitch(+e.pitch)),`roll`in e&&r.roll!==+e.roll&&(o=!0,r.setRoll(+e.roll)),e.padding==null||r.isPaddingEqual(e.padding)||r.setPadding(e.padding),this._applyUpdatedTransform(r),this.fire(new t.l(`movestart`,n)).fire(new t.l(`move`,n)),c&&this.fire(new t.l(`zoomstart`,n)).fire(new t.l(`zoom`,n)).fire(new t.l(`zoomend`,n)),i&&this.fire(new t.l(`rotatestart`,n)).fire(new t.l(`rotate`,n)).fire(new t.l(`rotateend`,n)),a&&this.fire(new t.l(`pitchstart`,n)).fire(new t.l(`pitch`,n)).fire(new t.l(`pitchend`,n)),o&&this.fire(new t.l(`rollstart`,n)).fire(new t.l(`roll`,n)).fire(new t.l(`rollend`,n)),this.fire(new t.l(`moveend`,n))}calculateCameraOptionsFromTo(e,n,r,i=0){let a=t.a6.fromLngLat(e,n),o=t.a6.fromLngLat(r,i),s=o.x-a.x,c=o.y-a.y,l=o.z-a.z,u=Math.hypot(s,c,l);if(u===0)throw Error(`Can't calculate camera options with same From and To`);let d=Math.hypot(s,c),f=t.aq(this.transform.cameraToCenterDistance/u/this.transform.tileSize),p=180*Math.atan2(s,-c)/Math.PI,m=180*Math.acos(d/u)/Math.PI;return m=l<0?90-m:90+m,{center:o.toLngLat(),elevation:i,zoom:f,pitch:m,bearing:p}}calculateCameraOptionsFromCameraLngLatAltRotation(e,t,n,r,i){let a=this.transform.calculateCenterFromCameraLngLatAlt(e,t,n,r);return{center:a.center,elevation:a.elevation,zoom:a.zoom,bearing:n,pitch:r,roll:i}}easeTo(e,n){this._stop(!1,e.easeId),(!1===(e=t.e({offset:[0,0],duration:500,easing:t.cw},e)).animate||!e.essential&&s.prefersReducedMotion)&&(e.duration=0);let r=this._getTransformForUpdate(),i=this.getBearing(),a=r.pitch,o=r.roll,c=`bearing`in e?this._normalizeBearing(e.bearing,i):i,l=`pitch`in e?+e.pitch:a,u=`roll`in e?this._normalizeBearing(e.roll,o):o,d=`padding`in e?e.padding:r.padding,f=t.P.convert(e.offset),p,m;e.around&&(p=t.V.convert(e.around),m=r.locationToScreenPoint(p));let h={moving:this._moving,zooming:this._zooming,rotating:this._rotating,pitching:this._pitching,rolling:this._rolling},g=this.cameraHelper.handleEaseTo(r,{bearing:c,pitch:l,roll:u,padding:d,around:p,aroundPoint:m,offsetAsPoint:f,offset:e.offset,zoom:e.zoom,center:e.center});return this._rotating=this._rotating||i!==c,this._pitching=this._pitching||l!==a,this._rolling=this._rolling||u!==o,this._padding=!r.isPaddingEqual(d),this._zooming=this._zooming||g.isZooming,this._easeId=e.easeId,this._prepareEase(n,e.noMoveStart,h),this.terrain&&this._prepareElevation(g.elevationCenter),this._ease((t=>{g.easeFunc(t),this.terrain&&!e.freezeElevation&&this._updateElevation(t),this._applyUpdatedTransform(r),this._fireMoveEvents(n)}),(t=>{this.terrain&&e.freezeElevation&&this._finalizeElevation(),this._afterEase(n,t)}),e),this}_prepareEase(e,n,r={}){this._moving=!0,n||r.moving||this.fire(new t.l(`movestart`,e)),this._zooming&&!r.zooming&&this.fire(new t.l(`zoomstart`,e)),this._rotating&&!r.rotating&&this.fire(new t.l(`rotatestart`,e)),this._pitching&&!r.pitching&&this.fire(new t.l(`pitchstart`,e)),this._rolling&&!r.rolling&&this.fire(new t.l(`rollstart`,e))}_prepareElevation(e){this._elevationCenter=e,this._elevationStart=this.transform.elevation,this._elevationTarget=this.terrain.getElevationForLngLatZoom(e,this.transform.tileZoom),this._elevationFreeze=!0}_updateElevation(e){this._elevationStart!==void 0&&this._elevationCenter!==void 0||this._prepareElevation(this.transform.center),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this._elevationCenter,this.transform.tileZoom));let n=this.terrain.getElevationForLngLatZoom(this._elevationCenter,this.transform.tileZoom);if(e<1&&n!==this._elevationTarget){let t=this._elevationTarget-this._elevationStart;this._elevationStart+=e*(t-(n-(t*e+this._elevationStart))/(1-e)),this._elevationTarget=n}this.transform.setElevation(t.G.number(this._elevationStart,this._elevationTarget,e))}_finalizeElevation(){this._elevationFreeze=!1,this.getCenterClampedToGround()&&this.transform.recalculateZoomAndCenter(this.terrain)}_getTransformForUpdate(){return this.transformCameraUpdate||this.terrain?(this._requestedCameraState||=this.transform.clone(),this._requestedCameraState):this.transform}_elevateCameraIfInsideTerrain(e){if(!this.terrain&&e.elevation>=0&&e.pitch<=90)return{};let t=e.getCameraLngLat(),n=e.getCameraAltitude(),r=this.terrain?this.terrain.getElevationForLngLatZoom(t,e.zoom):0;if(n<r){let n=this.calculateCameraOptionsFromTo(t,r,e.center,e.elevation);return{pitch:n.pitch,zoom:n.zoom}}return{}}_applyUpdatedTransform(e){let t=[];if(t.push((e=>this._elevateCameraIfInsideTerrain(e))),this.transformCameraUpdate&&t.push((e=>this.transformCameraUpdate(e))),!t.length)return;let n=e.clone();for(let e of t){let t=n.clone(),{center:r,zoom:i,roll:a,pitch:o,bearing:s,elevation:c}=e(t);r&&t.setCenter(r),c!==void 0&&t.setElevation(c),i!==void 0&&t.setZoom(i),a!==void 0&&t.setRoll(a),o!==void 0&&t.setPitch(o),s!==void 0&&t.setBearing(s),n.apply(t,!1)}this.transform.apply(n,!1)}_fireMoveEvents(e){this.fire(new t.l(`move`,e)),this._zooming&&this.fire(new t.l(`zoom`,e)),this._rotating&&this.fire(new t.l(`rotate`,e)),this._pitching&&this.fire(new t.l(`pitch`,e)),this._rolling&&this.fire(new t.l(`roll`,e))}_afterEase(e,n){if(this._easeId&&n&&this._easeId===n)return;delete this._easeId;let r=this._zooming,i=this._rotating,a=this._pitching,o=this._rolling;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._rolling=!1,this._padding=!1,r&&this.fire(new t.l(`zoomend`,e)),i&&this.fire(new t.l(`rotateend`,e)),a&&this.fire(new t.l(`pitchend`,e)),o&&this.fire(new t.l(`rollend`,e)),this.fire(new t.l(`moveend`,e))}flyTo(e,n){if(!e.essential&&s.prefersReducedMotion){let r=t.U(e,[`center`,`zoom`,`bearing`,`pitch`,`roll`,`elevation`,`padding`]);return this.jumpTo(r,n)}this.stop(),e=t.e({offset:[0,0],speed:1.2,curve:1.42,easing:t.cw},e);let r=this._getTransformForUpdate(),i=r.bearing,a=r.pitch,o=r.roll,c=r.padding,l=`bearing`in e?this._normalizeBearing(e.bearing,i):i,u=`pitch`in e?+e.pitch:a,d=`roll`in e?this._normalizeBearing(e.roll,o):o,f=`padding`in e?e.padding:r.padding,p=t.P.convert(e.offset),m=r.centerPoint.add(p),h=r.screenPointToLocation(m),g=this.cameraHelper.handleFlyTo(r,{bearing:l,pitch:u,roll:d,padding:f,locationAtOffset:h,offsetAsPoint:p,center:e.center,minZoom:e.minZoom,zoom:e.zoom}),_=e.curve,v=Math.max(r.width,r.height),y=v/g.scaleOfZoom,b=g.pixelPathLength;typeof g.scaleOfMinZoom==`number`&&(_=Math.sqrt(v/g.scaleOfMinZoom/b*2));let x=_*_;function S(e){let t=(y*y-v*v+(e?-1:1)*x*x*b*b)/(2*(e?y:v)*x*b);return Math.log(Math.sqrt(t*t+1)-t)}function C(e){return(Math.exp(e)-Math.exp(-e))/2}function w(e){return(Math.exp(e)+Math.exp(-e))/2}let T=S(!1),E=function(e){return w(T)/w(T+_*e)},D=function(e){return v*((w(T)*(C(t=T+_*e)/w(t))-C(T))/x)/b;var t},O=(S(!0)-T)/_;if(Math.abs(b)<2e-6||!isFinite(O)){if(Math.abs(v-y)<1e-6)return this.easeTo(e,n);let t=y<v?-1:1;O=Math.abs(Math.log(y/v))/_,D=()=>0,E=e=>Math.exp(t*_*e)}return e.duration=`duration`in e?+e.duration:1e3*O/(`screenSpeed`in e?+e.screenSpeed/_:+e.speed),e.maxDuration&&e.duration>e.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=i!==l,this._pitching=u!==a,this._rolling=d!==o,this._padding=!r.isPaddingEqual(f),this._prepareEase(n,!1),this.terrain&&this._prepareElevation(g.targetCenter),this._ease((s=>{let h=s*O,_=1/E(h),v=D(h);this._rotating&&r.setBearing(t.G.number(i,l,s)),this._pitching&&r.setPitch(t.G.number(a,u,s)),this._rolling&&r.setRoll(t.G.number(o,d,s)),this._padding&&(r.interpolatePadding(c,f,s),m=r.centerPoint.add(p)),g.easeFunc(s,_,v,m),this.terrain&&!e.freezeElevation&&this._updateElevation(s),this._applyUpdatedTransform(r),this._fireMoveEvents(n)}),(()=>{this.terrain&&e.freezeElevation&&this._finalizeElevation(),this._afterEase(n)}),e),this}isEasing(){return!!this._easeFrameId}stop(){return this._stop()}_stop(e,t){var n;if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){let e=this._onEaseEnd;delete this._onEaseEnd,e.call(this,t)}return e||(n=this.handlers)==null||n.stop(!1),this}_ease(e,t,n){!1===n.animate||n.duration===0?(e(1),t()):(this._easeStart=l(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=t,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))}_normalizeBearing(e,n){e=t.W(e,-180,180);let r=Math.abs(e-n);return Math.abs(e-360-n)<r&&(e-=360),Math.abs(e+360-n)<r&&(e+=360),e}queryTerrainElevation(e){return this.terrain?this.terrain.getElevationForLngLat(t.V.convert(e),this.transform):null}}let Z={compact:!0,customAttribution:`<a href="https://maplibre.org/" target="_blank">MapLibre</a>`};class Q{constructor(e=Z){this._toggleAttribution=()=>{this._container.classList.contains(`maplibregl-compact`)&&(this._container.classList.contains(`maplibregl-compact-show`)?(this._container.setAttribute(`open`,``),this._container.classList.remove(`maplibregl-compact-show`)):(this._container.classList.add(`maplibregl-compact-show`),this._container.removeAttribute(`open`)))},this._updateData=e=>{!e||e.sourceDataType!==`metadata`&&e.sourceDataType!==`visibility`&&e.dataType!==`style`&&e.type!==`terrain`||this._updateAttributions()},this._updateCompact=()=>{this._map.getCanvasContainer().offsetWidth<=640||this._compact?!1===this._compact?this._container.setAttribute(`open`,``):this._container.classList.contains(`maplibregl-compact`)||this._container.classList.contains(`maplibregl-attrib-empty`)||(this._container.setAttribute(`open`,``),this._container.classList.add(`maplibregl-compact`,`maplibregl-compact-show`)):(this._container.setAttribute(`open`,``),this._container.classList.contains(`maplibregl-compact`)&&this._container.classList.remove(`maplibregl-compact`,`maplibregl-compact-show`))},this._updateCompactMinimize=()=>{this._container.classList.contains(`maplibregl-compact`)&&this._container.classList.contains(`maplibregl-compact-show`)&&this._container.classList.remove(`maplibregl-compact-show`)},this.options=e}getDefaultPosition(){return`bottom-right`}onAdd(e){return this._map=e,this._compact=this.options.compact,this._container=u.create(`details`,`maplibregl-ctrl maplibregl-ctrl-attrib`),this._compactButton=u.create(`summary`,`maplibregl-ctrl-attrib-button`,this._container),this._compactButton.addEventListener(`click`,this._toggleAttribution),this._setElementTitle(this._compactButton,`ToggleAttribution`),this._innerContainer=u.create(`div`,`maplibregl-ctrl-attrib-inner`,this._container),this._updateAttributions(),this._updateCompact(),this._map.on(`styledata`,this._updateData),this._map.on(`sourcedata`,this._updateData),this._map.on(`terrain`,this._updateData),this._map.on(`resize`,this._updateCompact),this._map.on(`drag`,this._updateCompactMinimize),this._container}onRemove(){this._container.remove(),this._map.off(`styledata`,this._updateData),this._map.off(`sourcedata`,this._updateData),this._map.off(`terrain`,this._updateData),this._map.off(`resize`,this._updateCompact),this._map.off(`drag`,this._updateCompactMinimize),this._map=void 0,this._compact=void 0,this._attribHTML=void 0}_setElementTitle(e,t){let n=this._map._getUIString(`AttributionControl.${t}`);e.title=n,e.setAttribute(`aria-label`,n)}_updateAttributions(){if(!this._map.style)return;let e=[];if(this.options.customAttribution&&(Array.isArray(this.options.customAttribution)?e=e.concat(this.options.customAttribution.map((e=>typeof e==`string`?e:``))):typeof this.options.customAttribution==`string`&&e.push(this.options.customAttribution)),this._map.style.stylesheet){let e=this._map.style.stylesheet;this.styleOwner=e.owner,this.styleId=e.id}let t=this._map.style.tileManagers;for(let n in t){let r=t[n];if(r.used||r.usedForTerrain){let t=r.getSource();t.attribution&&e.indexOf(t.attribution)<0&&e.push(t.attribution)}}e=e.filter((e=>String(e).trim())),e.sort(((e,t)=>e.length-t.length)),e=e.filter(((t,n)=>{for(let r=n+1;r<e.length;r++)if(e[r].indexOf(t)>=0)return!1;return!0}));let n=e.join(` | `);n!==this._attribHTML&&(this._attribHTML=n,e.length?(this._innerContainer.innerHTML=u.sanitize(n),this._container.classList.remove(`maplibregl-attrib-empty`)):this._container.classList.add(`maplibregl-attrib-empty`),this._updateCompact(),this._editLink=null)}}class Wa{constructor(e={}){this._updateCompact=()=>{let e=this._container.children;if(e.length){let t=e[0];this._map.getCanvasContainer().offsetWidth<=640||this._compact?!1!==this._compact&&t.classList.add(`maplibregl-compact`):t.classList.remove(`maplibregl-compact`)}},this.options=e}getDefaultPosition(){return`bottom-left`}onAdd(e){this._map=e,this._compact=this.options&&this.options.compact,this._container=u.create(`div`,`maplibregl-ctrl`);let t=u.create(`a`,`maplibregl-ctrl-logo`);return t.target=`_blank`,t.rel=`noopener nofollow`,t.href=`https://maplibre.org/`,t.setAttribute(`aria-label`,this._map._getUIString(`LogoControl.Title`)),t.setAttribute(`rel`,`noopener nofollow`),this._container.appendChild(t),this._container.style.display=`block`,this._map.on(`resize`,this._updateCompact),this._updateCompact(),this._container}onRemove(){this._container.remove(),this._map.off(`resize`,this._updateCompact),this._map=void 0,this._compact=void 0}}class Ga{constructor(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1}add(e){let t=++this._id;return this._queue.push({callback:e,id:t,cancelled:!1}),t}remove(e){let t=this._currentlyRunning,n=t?this._queue.concat(t):this._queue;for(let t of n)if(t.id===e)return void(t.cancelled=!0)}run(e=0){if(this._currentlyRunning)throw Error(`Attempting to run(), but is already running.`);let t=this._currentlyRunning=this._queue;this._queue=[];for(let n of t)if(!n.cancelled&&(n.callback(e),this._cleared))break;this._cleared=!1,this._currentlyRunning=!1}clear(){this._currentlyRunning&&(this._cleared=!0),this._queue=[]}}var Ka=t.aS([{name:`a_pos3d`,type:`Int16`,components:3}]);class qa extends t.E{constructor(e){super(),this._lastTilesetChange=l(),this.tileManager=e,this._tiles={},this._renderableTilesKeys=[],this._sourceTileCache={},this.minzoom=0,this.maxzoom=22,this.deltaZoom=1,this.tileSize=e._source.tileSize*2**this.deltaZoom,e.usedForTerrain=!0,e.tileSize=this.tileSize}destruct(){this.tileManager.usedForTerrain=!1,this.tileManager.tileSize=null}getSource(){return this.tileManager._source}update(e,n){this.tileManager.update(e,n),this._renderableTilesKeys=[];let r={};for(let i of Ue(e,{tileSize:this.tileSize,minzoom:this.minzoom,maxzoom:this.maxzoom,reparseOverscaled:!1,terrain:n,calculateTileZoom:this.tileManager._source.calculateTileZoom}))r[i.key]=!0,this._renderableTilesKeys.push(i.key),this._tiles[i.key]||(i.terrainRttPosMatrix32f=new Float64Array(16),t.c5(i.terrainRttPosMatrix32f,0,t.a5,t.a5,0,0,1),this._tiles[i.key]=new Ae(i,this.tileSize),this._lastTilesetChange=l());for(let e in this._tiles)r[e]||delete this._tiles[e]}freeRtt(e){for(let t in this._tiles){let n=this._tiles[t];(!e||n.tileID.equals(e)||n.tileID.isChildOf(e)||e.isChildOf(n.tileID))&&(n.rtt=[])}}getRenderableTiles(){return this._renderableTilesKeys.map((e=>this.getTileByID(e)))}getTileByID(e){return this._tiles[e]}getTerrainCoords(e,t){return t?this._getTerrainCoordsForTileRanges(e,t):this._getTerrainCoordsForRegularTile(e)}_getTerrainCoordsForRegularTile(e){let n={};for(let r of this._renderableTilesKeys){let i=this._tiles[r].tileID,a=e.clone(),o=t.bi();if(i.canonical.equals(e.canonical))t.c5(o,0,t.a5,t.a5,0,0,1);else if(i.canonical.isChildOf(e.canonical)){let n=i.canonical.z-e.canonical.z,r=i.canonical.x-(i.canonical.x>>n<<n),a=i.canonical.y-(i.canonical.y>>n<<n),s=t.a5>>n;t.c5(o,0,s,s,0,0,1),t.O(o,o,[-r*s,-a*s,0])}else{if(!e.canonical.isChildOf(i.canonical))continue;{let n=e.canonical.z-i.canonical.z,r=e.canonical.x-(e.canonical.x>>n<<n),a=e.canonical.y-(e.canonical.y>>n<<n),s=t.a5>>n;t.c5(o,0,t.a5,t.a5,0,0,1),t.O(o,o,[r*s,a*s,0]),t.Q(o,o,[1/2**n,1/2**n,0])}}a.terrainRttPosMatrix32f=new Float32Array(o),n[r]=a}return n}_getTerrainCoordsForTileRanges(e,n){let r={};for(let i of this._renderableTilesKeys){let a=this._tiles[i].tileID;if(!this._isWithinTileRanges(a,n))continue;let o=e.clone(),s=t.bi();if(a.canonical.z===e.canonical.z){let n=e.canonical.x-a.canonical.x+e.wrap*(1<<e.canonical.z),r=e.canonical.y-a.canonical.y;t.c5(s,0,t.a5,t.a5,0,0,1),t.O(s,s,[n*t.a5,r*t.a5,0])}else if(a.canonical.z>e.canonical.z){let n=a.canonical.z-e.canonical.z,r=a.canonical.x-(a.canonical.x>>n<<n)+e.wrap*(1<<a.canonical.z),i=a.canonical.y-(a.canonical.y>>n<<n),o=e.canonical.x-(a.canonical.x>>n),c=e.canonical.y-(a.canonical.y>>n),l=t.a5>>n;t.c5(s,0,l,l,0,0,1),t.O(s,s,[-r*l+o*t.a5,-i*l+c*t.a5,0])}else{let n=e.canonical.z-a.canonical.z,r=e.canonical.x-(e.canonical.x>>n<<n)+e.wrap*(1<<e.canonical.z),i=e.canonical.y-(e.canonical.y>>n<<n),o=(e.canonical.x>>n)-a.canonical.x,c=(e.canonical.y>>n)-a.canonical.y,l=t.a5<<n;t.c5(s,0,l,l,0,0,1),t.O(s,s,[r*t.a5+o*l,i*t.a5+c*l,0])}o.terrainRttPosMatrix32f=new Float32Array(s),r[i]=o}return r}getSourceTile(e,t){let n=this.tileManager._source,r=e.overscaledZ-this.deltaZoom;if(r>n.maxzoom&&(r=n.maxzoom),r<n.minzoom)return;this._sourceTileCache[e.key]||(this._sourceTileCache[e.key]=e.scaledTo(r).key);let i=this.findTileInCaches(this._sourceTileCache[e.key]);if(!i?.dem&&t)for(;r>=n.minzoom&&!i?.dem;)i=this.findTileInCaches(e.scaledTo(r--).key);return i}findTileInCaches(e){let t=this.tileManager.getTileByID(e);return t||(t=this.tileManager._outOfViewCache.getByKey(e),t)}anyTilesAfterTime(e=Date.now()){return this._lastTilesetChange>=e}_isWithinTileRanges(e,t){let n=t[e.canonical.z];return!!n&&(e.wrap>n.minWrap||e.wrap<n.maxWrap||e.canonical.x>=n.minTileXWrapped&&e.canonical.x<=n.maxTileXWrapped&&e.canonical.y>=n.minTileY&&e.canonical.y<=n.maxTileY)}}class Ja{constructor(e,t,n){this._meshCache={},this.painter=e,this.tileManager=new qa(t),this.options=n,this.exaggeration=typeof n.exaggeration==`number`?n.exaggeration:1,this.qualityFactor=2,this.meshSize=128,this._demMatrixCache={},this.coordsIndex=[],this._coordsTextureSize=1024}destroy(){this._fbo&&=(this._fbo.destroy(),null),this._fboCoordsTexture&&=(this._fboCoordsTexture.destroy(),null),this._fboDepthTexture&&=(this._fboDepthTexture.destroy(),null),this._emptyDemTexture&&=(this._emptyDemTexture.destroy(),null),this._emptyDepthTexture&&=(this._emptyDepthTexture.destroy(),null),this._coordsTexture&&=(this._coordsTexture.destroy(),null);for(let e in this._meshCache)this._meshCache[e].destroy();this._meshCache={},this.tileManager.destruct()}getDEMElevation(e,n,r,i=t.a5){let a=e.normalizeCoordinates(n,r,i);if(!a)return 0;let o=this.getTerrainData(a.tileID),s=o.tile?.dem;if(!s)return 0;let c=t.cA([],[a.x/i*t.a5,a.y/i*t.a5],o.u_terrain_matrix),l=[c[0]*s.dim,c[1]*s.dim],u=Math.floor(l[0]),d=Math.floor(l[1]),f=l[0]-u,p=l[1]-d;return s.get(u,d)*(1-f)*(1-p)+s.get(u+1,d)*f*(1-p)+s.get(u,d+1)*(1-f)*p+s.get(u+1,d+1)*f*p}getElevationForLngLatZoom(e,n){if(!t.cB(n,e.wrap()))return 0;let{tileID:r,mercatorX:i,mercatorY:a}=this._getOverscaledTileIDFromLngLatZoom(e,n);return this.getElevation(r,i%t.a5,a%t.a5,t.a5)}getElevationForLngLat(e,t){let n=Ue(t,{maxzoom:this.tileManager.maxzoom,minzoom:this.tileManager.minzoom,tileSize:512,terrain:this}),r=0;for(let e of n)e.canonical.z>r&&(r=Math.min(e.canonical.z,this.tileManager.maxzoom));return this.getElevationForLngLatZoom(e,r)}getElevation(e,n,r,i=t.a5){return this.getDEMElevation(e,n,r,i)*this.exaggeration}getTerrainData(e){if(!this._emptyDemTexture){let e=this.painter.context,n=new t.R({width:1,height:1},new Uint8Array(4));this._emptyDepthTexture=new t.T(e,n,e.gl.RGBA,{premultiply:!1}),this._emptyDemUnpack=[0,0,0,0],this._emptyDemTexture=new t.T(e,new t.R({width:1,height:1}),e.gl.RGBA,{premultiply:!1}),this._emptyDemTexture.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),this._emptyDemMatrix=t.ao([])}let n=this.tileManager.getSourceTile(e,!0);if(n&&n.dem&&(!n.demTexture||n.needsTerrainPrepare)){let e=this.painter.context;n.demTexture=this.painter.getTileTexture(n.dem.stride),n.demTexture?n.demTexture.update(n.dem.getPixels(),{premultiply:!1}):n.demTexture=new t.T(e,n.dem.getPixels(),e.gl.RGBA,{premultiply:!1}),n.demTexture.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),n.needsTerrainPrepare=!1}let r=n&&n.toString()+n.tileID.key+e.key;if(r&&!this._demMatrixCache[r]){let r=this.tileManager.getSource().maxzoom,i=e.canonical.z-n.tileID.canonical.z;e.overscaledZ>e.canonical.z&&(e.canonical.z>=r?i=e.canonical.z-r:t.w(`cannot calculate elevation if elevation maxzoom > source.maxzoom`));let a=e.canonical.x-(e.canonical.x>>i<<i),o=e.canonical.y-(e.canonical.y>>i<<i),s=t.cC(new Float64Array(16),[1/(t.a5<<i),1/(t.a5<<i),0]);t.O(s,s,[a*t.a5,o*t.a5,0]),this._demMatrixCache[e.key]={matrix:s,coord:e}}return{u_depth:2,u_terrain:3,u_terrain_dim:n&&n.dem&&n.dem.dim||1,u_terrain_matrix:r?this._demMatrixCache[e.key].matrix:this._emptyDemMatrix,u_terrain_unpack:n&&n.dem&&n.dem.getUnpackVector()||this._emptyDemUnpack,u_terrain_exaggeration:this.exaggeration,texture:(n&&n.demTexture||this._emptyDemTexture).texture,depthTexture:(this._fboDepthTexture||this._emptyDepthTexture).texture,tile:n}}getFramebuffer(e){let n=this.painter,r=n.width/devicePixelRatio,i=n.height/devicePixelRatio;return!this._fbo||this._fbo.width===r&&this._fbo.height===i||(this._fbo.destroy(),this._fboCoordsTexture.destroy(),this._fboDepthTexture.destroy(),delete this._fbo,delete this._fboDepthTexture,delete this._fboCoordsTexture),this._fboCoordsTexture||(this._fboCoordsTexture=new t.T(n.context,{width:r,height:i,data:null},n.context.gl.RGBA,{premultiply:!1}),this._fboCoordsTexture.bind(n.context.gl.NEAREST,n.context.gl.CLAMP_TO_EDGE)),this._fboDepthTexture||(this._fboDepthTexture=new t.T(n.context,{width:r,height:i,data:null},n.context.gl.RGBA,{premultiply:!1}),this._fboDepthTexture.bind(n.context.gl.NEAREST,n.context.gl.CLAMP_TO_EDGE)),this._fbo||(this._fbo=n.context.createFramebuffer(r,i,!0,!1),this._fbo.depthAttachment.set(n.context.createRenderbuffer(n.context.gl.DEPTH_COMPONENT16,r,i))),this._fbo.colorAttachment.set(e===`coords`?this._fboCoordsTexture.texture:this._fboDepthTexture.texture),this._fbo}getCoordsTexture(){let e=this.painter.context;if(this._coordsTexture)return this._coordsTexture;let n=new Uint8Array(this._coordsTextureSize*this._coordsTextureSize*4);for(let e=0,t=0;e<this._coordsTextureSize;e++)for(let r=0;r<this._coordsTextureSize;r++,t+=4)n[t+0]=255&r,n[t+1]=255&e,n[t+2]=r>>8<<4|e>>8,n[t+3]=0;let r=new t.R({width:this._coordsTextureSize,height:this._coordsTextureSize},new Uint8Array(n.buffer)),i=new t.T(e,r,e.gl.RGBA,{premultiply:!1});return i.bind(e.gl.NEAREST,e.gl.CLAMP_TO_EDGE),this._coordsTexture=i,i}pointCoordinate(e){this.painter.maybeDrawDepthAndCoords(!0);let n=new Uint8Array(4),r=this.painter.context,i=r.gl,a=Math.round(e.x*this.painter.pixelRatio/devicePixelRatio),o=Math.round(e.y*this.painter.pixelRatio/devicePixelRatio),s=Math.round(this.painter.height/devicePixelRatio);r.bindFramebuffer.set(this.getFramebuffer(`coords`).framebuffer),i.readPixels(a,s-o-1,1,1,i.RGBA,i.UNSIGNED_BYTE,n),r.bindFramebuffer.set(null);let c=n[0]+(n[2]>>4<<8),l=n[1]+((15&n[2])<<8),u=this.coordsIndex[255-n[3]],d=u&&this.tileManager.getTileByID(u);if(!d)return null;let f=this._coordsTextureSize,p=(1<<d.tileID.canonical.z)*f;return new t.a6((d.tileID.canonical.x*f+c)/p+d.tileID.wrap,(d.tileID.canonical.y*f+l)/p,this.getElevation(d.tileID,c,l,f))}depthAtPoint(e){let t=new Uint8Array(4),n=this.painter.context,r=n.gl;return n.bindFramebuffer.set(this.getFramebuffer(`depth`).framebuffer),r.readPixels(e.x,this.painter.height/devicePixelRatio-e.y-1,1,1,r.RGBA,r.UNSIGNED_BYTE,t),n.bindFramebuffer.set(null),(t[0]/16777216+t[1]/65536+t[2]/256+t[3])/256}getTerrainMesh(e){let n=this.painter.style.projection?.transitionState>0,r=n&&e.canonical.y===0,i=n&&e.canonical.y===(1<<e.canonical.z)-1,a=`m_${r?`n`:``}_${i?`s`:``}`;if(this._meshCache[a])return this._meshCache[a];let o=this.painter.context,s=new t.cD,c=new t.aW,l=this.meshSize,u=t.a5/l,d=l*l;for(let e=0;e<=l;e++)for(let t=0;t<=l;t++)s.emplaceBack(t*u,e*u,0);for(let e=0;e<d;e+=l+1)for(let t=0;t<l;t++)c.emplaceBack(t+e,l+t+e+1,l+t+e+2),c.emplaceBack(t+e,l+t+e+2,t+e+1);let f=s.length,p=f+(l+1),m=(l+1)*l,h=r?t.bp:0,g=+!r,_=i?t.bq:t.a5,v=+!i;for(let e=0;e<=l;e++)s.emplaceBack(e*u,h,g);for(let e=0;e<=l;e++)s.emplaceBack(e*u,_,v);for(let e=0;e<l;e++)c.emplaceBack(m+e,p+e,p+e+1),c.emplaceBack(m+e,p+e+1,m+e+1),c.emplaceBack(0+e,f+e+1,f+e),c.emplaceBack(0+e,0+e+1,f+e+1);let y=s.length,b=y+2*(l+1);for(let e of[0,1])for(let n=0;n<=l;n++)for(let r of[0,1])s.emplaceBack(e*t.a5,n*u,r);for(let e=0;e<2*l;e+=2)c.emplaceBack(y+e,y+e+1,y+e+3),c.emplaceBack(y+e,y+e+3,y+e+2),c.emplaceBack(b+e,b+e+3,b+e+1),c.emplaceBack(b+e,b+e+2,b+e+3);let x=new Lt(o.createVertexBuffer(s,Ka.members),o.createIndexBuffer(c),t.aV.simpleSegment(0,0,s.length,c.length));return this._meshCache[a]=x,x}getMeshFrameDelta(e){return 2*Math.PI*t.bC/2**Math.max(e,0)/5}getMinTileElevationForLngLatZoom(e,n){if(!t.cB(n,e.wrap()))return 0;let{tileID:r}=this._getOverscaledTileIDFromLngLatZoom(e,n);return this.getMinMaxElevation(r).minElevation??0}getMinMaxElevation(e){let t=this.getTerrainData(e).tile,n={minElevation:null,maxElevation:null};return t&&t.dem&&(n.minElevation=t.dem.min*this.exaggeration,n.maxElevation=t.dem.max*this.exaggeration),n}_getOverscaledTileIDFromLngLatZoom(e,n){let r=t.a6.fromLngLat(e.wrap()),i=(1<<n)*t.a5,a=r.x*i,o=r.y*i,s=Math.floor(a/t.a5),c=Math.floor(o/t.a5);return{tileID:new t.a2(n,0,n,s,c),mercatorX:a,mercatorY:o}}}class Ya{constructor(e,t,n){this._context=e,this._size=t,this._tileSize=n,this._objects=[],this._recentlyUsed=[],this._stamp=0}destruct(){for(let e of this._objects)e.texture.destroy(),e.fbo.destroy()}_createObject(e){let n=this._context.createFramebuffer(this._tileSize,this._tileSize,!0,!0),r=new t.T(this._context,{width:this._tileSize,height:this._tileSize,data:null},this._context.gl.RGBA);return r.bind(this._context.gl.LINEAR,this._context.gl.CLAMP_TO_EDGE),this._context.extTextureFilterAnisotropic&&this._context.gl.texParameterf(this._context.gl.TEXTURE_2D,this._context.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,this._context.extTextureFilterAnisotropicMax),n.depthAttachment.set(this._context.createRenderbuffer(this._context.gl.DEPTH_STENCIL,this._tileSize,this._tileSize)),n.colorAttachment.set(r.texture),{id:e,fbo:n,texture:r,stamp:-1,inUse:!1}}getObjectForId(e){return this._objects[e]}useObject(e){e.inUse=!0,this._recentlyUsed=this._recentlyUsed.filter((t=>e.id!==t)),this._recentlyUsed.push(e.id)}stampObject(e){e.stamp=++this._stamp}getOrCreateFreeObject(){for(let e of this._recentlyUsed)if(!this._objects[e].inUse)return this._objects[e];if(this._objects.length>=this._size)throw Error(`No free RenderPool available, call freeAllObjects() required!`);let e=this._createObject(this._objects.length);return this._objects.push(e),e}freeObject(e){e.inUse=!1}freeAllObjects(){for(let e of this._objects)this.freeObject(e)}isFull(){return!(this._objects.length<this._size)&&!1===this._objects.some((e=>!e.inUse))}}let Xa={background:!0,fill:!0,line:!0,raster:!0,hillshade:!0,"color-relief":!0};class Za{constructor(e,t){this.painter=e,this.terrain=t,this.pool=new Ya(e.context,30,t.tileManager.tileSize*t.qualityFactor)}destruct(){this.pool.destruct()}getTexture(e){return this.pool.getObjectForId(e.rtt[this._stacks.length-1].id).texture}prepareForRender(e,t){this._stacks=[],this._prevType=null,this._rttTiles=[],this._renderableTiles=this.terrain.tileManager.getRenderableTiles(),this._renderableLayerIds=e._order.filter((n=>!e._layers[n].isHidden(t))),this._coordsAscending={};for(let t in e.tileManagers){this._coordsAscending[t]={};let n=e.tileManagers[t].getVisibleCoordinates(),r=e.tileManagers[t].getSource(),i=r instanceof ye?r.terrainTileRanges:null;for(let e of n){let n=this.terrain.tileManager.getTerrainCoords(e,i);for(let e in n)this._coordsAscending[t][e]||(this._coordsAscending[t][e]=[]),this._coordsAscending[t][e].push(n[e])}}this._rttFingerprints={};for(let t of e._order){let n=e._layers[t],r=n.source;if(Xa[n.type]&&!this._rttFingerprints[r]){this._rttFingerprints[r]={};let t=e.tileManagers[r]?.getState().revision??0;for(let e in this._coordsAscending[r])this._rttFingerprints[r][e]=`${this._coordsAscending[r][e].map((e=>e.key)).sort().join()}#${t}`}}for(let e of this._renderableTiles)for(let t in this._rttFingerprints){let n=this._rttFingerprints[t][e.tileID.key];n&&n!==e.rttFingerprint[t]&&(e.rtt=[])}}renderLayer(e,n){if(e.isHidden(this.painter.transform.zoom))return!1;let r=Object.assign(Object.assign({},n),{isRenderingToTexture:!0}),i=e.type,a=this.painter,o=this._renderableLayerIds[this._renderableLayerIds.length-1]===e.id;if(Xa[i]&&(this._prevType&&Xa[this._prevType]||this._stacks.push([]),this._prevType=i,this._stacks[this._stacks.length-1].push(e.id),!o))return!0;if(Xa[this._prevType]||Xa[i]&&o){this._prevType=i;let e=this._stacks.length-1,n=this._stacks[e]||[];for(let i of this._renderableTiles){if(this.pool.isFull()&&(Hi(this.painter,this.terrain,this._rttTiles,r),this._rttTiles=[],this.pool.freeAllObjects()),this._rttTiles.push(i),i.rtt[e]){let t=this.pool.getObjectForId(i.rtt[e].id);if(t.stamp===i.rtt[e].stamp){this.pool.useObject(t);continue}}let o=this.pool.getOrCreateFreeObject();this.pool.useObject(o),this.pool.stampObject(o),i.rtt[e]={id:o.id,stamp:o.stamp},a.context.bindFramebuffer.set(o.fbo.framebuffer),a.context.clear({color:t.bn.transparent,stencil:0}),a.currentStencilSource=void 0;for(let e=0;e<n.length;e++){let t=a.style._layers[n[e]],s=t.source?this._coordsAscending[t.source][i.tileID.key]:[i.tileID];a.context.viewport.set([0,0,o.fbo.width,o.fbo.height]),a._renderTileClippingMasks(t,s,!0),a.renderLayer(a,a.style.tileManagers[t.source],t,s,r),t.source&&(i.rttFingerprint[t.source]=this._rttFingerprints[t.source][i.tileID.key])}}return Hi(this.painter,this.terrain,this._rttTiles,r),this._rttTiles=[],this.pool.freeAllObjects(),Xa[i]}return!1}}let Qa={"AttributionControl.ToggleAttribution":`Toggle attribution`,"AttributionControl.MapFeedback":`Map feedback`,"FullscreenControl.Enter":`Enter fullscreen`,"FullscreenControl.Exit":`Exit fullscreen`,"GeolocateControl.FindMyLocation":`Find my location`,"GeolocateControl.LocationNotAvailable":`Location not available`,"LogoControl.Title":`MapLibre logo`,"Map.Title":`Map`,"Marker.Title":`Map marker`,"NavigationControl.ResetBearing":`Drag to rotate map, click to reset north`,"NavigationControl.ZoomIn":`Zoom in`,"NavigationControl.ZoomOut":`Zoom out`,"Popup.Close":`Close popup`,"ScaleControl.Feet":`ft`,"ScaleControl.Meters":`m`,"ScaleControl.Kilometers":`km`,"ScaleControl.Miles":`mi`,"ScaleControl.NauticalMiles":`nm`,"GlobeControl.Enable":`Enable globe`,"GlobeControl.Disable":`Disable globe`,"TerrainControl.Enable":`Enable terrain`,"TerrainControl.Disable":`Disable terrain`,"CooperativeGesturesHandler.WindowsHelpText":`Use Ctrl + scroll to zoom the map`,"CooperativeGesturesHandler.MacHelpText":`Use ⌘ + scroll to zoom the map`,"CooperativeGesturesHandler.MobileHelpText":`Use two fingers to move the map`},$a=n,eo={hash:!1,interactive:!0,bearingSnap:7,zoomSnap:0,attributionControl:Z,maplibreLogo:!1,refreshExpiredTiles:!0,canvasContextAttributes:{antialias:!1,preserveDrawingBuffer:!1,powerPreference:`high-performance`,failIfMajorPerformanceCaveat:!1,desynchronized:!1,contextType:void 0},scrollZoom:!0,minZoom:-2,maxZoom:22,minPitch:0,maxPitch:60,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,touchPitch:!0,cooperativeGestures:!1,trackResize:!0,center:[0,0],elevation:0,zoom:0,bearing:0,pitch:0,roll:0,renderWorldCopies:!0,maxTileCacheSize:null,maxTileCacheZoomLevels:t.c.MAX_TILE_CACHE_ZOOM_LEVELS,transformRequest:null,transformCameraUpdate:null,transformConstrain:null,fadeDuration:300,crossSourceCollisions:!0,clickTolerance:3,localIdeographFontFamily:`sans-serif`,pitchWithRotate:!0,rollEnabled:!1,reduceMotion:void 0,validateStyle:!0,maxCanvasSize:[4096,4096],cancelPendingTileRequestsWhileZooming:!0,centerClampedToGround:!0,experimentalZoomLevelsToOverscale:void 0,anisotropicFilterPitch:20},to=class extends Ua{get _ownerWindow(){return this._container?.ownerDocument?.defaultView||window}constructor(e){t.cE.mark(t.cF.create);let n=Object.assign(Object.assign(Object.assign({},eo),e),{canvasContextAttributes:Object.assign(Object.assign({},eo.canvasContextAttributes),e.canvasContextAttributes)});if(n.minZoom!=null&&n.maxZoom!=null&&n.minZoom>n.maxZoom)throw Error(`maxZoom must be greater than or equal to minZoom`);if(n.minPitch!=null&&n.maxPitch!=null&&n.minPitch>n.maxPitch)throw Error(`maxPitch must be greater than or equal to minPitch`);if(n.minPitch!=null&&n.minPitch<0)throw Error(`minPitch must be greater than or equal to 0`);if(n.maxPitch!=null&&n.maxPitch>180)throw Error(`maxPitch must be less than or equal to 180`);let r=new Yt,i=new $t;n.minZoom!==void 0&&r.setMinZoom(n.minZoom),n.maxZoom!==void 0&&r.setMaxZoom(n.maxZoom),n.minPitch!==void 0&&r.setMinPitch(n.minPitch),n.maxPitch!==void 0&&r.setMaxPitch(n.maxPitch),n.renderWorldCopies!==void 0&&r.setRenderWorldCopies(n.renderWorldCopies),n.transformConstrain!==null&&r.setConstrainOverride(n.transformConstrain),super(r,i,{bearingSnap:n.bearingSnap,zoomSnap:n.zoomSnap}),this._idleTriggered=!1,this._crossFadingFactor=1,this._renderTaskQueue=new Ga,this._controls=[],this._mapId=t.ac(),this._lostContextStyle={style:null,images:null},this._contextLost=e=>{if(e.preventDefault(),this._frameRequest&&=(this._frameRequest.abort(),null),this.painter.destroy(),this._lostContextStyle=this._getStyleAndImages(),this.style){for(let e of Object.values(this.style._layers))if(e.type===`custom`&&console.warn(`Custom layer with id '${e.id}' cannot be restored after WebGL context loss. You will need to re-add it manually after context restoration.`),e._listeners)for(let[t]of Object.entries(e._listeners))console.warn(`Custom layer with id '${e.id}' had event listeners for event '${t}' which cannot be restored after WebGL context loss. You will need to re-add them manually after context restoration.`);this.style.destroy(),this.style=null,this.fire(new t.l(`webglcontextlost`,{originalEvent:e}))}else this.fire(new t.l(`webglcontextlost`,{originalEvent:e}))},this._contextRestored=e=>{this._lostContextStyle.style&&this.setStyle(this._lostContextStyle.style,{diff:!1}),this._lostContextStyle.images&&(this.style.imageManager.images=this._lostContextStyle.images),this._lostContextStyle={style:null,images:null},this._setupPainter(),this.resize(),this._update(),this._resizeInternal(),this.fire(new t.l(`webglcontextrestored`,{originalEvent:e}))},this._onMapScroll=e=>{if(e.target===this._container)return this._container.scrollTop=0,this._container.scrollLeft=0,!1},this._onWindowOnline=()=>{this._update()},this._interactive=n.interactive,this._maxTileCacheSize=n.maxTileCacheSize,this._maxTileCacheZoomLevels=n.maxTileCacheZoomLevels,this._canvasContextAttributes=Object.assign({},n.canvasContextAttributes),this._trackResize=!0===n.trackResize,this._bearingSnap=n.bearingSnap,this._zoomSnap=n.zoomSnap,this._centerClampedToGround=n.centerClampedToGround,this._refreshExpiredTiles=!0===n.refreshExpiredTiles,this._fadeDuration=n.fadeDuration,this._crossSourceCollisions=!0===n.crossSourceCollisions,this._collectResourceTiming=!0===n.collectResourceTiming,this._locale=Object.assign(Object.assign({},Qa),n.locale),this._clickTolerance=n.clickTolerance,this._overridePixelRatio=n.pixelRatio,this._maxCanvasSize=n.maxCanvasSize,this._zoomLevelsToOverscale=n.experimentalZoomLevelsToOverscale,this.transformCameraUpdate=n.transformCameraUpdate,this.transformConstrain=n.transformConstrain,this.cancelPendingTileRequestsWhileZooming=!0===n.cancelPendingTileRequestsWhileZooming,this.setAnisotropicFilterPitch(n.anisotropicFilterPitch),n.reduceMotion!==void 0&&(s.prefersReducedMotion=n.reduceMotion),this._imageQueueHandle=d.addThrottleControl((()=>this.isMoving())),this._requestManager=new f(n.transformRequest),this._container=this._resolveContainer(n.container),n.maxBounds&&this.setMaxBounds(n.maxBounds),this._setupContainer(),this._setupPainter(),this.on(`move`,(()=>this._update(!1))),this.on(`moveend`,(()=>this._update(!1))),this.on(`zoom`,(()=>this._update(!0))),this.on(`terrain`,(()=>{this.painter.terrainFacilitator.dirty=!0,this._update(!0)})),this.once(`idle`,(()=>{this._idleTriggered=!0})),typeof window<`u`&&(this._ownerWindow.addEventListener(`online`,this._onWindowOnline,!1),this._setupResizeObserver()),this.handlers=new Ha(this,n),this._hash=n.hash&&new Ki(typeof n.hash==`string`&&n.hash||void 0).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:n.center,elevation:n.elevation,zoom:n.zoom,bearing:n.bearing,pitch:n.pitch,roll:n.roll}),n.bounds&&(this.resize(),this.fitBounds(n.bounds,t.e({},n.fitBoundsOptions,{duration:0}))));let a=typeof n.style==`string`||n.style?.projection?.type!==`globe`;this.resize(null,a),this._localIdeographFontFamily=n.localIdeographFontFamily,this._validateStyle=n.validateStyle,n.style&&this.setStyle(n.style,{localIdeographFontFamily:n.localIdeographFontFamily}),n.attributionControl&&this.addControl(new Q(typeof n.attributionControl==`boolean`?void 0:n.attributionControl)),n.maplibreLogo&&this.addControl(new Wa,n.logoPosition),this.on(`style.load`,(()=>{if(a||this._resizeTransform(),this.transform.unmodified){let e=t.U(this.style.stylesheet,[`center`,`zoom`,`bearing`,`pitch`,`roll`]);this.jumpTo(e)}})),this.on(`data`,(e=>{this._update(e.dataType===`style`),this.fire(new t.l(`${e.dataType}data`,e))})),this.on(`dataloading`,(e=>{this.fire(new t.l(`${e.dataType}dataloading`,e))})),this.on(`dataabort`,(e=>{this.fire(new t.l(`sourcedataabort`,e))}))}_getMapId(){return this._mapId}setGlobalStateProperty(e,t){return this.style.setGlobalStateProperty(e,t),this._update(!0)}getGlobalState(){return this.style.getGlobalState()}addControl(e,n){if(n===void 0&&(n=e.getDefaultPosition?e.getDefaultPosition():`top-right`),!e||!e.onAdd)return this.fire(new t.k(Error(`Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.`)));let r=e.onAdd(this);this._controls.push(e);let i=this._controlPositions[n];return n.indexOf(`bottom`)===-1?i.appendChild(r):i.insertBefore(r,i.firstChild),this}removeControl(e){if(!e||!e.onRemove)return this.fire(new t.k(Error(`Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.`)));let n=this._controls.indexOf(e);return n>-1&&this._controls.splice(n,1),e.onRemove(this),this}hasControl(e){return this._controls.indexOf(e)>-1}coveringTiles(e){return Ue(this.transform,e)}calculateCameraOptionsFromTo(e,t,n,r){return r==null&&this.terrain&&(r=this.terrain.getElevationForLngLat(n,this.transform)),super.calculateCameraOptionsFromTo(e,t,n,r)}resize(e,n=!0){if(this._lostContextStyle.style!==null)return this;this._resizeInternal(n);let r=!this._moving;return r&&(this.stop(),this.fire(new t.l(`movestart`,e)).fire(new t.l(`move`,e))),this.fire(new t.l(`resize`,e)),r&&this.fire(new t.l(`moveend`,e)),this}_resizeInternal(e=!0){let[t,n]=this._containerDimensions(),r=this._getClampedPixelRatio(t,n);if(this._resizeCanvas(t,n,r),this.painter.resize(t,n,r),this.painter.overLimit()){let e=this.painter.context.gl;this._maxCanvasSize=[e.drawingBufferWidth,e.drawingBufferHeight];let r=this._getClampedPixelRatio(t,n);this._resizeCanvas(t,n,r),this.painter.resize(t,n,r)}this._resizeTransform(e)}_resizeTransform(e=!0){var t;let[n,r]=this._containerDimensions();this.transform.resize(n,r,e),(t=this._requestedCameraState)==null||t.resize(n,r,e)}_getClampedPixelRatio(e,t){let{0:n,1:r}=this._maxCanvasSize,i=this.getPixelRatio(),a=e*i,o=t*i;return Math.min(a>n?n/a:1,o>r?r/o:1)*i}getPixelRatio(){return this._overridePixelRatio??devicePixelRatio}setPixelRatio(e){this._overridePixelRatio=e,this.resize()}getBounds(){return this.transform.getBounds()}getMaxBounds(){return this.transform.getMaxBounds()}setMaxBounds(e){return this.transform.setMaxBounds(N.convert(e)),this._update()}setMinZoom(e){if((e??=-2)>=-2&&e<=this.transform.maxZoom){let n=this.transform.zoom,r=this._getTransformForUpdate();return r.setMinZoom(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.zoom&&this.fire(new t.l(`zoomstart`)).fire(new t.l(`zoom`)).fire(new t.l(`zoomend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`minZoom must be between -2 and the current maxZoom, inclusive`)}getMinZoom(){return this.transform.minZoom}setMaxZoom(e){if((e??=22)>=this.transform.minZoom){let n=this.transform.zoom,r=this._getTransformForUpdate();return r.setMaxZoom(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.zoom&&this.fire(new t.l(`zoomstart`)).fire(new t.l(`zoom`)).fire(new t.l(`zoomend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`maxZoom must be greater than the current minZoom`)}getMaxZoom(){return this.transform.maxZoom}setMinPitch(e){if((e??=0)<0)throw Error(`minPitch must be greater than or equal to 0`);if(e>=0&&e<=this.transform.maxPitch){let n=this.transform.pitch,r=this._getTransformForUpdate();return r.setMinPitch(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.pitch&&this.fire(new t.l(`pitchstart`)).fire(new t.l(`pitch`)).fire(new t.l(`pitchend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`minPitch must be between 0 and the current maxPitch, inclusive`)}getMinPitch(){return this.transform.minPitch}setMaxPitch(e){if((e??=60)>180)throw Error(`maxPitch must be less than or equal to 180`);if(e>=this.transform.minPitch){let n=this.transform.pitch,r=this._getTransformForUpdate();return r.setMaxPitch(e),this._applyUpdatedTransform(r),this._update(),n!==this.transform.pitch&&this.fire(new t.l(`pitchstart`)).fire(new t.l(`pitch`)).fire(new t.l(`pitchend`)).fire(new t.l(`movestart`)).fire(new t.l(`move`)).fire(new t.l(`moveend`)),this}throw Error(`maxPitch must be greater than the current minPitch`)}getMaxPitch(){return this.transform.maxPitch}getAnisotropicFilterPitch(){return this._anisotropicFilterPitch}setAnisotropicFilterPitch(e){if((e??=20)>180)throw Error(`anisotropicFilterPitch must be less than or equal to 180`);if(e<0)throw Error(`anisotropicFilterPitch must be greater than or equal to 0`);return this._anisotropicFilterPitch=e,this._update()}getRenderWorldCopies(){return this.transform.renderWorldCopies}setRenderWorldCopies(e){return this.transform.setRenderWorldCopies(e),this._update()}setTransformConstrain(e){return this.transform.setConstrainOverride(e),this._update()}project(e){return this.transform.locationToScreenPoint(t.V.convert(e),this.style&&this.terrain)}unproject(e){return this.transform.screenPointToLocation(t.P.convert(e),this.terrain)}isMoving(){return this._moving||this.handlers?.isMoving()}isZooming(){return this._zooming||this.handlers?.isZooming()}isRotating(){return this._rotating||this.handlers?.isRotating()}_createDelegatedListener(e,t,n){if(e===`mouseenter`||e===`mouseover`){let r=!1;return{layers:t,listener:n,delegates:{mousemove:i=>{let a=t.filter((e=>this.getLayer(e))),o=a.length===0?[]:this.queryRenderedFeatures(i.point,{layers:a});o.length?r||(r=!0,n.call(this,new na(e,this,i.originalEvent,{features:o}))):r=!1},mouseout:()=>{r=!1}}}}if(e===`mouseleave`||e===`mouseout`){let r=!1;return{layers:t,listener:n,delegates:{mousemove:i=>{let a=t.filter((e=>this.getLayer(e)));(a.length===0?[]:this.queryRenderedFeatures(i.point,{layers:a})).length?r=!0:r&&(r=!1,n.call(this,new na(e,this,i.originalEvent)))},mouseout:t=>{r&&(r=!1,n.call(this,new na(e,this,t.originalEvent)))}}}}{let r=e=>{let r=t.filter((e=>this.getLayer(e))),i=r.length===0?[]:this.queryRenderedFeatures(e.point,{layers:r});i.length&&(e.features=i,n.call(this,e),delete e.features)};return{layers:t,listener:n,delegates:{[e]:r}}}}_saveDelegatedListener(e,t){this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[e]=this._delegatedListeners[e]||[],this._delegatedListeners[e].push(t)}_removeDelegatedListener(e,t,n){if(!this._delegatedListeners||!this._delegatedListeners[e])return;let r=this._delegatedListeners[e];for(let e=0;e<r.length;e++){let i=r[e];if(i.listener===n&&i.layers.length===t.length&&i.layers.every((e=>t.includes(e)))){for(let e in i.delegates)this.off(e,i.delegates[e]);r.splice(e,1);return}}}on(e,t,n){if(n===void 0)return super.on(e,t);let r=typeof t==`string`?[t]:t,i=this._createDelegatedListener(e,r,n);this._saveDelegatedListener(e,i);for(let e in i.delegates)this.on(e,i.delegates[e]);return{unsubscribe:()=>{this._removeDelegatedListener(e,r,n)}}}once(e,t,n){if(n===void 0)return super.once(e,t);let r=typeof t==`string`?[t]:t,i=this._createDelegatedListener(e,r,n);for(let t in i.delegates){let a=i.delegates[t];i.delegates[t]=(...t)=>{this._removeDelegatedListener(e,r,n),a(...t)}}this._saveDelegatedListener(e,i);for(let e in i.delegates)this.once(e,i.delegates[e]);return this}off(e,t,n){return n===void 0?super.off(e,t):(this._removeDelegatedListener(e,typeof t==`string`?[t]:t,n),this)}queryRenderedFeatures(e,n){if(!this.style)return[];let r,i=e instanceof t.P||Array.isArray(e),a=i?e:[[0,0],[this.transform.width,this.transform.height]];if(n=n||(i?{}:e)||{},a instanceof t.P||typeof a[0]==`number`)r=[t.P.convert(a)];else{let e=t.P.convert(a[0]),n=t.P.convert(a[1]);r=[e,new t.P(n.x,e.y),n,new t.P(e.x,n.y),e]}return this.style.queryRenderedFeatures(r,n,this.transform)}querySourceFeatures(e,t){return this.style.querySourceFeatures(e,t)}setStyle(e,n){return!1!==(n=t.e({},{localIdeographFontFamily:this._localIdeographFontFamily,validate:this._validateStyle},n)).diff&&n.localIdeographFontFamily===this._localIdeographFontFamily&&this.style&&e?(this._diffStyle(e,n),this):(this._localIdeographFontFamily=n.localIdeographFontFamily,this._updateStyle(e,n))}setTransformRequest(e){return this._requestManager.setTransformRequest(e),this}_getUIString(e){let t=this._locale[e];if(t==null)throw Error(`Missing UI string '${e}'`);return t}_updateStyle(e,t){var n;if(t.transformStyle&&this.style&&!this.style._loaded)return void this.style.once(`style.load`,(()=>this._updateStyle(e,t)));let r=this.style&&t.transformStyle?this.style.serialize():void 0;return this.style&&(this.style.setEventedParent(null),this.style._remove(!e)),e?(this.style=new Fn(this,t||{}),this.style.setEventedParent(this,{style:this.style}),typeof e==`string`?this.style.loadURL(e,t,r):this.style.loadJSON(e,t,r),this):((n=this.style?.projection)==null||n.destroy(),delete this.style,this)}_lazyInitEmptyStyle(){this.style||(this.style=new Fn(this,{}),this.style.setEventedParent(this,{style:this.style}),this.style.loadEmpty())}_diffStyle(e,n){return t._(this,void 0,void 0,(function*(){if(typeof e==`string`){let r=e,i=yield this._requestManager.transformRequest(r,`Style`);try{let e=yield t.j(i,new AbortController);this._updateDiff(e.data,n)}catch(e){e&&this.fire(new t.k(e))}}else typeof e==`object`&&this._updateDiff(e,n)}))}_updateDiff(e,n){try{this.style.setState(e,n)&&this._update(!0)}catch(r){t.w(`Unable to perform style diff: ${r.message||r.error||r}. Rebuilding the style from scratch.`),this._updateStyle(e,n)}}getStyle(){if(this.style)return this.style.serialize()}_getStyleAndImages(){return this.style?{style:this.style.serialize(),images:this.style.imageManager.cloneImages()}:{style:null,images:{}}}isStyleLoaded(){return this.style?this.style.loaded():t.w(`There is no style added to the map.`)}addSource(e,t){return this._lazyInitEmptyStyle(),this.style.addSource(e,t),this._update(!0)}isSourceLoaded(e){let n=this.style&&this.style.tileManagers[e];if(n!==void 0)return n.loaded();this.fire(new t.k(Error(`There is no tile manager with ID '${e}'`)))}setTerrain(e){if(this.style._checkLoaded(),this._terrainDataCallback&&this.style.off(`data`,this._terrainDataCallback),e){let n=this.style.tileManagers[e.source];if(!n)throw Error(`cannot load terrain, because there exists no source with ID: ${e.source}`);this.terrain===null&&n.reload();for(let n in this.style._layers){let r=this.style._layers[n];r.type===`hillshade`&&r.source===e.source&&t.w(`You are using the same source for a hillshade layer and for 3D terrain. Please consider using two separate sources to improve rendering quality.`),r.type===`color-relief`&&r.source===e.source&&t.w(`You are using the same source for a color-relief layer and for 3D terrain. Please consider using two separate sources to improve rendering quality.`)}this.terrain=new Ja(this.painter,n,e),this.painter.renderToTexture=new Za(this.painter,this.terrain),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this._terrainDataCallback=t=>{t.dataType===`style`?this.terrain.tileManager.freeRtt():t.dataType===`source`&&t.tile&&(t.sourceId!==e.source||this._elevationFreeze||(this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),this._centerClampedToGround&&this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom))),t.source?.type===`image`?this.terrain.tileManager.freeRtt():this.terrain.tileManager.freeRtt(t.tile.tileID))},this.style.on(`data`,this._terrainDataCallback)}else this.terrain&&this.terrain.destroy(),this.terrain=null,this.painter.renderToTexture&&this.painter.renderToTexture.destruct(),this.painter.renderToTexture=null,this.transform.setMinElevationForCurrentTile(0),this._centerClampedToGround&&this.transform.setElevation(0);return this.fire(new t.l(`terrain`,{terrain:e})),this}getTerrain(){return this.terrain?.options??null}areTilesLoaded(){let e=this.style&&this.style.tileManagers;for(let t of Object.values(e))if(!t.areTilesLoaded())return!1;return!0}removeSource(e){return this.style.removeSource(e),this._update(!0)}getSource(e){return this.style.getSource(e)}setSourceTileLodParams(e,t,n){if(n){let r=this.getSource(n);if(!r)throw Error(`There is no source with ID "${n}", cannot set LOD parameters`);r.calculateTileZoom=Be(Math.max(1,e),Math.max(1,t))}else for(let n in this.style.tileManagers)this.style.tileManagers[n].getSource().calculateTileZoom=Be(Math.max(1,e),Math.max(1,t));return this._update(!0),this}refreshTiles(e,n){let r=this.style.tileManagers[e];if(!r)throw Error(`There is no tile manager with ID "${e}", cannot refresh tile`);n===void 0?r.reload(!0):r.refreshTiles(n.map((e=>new t.a9(e.z,e.x,e.y))))}addImage(e,n,r={}){let{pixelRatio:i=1,sdf:a=!1,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d}=r;if(this._lazyInitEmptyStyle(),!(n instanceof HTMLImageElement||t.b(n))){if(n.width===void 0||n.height===void 0)return this.fire(new t.k(Error("Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`")));{let{width:r,height:s,data:f}=n,p=n;return this.style.addImage(e,{data:new t.R({width:r,height:s},new Uint8Array(f)),pixelRatio:i,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d,sdf:a,version:0,userImage:p}),p.onAdd&&p.onAdd(this,e),this}}{let{width:r,height:f,data:p}=s.getImageData(n);this.style.addImage(e,{data:new t.R({width:r,height:f},p),pixelRatio:i,stretchX:o,stretchY:c,content:l,textFitWidth:u,textFitHeight:d,sdf:a,version:0})}}updateImage(e,n){let r=this.style.getImage(e);if(!r)return this.fire(new t.k(Error("The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.")));let{width:i,height:a,data:o}=n instanceof HTMLImageElement||t.b(n)?s.getImageData(n):n;if(i===void 0||a===void 0)return this.fire(new t.k(Error("Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`")));if(i!==r.data.width||a!==r.data.height)return this.fire(new t.k(Error(`The width and height of the updated image must be that same as the previous version of the image`)));let c=!(n instanceof HTMLImageElement||t.b(n));return r.data.replace(o,c),this.style.updateImage(e,r),this}getImage(e){return this.style.getImage(e)}hasImage(e){return e?!!this.style.getImage(e):(this.fire(new t.k(Error(`Missing required image id`))),!1)}removeImage(e){this.style.removeImage(e)}loadImage(e){return t._(this,void 0,void 0,(function*(){return d.getImage(yield this._requestManager.transformRequest(e,`Image`),new AbortController)}))}listImages(){return this.style.listImages()}addLayer(e,t){return this._lazyInitEmptyStyle(),this.style.addLayer(e,t),this._update(!0)}moveLayer(e,t){return this.style.moveLayer(e,t),this._update(!0)}removeLayer(e){return this.style.removeLayer(e),this._update(!0)}getLayer(e){return this.style.getLayer(e)}getLayersOrder(){return this.style.getLayersOrder()}setLayerZoomRange(e,t,n){return this.style.setLayerZoomRange(e,t,n),this._update(!0)}setFilter(e,t,n={}){return this.style.setFilter(e,t,n),this._update(!0)}getFilter(e){return this.style.getFilter(e)}setPaintProperty(e,t,n,r={}){return this.style.setPaintProperty(e,t,n,r),this._update(!0)}getPaintProperty(e,t){return this.style.getPaintProperty(e,t)}setLayoutProperty(e,t,n,r={}){return this.style.setLayoutProperty(e,t,n,r),this._update(!0)}getLayoutProperty(e,t){return this.style.getLayoutProperty(e,t)}setGlyphs(e,t={}){return this._lazyInitEmptyStyle(),this.style.setGlyphs(e,t),this._update(!0)}getGlyphs(){return this.style.getGlyphsUrl()}addSprite(e,t,n={}){return this._lazyInitEmptyStyle(),this.style.addSprite(e,t,n,(e=>{e||this._update(!0)})),this}removeSprite(e){return this._lazyInitEmptyStyle(),this.style.removeSprite(e),this._update(!0)}getSprite(){return this.style.getSprite()}setSprite(e,t={}){return this._lazyInitEmptyStyle(),this.style.setSprite(e,t,(e=>{e||this._update(!0)})),this}setLight(e,t={}){return this._lazyInitEmptyStyle(),this.style.setLight(e,t),this._update(!0)}getLight(){return this.style.getLight()}setSky(e,t={}){return this._lazyInitEmptyStyle(),this.style.setSky(e,t),this._update(!0)}getSky(){return this.style.getSky()}setFeatureState(e,t){return this.style.setFeatureState(e,t),this._update()}removeFeatureState(e,t){return this.style.removeFeatureState(e,t),this._update()}getFeatureState(e){return this.style.getFeatureState(e)}getContainer(){return this._container}getCanvasContainer(){return this._canvasContainer}getCanvas(){return this._canvas}_containerDimensions(){let e=0,t=0;return this._container&&(e=this._container.clientWidth||400,t=this._container.clientHeight||300),[e,t]}_setupResizeObserver(){let e=!1,t=Gi((e=>{this._trackResize&&!this._removed&&(this.resize(e),this.redraw())}),50),n=this._ownerWindow.ResizeObserver??ResizeObserver;this._resizeObserver=new n((n=>{e?t(n):e=!0})),this._resizeObserver.observe(this._container)}_resolveContainer(e){if(typeof e==`string`){let t=document.getElementById(e);if(!t)throw Error(`Container '${e}' not found.`);return t}if(e instanceof HTMLElement||e&&typeof e==`object`&&e.nodeType===1)return e;throw Error(`Invalid type: 'container' must be a String or HTMLElement.`)}_setupContainer(){let e=this._container;e.classList.add(`maplibregl-map`);let t=this._canvasContainer=u.create(`div`,`maplibregl-canvas-container`,e);this._interactive&&t.classList.add(`maplibregl-interactive`),this._canvas=u.create(`canvas`,`maplibregl-canvas`,t),this._canvas.addEventListener(`webglcontextlost`,this._contextLost,!1),this._canvas.addEventListener(`webglcontextrestored`,this._contextRestored,!1),this._canvas.setAttribute(`tabindex`,this._interactive?`0`:`-1`),this._canvas.setAttribute(`aria-label`,this._getUIString(`Map.Title`)),this._canvas.setAttribute(`role`,`region`);let n=this._containerDimensions(),r=this._getClampedPixelRatio(n[0],n[1]);this._resizeCanvas(n[0],n[1],r);let i=this._controlContainer=u.create(`div`,`maplibregl-control-container`,e),a=this._controlPositions={};[`top-left`,`top-right`,`bottom-left`,`bottom-right`].forEach((e=>{a[e]=u.create(`div`,`maplibregl-ctrl-${e} `,i)})),this._container.addEventListener(`scroll`,this._onMapScroll,!1)}_resizeCanvas(e,t,n){this._canvas.width=Math.floor(n*e),this._canvas.height=Math.floor(n*t),this._canvas.style.width=`${e}px`,this._canvas.style.height=`${t}px`}_setupPainter(){let e=Object.assign(Object.assign({},this._canvasContextAttributes),{alpha:!0,depth:!0,stencil:!0,premultipliedAlpha:!0}),t=null;this._canvas.addEventListener(`webglcontextcreationerror`,(n=>{t={requestedAttributes:e},n&&(t.statusMessage=n.statusMessage,t.type=n.type)}),{once:!0});let n=null;if(n=this._canvasContextAttributes.contextType?this._canvas.getContext(this._canvasContextAttributes.contextType,e):this._canvas.getContext(`webgl2`,e)||this._canvas.getContext(`webgl`,e),!n){let e=`Failed to initialize WebGL`;throw t?(t.message=e,Error(JSON.stringify(t))):Error(e)}this.painter=new Wi(n,this.transform)}migrateProjection(e,n){super.migrateProjection(e,n),this.painter.transform=e,this.fire(new t.l(`projectiontransition`,{newProjection:this.style.projection.name}))}loaded(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()}_update(e){return this.style&&this.style._loaded?(this._styleDirty=this._styleDirty||e,this._sourcesDirty=!0,this.triggerRepaint(),this):this}_requestRenderFrame(e){return this._update(),this._renderTaskQueue.add(e)}_cancelRenderFrame(e){this._renderTaskQueue.remove(e)}_render(e){var n;let r=this._idleTriggered?this._fadeDuration:0,i=this.style.projection?.transitionState>0;if(this.painter.context.setDirty(),this.painter.setBaseState(),this._renderTaskQueue.run(e),this._removed)return;let a=!1;if(this.style&&this._styleDirty){this._styleDirty=!1;let e=this.transform.zoom,n=l();this.style.zoomHistory.update(e,n);let i=new t.H(e,{now:n,fadeDuration:r,zoomHistory:this.style.zoomHistory,transition:this.style.getTransition()}),o=i.crossFadingFactor();o===1&&o===this._crossFadingFactor||(a=!0,this._crossFadingFactor=o),this.style.update(i)}let o=this.style.projection?.transitionState>0!==i;(n=this.style.projection)==null||n.setErrorQueryLatitudeDegrees(this.transform.center.lat),this.transform.setTransitionState(this.style.projection?.transitionState,this.style.projection?.latitudeErrorCorrectionRadians),this.style&&(this._sourcesDirty||o)&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this.terrain?(this.terrain.tileManager.update(this.transform,this.terrain),this.transform.setMinElevationForCurrentTile(this.terrain.getMinTileElevationForLngLatZoom(this.transform.center,this.transform.tileZoom)),!this._elevationFreeze&&this._centerClampedToGround&&this.transform.setElevation(this.terrain.getElevationForLngLatZoom(this.transform.center,this.transform.tileZoom))):(this.transform.setMinElevationForCurrentTile(0),this._centerClampedToGround&&this.transform.setElevation(0)),this._placementDirty=this.style&&this.style._updatePlacement(this.transform,this.showCollisionBoxes,r,this._crossSourceCollisions,o),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:r,showPadding:this.showPadding,anisotropicFilterPitch:this.getAnisotropicFilterPitch()}),this.fire(new t.l(`render`)),this.loaded()&&!this._loaded&&(this._loaded=!0,t.cE.mark(t.cF.load),this.fire(new t.l(`load`))),this.style&&(this.style.hasTransitions()||a)&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles();let s=this._sourcesDirty||this._styleDirty||this._placementDirty;return s||this._repaint?this.triggerRepaint():!this.isMoving()&&this.loaded()&&this.fire(new t.l(`idle`)),!this._loaded||this._fullyLoaded||s||(this._fullyLoaded=!0,t.cE.mark(t.cF.fullLoad)),this}redraw(){return this.style&&(this._frameRequest&&=(this._frameRequest.abort(),null),this._render(0)),this}remove(){var e;this._hash&&this._hash.remove();for(let e of this._controls)e.onRemove(this);this._controls=[],this._frameRequest&&=(this._frameRequest.abort(),null),this._renderTaskQueue.clear(),this.painter.destroy(),this.handlers.destroy(),delete this.handlers,this.setStyle(null),typeof window<`u`&&this._ownerWindow.removeEventListener(`online`,this._onWindowOnline,!1),d.removeThrottleControl(this._imageQueueHandle),(e=this._resizeObserver)==null||e.disconnect();let n=this.painter.context.gl.getExtension(`WEBGL_lose_context`);n!=null&&n.loseContext&&n.loseContext(),this._canvas.removeEventListener(`webglcontextrestored`,this._contextRestored,!1),this._canvas.removeEventListener(`webglcontextlost`,this._contextLost,!1),this._canvasContainer.remove(),this._controlContainer.remove(),this._container.removeEventListener(`scroll`,this._onMapScroll,!1),this._container.classList.remove(`maplibregl-map`),t.cE.remove(),this._removed=!0,this.fire(new t.l(`remove`))}triggerRepaint(){this.style&&!this._frameRequest&&(this._frameRequest=new AbortController,s.frame(this._frameRequest,(e=>{t.cE.recordStartOfFrameAt(e),this._frameRequest=null;try{this._render(e)}catch(e){if(!t.Z(e)&&!function(e){return e.message===ii}(e))throw e}}),(()=>{}),this._ownerWindow))}get showTileBoundaries(){return!!this._showTileBoundaries}set showTileBoundaries(e){this._showTileBoundaries!==e&&(this._showTileBoundaries=e,this._update())}get showPadding(){return!!this._showPadding}set showPadding(e){this._showPadding!==e&&(this._showPadding=e,this._update())}get showCollisionBoxes(){return!!this._showCollisionBoxes}set showCollisionBoxes(e){this._showCollisionBoxes!==e&&(this._showCollisionBoxes=e,e?this.style._generateCollisionBoxes():this._update())}get showOverdrawInspector(){return!!this._showOverdrawInspector}set showOverdrawInspector(e){this._showOverdrawInspector!==e&&(this._showOverdrawInspector=e,this._update())}get repaint(){return!!this._repaint}set repaint(e){this._repaint!==e&&(this._repaint=e,this.triggerRepaint())}get vertices(){return!!this._vertices}set vertices(e){this._vertices=e,this._update()}get version(){return $a}getCameraTargetElevation(){return this.transform.elevation}getProjection(){return this.style.getProjection()}setProjection(e){return this._lazyInitEmptyStyle(),this.style.setProjection(e),this._update(!0)}},no={showCompass:!0,showZoom:!0,visualizePitch:!1,visualizeRoll:!0};class ro{constructor(e,n,r=!1){this.mousedown=e=>{this.startMove(e,u.mousePos(this.element,e)),window.addEventListener(`mousemove`,this.mousemove),window.addEventListener(`mouseup`,this.mouseup)},this.mousemove=e=>{this.move(e,u.mousePos(this.element,e))},this.mouseup=e=>{this._rotatePitchHandler.dragEnd(e),this.offTemp()},this.touchstart=e=>{e.targetTouches.length===1?(this._startPos=this._lastPos=u.touchPos(this.element,e.targetTouches)[0],this.startMove(e,this._startPos),window.addEventListener(`touchmove`,this.touchmove,{passive:!1}),window.addEventListener(`touchend`,this.touchend)):this.reset()},this.touchmove=e=>{e.targetTouches.length===1?(this._lastPos=u.touchPos(this.element,e.targetTouches)[0],this.move(e,this._lastPos)):this.reset()},this.touchend=e=>{e.targetTouches.length===0&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)<this._clickTolerance&&this.element.click(),delete this._startPos,delete this._lastPos,this.offTemp()},this.reset=()=>{this._rotatePitchHandler.reset(),delete this._startPos,delete this._lastPos,this.offTemp()},this._clickTolerance=10,this.element=n;let i=new ga;this._rotatePitchHandler=new X({clickTolerance:3,move:(e,i)=>{let a=n.getBoundingClientRect(),o=new t.P((a.bottom-a.top)/2,(a.right-a.left)/2);return{bearingDelta:t.cv(new t.P(e.x,i.y),i,o),pitchDelta:r?-.5*(i.y-e.y):void 0}},moveStateManager:i,enable:!0,assignEvents:()=>{}}),this.map=e,n.addEventListener(`mousedown`,this.mousedown),n.addEventListener(`touchstart`,this.touchstart,{passive:!1}),n.addEventListener(`touchcancel`,this.reset)}startMove(e,t){this._rotatePitchHandler.dragStart(e,t),u.disableDrag()}move(e,t){let n=this.map,{bearingDelta:r,pitchDelta:i}=this._rotatePitchHandler.dragMove(e,t)||{};r&&n.setBearing(n.getBearing()+r),i&&n.setPitch(n.getPitch()+i)}off(){let e=this.element;e.removeEventListener(`mousedown`,this.mousedown),e.removeEventListener(`touchstart`,this.touchstart),window.removeEventListener(`touchmove`,this.touchmove),window.removeEventListener(`touchend`,this.touchend),e.removeEventListener(`touchcancel`,this.reset),this.offTemp()}offTemp(){u.enableDrag(),window.removeEventListener(`mousemove`,this.mousemove),window.removeEventListener(`mouseup`,this.mouseup),window.removeEventListener(`touchmove`,this.touchmove),window.removeEventListener(`touchend`,this.touchend)}}let io;function ao(e,n,r,i=!1){if(i||!r.getCoveringTilesDetailsProvider().allowWorldCopies())return e?.wrap();let a=new t.V(e.lng,e.lat);if(e=new t.V(e.lng,e.lat),n){let i=new t.V(e.lng-360,e.lat),a=new t.V(e.lng+360,e.lat),o=r.locationToScreenPoint(e).distSqr(n);r.locationToScreenPoint(i).distSqr(n)<o?e=i:r.locationToScreenPoint(a).distSqr(n)<o&&(e=a)}for(;Math.abs(e.lng-r.center.lng)>180;){let t=r.locationToScreenPoint(e);if(t.x>=0&&t.y>=0&&t.x<=r.width&&t.y<=r.height)break;e.lng>r.center.lng?e.lng-=360:e.lng+=360}return e.lng!==a.lng&&r.isPointOnMapSurface(r.locationToScreenPoint(e))?e:a}let oo={center:`translate(-50%,-50%)`,top:`translate(-50%,0)`,"top-left":`translate(0,0)`,"top-right":`translate(-100%,0)`,bottom:`translate(-50%,-100%)`,"bottom-left":`translate(0,-100%)`,"bottom-right":`translate(-100%,-100%)`,left:`translate(0,-50%)`,right:`translate(-100%,-50%)`};function so(e,t,n){let r=e.classList;for(let e in oo)r.remove(`maplibregl-${n}-anchor-${e}`);r.add(`maplibregl-${n}-anchor-${t}`)}class co extends t.E{constructor(e){if(super(),this._onClick=e=>{this.fire(new t.l(`click`,{originalEvent:e}))},this._onKeyPress=e=>{e.code!==`Space`&&e.code!==`Enter`||this.togglePopup()},this._onMapClick=e=>{let t=e.originalEvent.target,n=this._element;this._popup&&(t===n||n.contains(t))&&this.togglePopup()},this._update=e=>{if(!this._map)return;let t=this._map.loaded()&&!this._map.isMoving();(e?.type===`terrain`||e?.type===`render`&&!t)&&this._map.once(`render`,this._update),this._lngLat=ao(this._lngLat,this._flatPos,this._map.transform),this._flatPos=this._pos=this._map.project(this._lngLat)._add(this._offset),this._map.terrain&&(this._flatPos=this._map.transform.locationToScreenPoint(this._lngLat)._add(this._offset));let n=``;this._rotationAlignment===`viewport`||this._rotationAlignment===`auto`?n=`rotateZ(${this._rotation}deg)`:this._rotationAlignment===`map`&&(n=`rotateZ(${this._rotation-this._map.getBearing()}deg)`);let r=``;this._pitchAlignment===`viewport`||this._pitchAlignment===`auto`?r=`rotateX(0deg)`:this._pitchAlignment===`map`&&(r=`rotateX(${this._map.getPitch()}deg)`),this._subpixelPositioning||e&&e.type!==`moveend`||(this._pos=this._pos.round()),this._element.style.transform=`${oo[this._anchor]} translate(${this._pos.x}px, ${this._pos.y}px) ${r} ${n}`,s.frameAsync(new AbortController,this._map._ownerWindow).then((()=>{this._updateOpacity(e&&e.type===`moveend`)})).catch((()=>{}))},this._onMove=e=>{if(!this._isDragging){let t=this._clickTolerance||this._map._clickTolerance;this._isDragging=e.point.dist(this._pointerdownPos)>=t}this._isDragging&&(this._pos=e.point.sub(this._positionDelta),this._lngLat=this._map.unproject(this._pos),this.setLngLat(this._lngLat),this._element.style.pointerEvents=`none`,this._state===`pending`&&(this._state=`active`,this.fire(new t.l(`dragstart`))),this.fire(new t.l(`drag`)))},this._onUp=()=>{this._element.style.pointerEvents=`auto`,this._positionDelta=null,this._pointerdownPos=null,this._isDragging=!1,this._map.off(`mousemove`,this._onMove),this._map.off(`touchmove`,this._onMove),this._state===`active`&&this.fire(new t.l(`dragend`)),this._state=`inactive`},this._addDragHandler=e=>{this._element.contains(e.originalEvent.target)&&(e.preventDefault(),this._positionDelta=e.point.sub(this._pos).add(this._offset),this._pointerdownPos=e.point,this._state=`pending`,this._map.on(`mousemove`,this._onMove),this._map.on(`touchmove`,this._onMove),this._map.once(`mouseup`,this._onUp),this._map.once(`touchend`,this._onUp))},this._anchor=e&&e.anchor||`center`,this._color=e&&e.color||`#3FB1CE`,this._scale=e&&e.scale||1,this._draggable=e&&e.draggable||!1,this._clickTolerance=e&&e.clickTolerance||0,this._subpixelPositioning=e&&e.subpixelPositioning||!1,this._isDragging=!1,this._state=`inactive`,this._rotation=e&&e.rotation||0,this._rotationAlignment=e&&e.rotationAlignment||`auto`,this._pitchAlignment=e&&e.pitchAlignment&&e.pitchAlignment!==`auto`?e.pitchAlignment:this._rotationAlignment,this.setOpacity(e?.opacity,e?.opacityWhenCovered),e&&e.element)this._element=e.element,this._offset=t.P.convert(e&&e.offset||[0,0]);else{this._defaultMarker=!0,this._element=u.create(`div`);let n=u.createNS(`http://www.w3.org/2000/svg`,`svg`);n.setAttributeNS(null,`display`,`block`),n.setAttributeNS(null,`height`,`41px`),n.setAttributeNS(null,`width`,`27px`),n.setAttributeNS(null,`viewBox`,`0 0 27 41`);let r=u.createNS(`http://www.w3.org/2000/svg`,`g`);r.setAttributeNS(null,`stroke`,`none`),r.setAttributeNS(null,`stroke-width`,`1`),r.setAttributeNS(null,`fill`,`none`),r.setAttributeNS(null,`fill-rule`,`evenodd`);let i=u.createNS(`http://www.w3.org/2000/svg`,`g`);i.setAttributeNS(null,`fill-rule`,`nonzero`);let a=u.createNS(`http://www.w3.org/2000/svg`,`g`);a.setAttributeNS(null,`transform`,`translate(3.0, 29.0)`),a.setAttributeNS(null,`fill`,`#000000`);for(let e of[{rx:`10.5`,ry:`5.25002273`},{rx:`10.5`,ry:`5.25002273`},{rx:`9.5`,ry:`4.77275007`},{rx:`8.5`,ry:`4.29549936`},{rx:`7.5`,ry:`3.81822308`},{rx:`6.5`,ry:`3.34094679`},{rx:`5.5`,ry:`2.86367051`},{rx:`4.5`,ry:`2.38636864`}]){let t=u.createNS(`http://www.w3.org/2000/svg`,`ellipse`);t.setAttributeNS(null,`opacity`,`0.04`),t.setAttributeNS(null,`cx`,`10.5`),t.setAttributeNS(null,`cy`,`5.80029008`),t.setAttributeNS(null,`rx`,e.rx),t.setAttributeNS(null,`ry`,e.ry),a.appendChild(t)}let o=u.createNS(`http://www.w3.org/2000/svg`,`g`);o.setAttributeNS(null,`fill`,this._color);let s=u.createNS(`http://www.w3.org/2000/svg`,`path`);s.setAttributeNS(null,`d`,`M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z`),o.appendChild(s);let c=u.createNS(`http://www.w3.org/2000/svg`,`g`);c.setAttributeNS(null,`opacity`,`0.25`),c.setAttributeNS(null,`fill`,`#000000`);let l=u.createNS(`http://www.w3.org/2000/svg`,`path`);l.setAttributeNS(null,`d`,`M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z`),c.appendChild(l);let d=u.createNS(`http://www.w3.org/2000/svg`,`g`);d.setAttributeNS(null,`transform`,`translate(6.0, 7.0)`),d.setAttributeNS(null,`fill`,`#FFFFFF`);let f=u.createNS(`http://www.w3.org/2000/svg`,`g`);f.setAttributeNS(null,`transform`,`translate(8.0, 8.0)`);let p=u.createNS(`http://www.w3.org/2000/svg`,`circle`);p.setAttributeNS(null,`fill`,`#000000`),p.setAttributeNS(null,`opacity`,`0.25`),p.setAttributeNS(null,`cx`,`5.5`),p.setAttributeNS(null,`cy`,`5.5`),p.setAttributeNS(null,`r`,`5.4999962`);let m=u.createNS(`http://www.w3.org/2000/svg`,`circle`);m.setAttributeNS(null,`fill`,`#FFFFFF`),m.setAttributeNS(null,`cx`,`5.5`),m.setAttributeNS(null,`cy`,`5.5`),m.setAttributeNS(null,`r`,`5.4999962`),f.appendChild(p),f.appendChild(m),i.appendChild(a),i.appendChild(o),i.appendChild(c),i.appendChild(d),i.appendChild(f),n.appendChild(i),n.setAttributeNS(null,`height`,41*this._scale+`px`),n.setAttributeNS(null,`width`,27*this._scale+`px`),this._element.appendChild(n),this._offset=t.P.convert(e&&e.offset||[0,-14])}if(this._element.classList.add(`maplibregl-marker`),this._element.addEventListener(`dragstart`,(e=>{e.preventDefault()})),this._element.addEventListener(`mousedown`,(e=>{e.preventDefault()})),so(this._element,this._anchor,`marker`),e&&e.className)for(let t of e.className.split(` `))this._element.classList.add(t);this._popup=null}addTo(e){return this.remove(),this._map=e,this._element.hasAttribute(`aria-label`)||this._element.setAttribute(`aria-label`,e._getUIString(`Marker.Title`)),this._element.hasAttribute(`role`)||this._element.setAttribute(`role`,`button`),e.getCanvasContainer().appendChild(this._element),e.on(`move`,this._update),e.on(`moveend`,this._update),e.on(`terrain`,this._update),e.on(`projectiontransition`,this._update),this._element.addEventListener(`click`,this._onClick),this.setDraggable(this._draggable),this._update(),this._map.on(`click`,this._onMapClick),this}remove(){return this._opacityTimeout&&(clearTimeout(this._opacityTimeout),delete this._opacityTimeout),this._map&&(this._map.off(`click`,this._onMapClick),this._map.off(`move`,this._update),this._map.off(`moveend`,this._update),this._map.off(`terrain`,this._update),this._map.off(`projectiontransition`,this._update),this._map.off(`mousedown`,this._addDragHandler),this._map.off(`touchstart`,this._addDragHandler),this._map.off(`mouseup`,this._onUp),this._map.off(`touchend`,this._onUp),this._map.off(`mousemove`,this._onMove),this._map.off(`touchmove`,this._onMove),delete this._map),this._element.removeEventListener(`click`,this._onClick),this._element.remove(),this._popup&&this._popup.remove(),this}getLngLat(){return this._lngLat}setLngLat(e){return this._lngLat=t.V.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this}getElement(){return this._element}setPopup(e){if(this._popup&&(this._popup.remove(),this._popup=null,this._element.removeEventListener(`keypress`,this._onKeyPress),this._originalTabIndex||this._element.removeAttribute(`tabindex`)),e){if(!(`offset`in e.options)){let t=38.1,n=13.5,r=13.5/Math.SQRT2;e.options.offset=this._defaultMarker?{top:[0,0],"top-left":[0,0],"top-right":[0,0],bottom:[0,-t],"bottom-left":[r,-1*(t-n+r)],"bottom-right":[-r,-1*(t-n+r)],left:[n,-1*(t-n)],right:[-n,-1*(t-n)]}:this._offset}this._popup=e,this._originalTabIndex=this._element.getAttribute(`tabindex`),this._originalTabIndex||this._element.setAttribute(`tabindex`,`0`),this._element.addEventListener(`keypress`,this._onKeyPress)}return this}setSubpixelPositioning(e){return this._subpixelPositioning=e,this}getPopup(){return this._popup}togglePopup(){let e=this._popup;return this._element.style.opacity===this._opacityWhenCovered||e&&(e.isOpen()?e.remove():(e.setLngLat(this._lngLat),e.addTo(this._map))),this}_updateOpacity(e=!1){var n;let r=this._map?.terrain,i=this._map.transform.isLocationOccluded(this._lngLat);if(!r||i){let e=i?this._opacityWhenCovered:this._opacity;this._element.style.opacity!==e&&(this._element.style.opacity=e);return}if(e)this._opacityTimeout=null;else{if(this._opacityTimeout)return;this._opacityTimeout=setTimeout((()=>{this._opacityTimeout=null}),100)}let a=this._map,o=a.terrain.depthAtPoint(this._pos),s=a.terrain.getElevationForLngLat(this._lngLat,a.transform);if(a.transform.lngLatToCameraDepth(this._lngLat,s)-o<.006)return void(this._element.style.opacity=this._opacity);let c=-this._offset.y/a.transform.pixelsPerMeter,l=Math.sin(a.getPitch()*Math.PI/180)*c,u=a.terrain.depthAtPoint(new t.P(this._pos.x,this._pos.y-this._offset.y)),d=a.transform.lngLatToCameraDepth(this._lngLat,s+l)-u>.006;(n=this._popup)!=null&&n.isOpen()&&d&&this._popup.remove(),this._element.style.opacity=d?this._opacityWhenCovered:this._opacity}getOffset(){return this._offset}setOffset(e){return this._offset=t.P.convert(e),this._update(),this}addClassName(e){this._element.classList.add(e)}removeClassName(e){this._element.classList.remove(e)}toggleClassName(e){return this._element.classList.toggle(e)}setDraggable(e){return this._draggable=!!e,this._map&&(e?(this._map.on(`mousedown`,this._addDragHandler),this._map.on(`touchstart`,this._addDragHandler)):(this._map.off(`mousedown`,this._addDragHandler),this._map.off(`touchstart`,this._addDragHandler))),this}isDraggable(){return this._draggable}setRotation(e){return this._rotation=e||0,this._update(),this}getRotation(){return this._rotation}setRotationAlignment(e){return this._rotationAlignment=e||`auto`,this._update(),this}getRotationAlignment(){return this._rotationAlignment}setPitchAlignment(e){return this._pitchAlignment=e&&e!==`auto`?e:this._rotationAlignment,this._update(),this}getPitchAlignment(){return this._pitchAlignment}setOpacity(e,t){return(this._opacity===void 0||e===void 0&&t===void 0)&&(this._opacity=`1`,this._opacityWhenCovered=`0.2`),e!==void 0&&(this._opacity=e),t!==void 0&&(this._opacityWhenCovered=t),this._map&&this._updateOpacity(!0),this}}let lo={positionOptions:{enableHighAccuracy:!1,maximumAge:0,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showAccuracyCircle:!0,showUserLocation:!0},uo=0,fo=!1,po={maxWidth:100,unit:`metric`};function mo(e,t,n){let r=n&&n.maxWidth||100,i=e._container.clientHeight/2,a=e._container.clientWidth/2,o=e.unproject([a-r/2,i]),s=e.unproject([a+r/2,i]),c=Math.round(e.project(s).x-e.project(o).x),l=Math.min(r,c,e._container.clientWidth),u=o.distanceTo(s);if(n&&n.unit===`imperial`){let n=3.2808*u;n>5280?ho(t,l,n/5280,e._getUIString(`ScaleControl.Miles`)):ho(t,l,n,e._getUIString(`ScaleControl.Feet`))}else n&&n.unit===`nautical`?ho(t,l,u/1852,e._getUIString(`ScaleControl.NauticalMiles`)):u>=1e3?ho(t,l,u/1e3,e._getUIString(`ScaleControl.Kilometers`)):ho(t,l,u,e._getUIString(`ScaleControl.Meters`))}function ho(e,t,n,r){let i=function(e){let t=10**(`${Math.floor(e)}`.length-1),n=e/t;return n=n>=10?10:n>=5?5:n>=3?3:n>=2?2:n>=1?1:function(e){let t=10**Math.ceil(-Math.log(e)/Math.LN10);return Math.round(e*t)/t}(n),t*n}(n);e.style.width=i/n*t+`px`,e.innerHTML=`${i}&nbsp;${r}`}let go={closeButton:!0,closeOnClick:!0,focusAfterOpen:!0,className:``,maxWidth:`240px`,subpixelPositioning:!1,locationOccludedOpacity:void 0,padding:void 0},_o=[`a[href]`,`[tabindex]:not([tabindex='-1'])`,`[contenteditable]:not([contenteditable='false'])`,`button:not([disabled])`,`input:not([disabled])`,`select:not([disabled])`,`textarea:not([disabled])`].join(`, `);function vo(e){if(e){if(typeof e==`number`){let n=Math.round(Math.abs(e)/Math.SQRT2);return{center:new t.P(0,0),top:new t.P(0,e),"top-left":new t.P(n,n),"top-right":new t.P(-n,n),bottom:new t.P(0,-e),"bottom-left":new t.P(n,-n),"bottom-right":new t.P(-n,-n),left:new t.P(e,0),right:new t.P(-e,0)}}if(e instanceof t.P||Array.isArray(e)){let n=t.P.convert(e);return{center:n,top:n,"top-left":n,"top-right":n,bottom:n,"bottom-left":n,"bottom-right":n,left:n,right:n}}return{center:t.P.convert(e.center||[0,0]),top:t.P.convert(e.top||[0,0]),"top-left":t.P.convert(e[`top-left`]||[0,0]),"top-right":t.P.convert(e[`top-right`]||[0,0]),bottom:t.P.convert(e.bottom||[0,0]),"bottom-left":t.P.convert(e[`bottom-left`]||[0,0]),"bottom-right":t.P.convert(e[`bottom-right`]||[0,0]),left:t.P.convert(e.left||[0,0]),right:t.P.convert(e.right||[0,0])}}return vo(new t.P(0,0))}let yo=n;e.AJAXError=t.cG,e.EXTENT=t.a5,e.Event=t.l,e.Evented=t.E,e.LngLat=t.V,e.MercatorCoordinate=t.a6,e.Point=t.P,e.addProtocol=t.cH,e.config=t.c,e.removeProtocol=t.cI,e.AttributionControl=Q,e.BoxZoomHandler=ca,e.CanvasSource=xe,e.CooperativeGesturesHandler=Ra,e.DoubleClickZoomHandler=Ma,e.DragPanHandler=Fa,e.DragRotateHandler=Ia,e.EdgeInsets=Ht,e.FullscreenControl=class extends t.E{constructor(e={}){var n;super(),this._onFullscreenChange=()=>{let e=window.document.fullscreenElement||window.document.webkitFullscreenElement;for(;e?.shadowRoot?.fullscreenElement;)e=e.shadowRoot.fullscreenElement;e===this._container!==this._fullscreen&&this._handleFullscreenChange()},this._onClickFullscreen=()=>{this._isFullscreen()?this._exitFullscreen():this._requestFullscreen()},this._fullscreen=!1,this._pseudo=(n=e.pseudo)!=null&&n,e&&e.container&&(e.container instanceof HTMLElement?this._container=e.container:t.w(`Full screen control 'container' must be a DOM element.`)),`onfullscreenchange`in document?this._fullscreenchange=`fullscreenchange`:`onmozfullscreenchange`in document?this._fullscreenchange=`mozfullscreenchange`:`onwebkitfullscreenchange`in document?this._fullscreenchange=`webkitfullscreenchange`:`onmsfullscreenchange`in document&&(this._fullscreenchange=`MSFullscreenChange`)}onAdd(e){return this._map=e,this._container||=this._map.getContainer(),this._controlContainer=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._setupUI(),this._controlContainer}onRemove(){this._controlContainer.remove(),this._map=null,window.document.removeEventListener(this._fullscreenchange,this._onFullscreenChange)}_setupUI(){let e=this._fullscreenButton=u.create(`button`,`maplibregl-ctrl-fullscreen`,this._controlContainer);u.create(`span`,`maplibregl-ctrl-icon`,e).setAttribute(`aria-hidden`,`true`),e.type=`button`,this._updateTitle(),this._fullscreenButton.addEventListener(`click`,this._onClickFullscreen),window.document.addEventListener(this._fullscreenchange,this._onFullscreenChange)}_updateTitle(){let e=this._getTitle();this._fullscreenButton.setAttribute(`aria-label`,e),this._fullscreenButton.title=e}_getTitle(){return this._map._getUIString(this._isFullscreen()?`FullscreenControl.Exit`:`FullscreenControl.Enter`)}_isFullscreen(){return this._fullscreen}_handleFullscreenChange(){this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(`maplibregl-ctrl-shrink`),this._fullscreenButton.classList.toggle(`maplibregl-ctrl-fullscreen`),this._updateTitle(),this._fullscreen?(this.fire(new t.l(`fullscreenstart`)),this._prevCooperativeGesturesEnabled=this._map.cooperativeGestures.isEnabled(),this._map.cooperativeGestures.disable()):(this.fire(new t.l(`fullscreenend`)),this._prevCooperativeGesturesEnabled&&this._map.cooperativeGestures.enable())}_exitFullscreen(){this._pseudo?this._togglePseudoFullScreen():window.document.exitFullscreen?window.document.exitFullscreen():window.document.webkitCancelFullScreen?window.document.webkitCancelFullScreen():this._togglePseudoFullScreen()}_requestFullscreen(){this._pseudo?this._togglePseudoFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.webkitRequestFullscreen?this._container.webkitRequestFullscreen():this._togglePseudoFullScreen()}_togglePseudoFullScreen(){this._container.classList.toggle(`maplibregl-pseudo-fullscreen`),this._handleFullscreenChange(),this._map.resize()}},e.GeoJSONSource=ve,e.GeolocateControl=class extends t.E{constructor(e){super(),this._onSuccess=e=>{if(this._map){if(this._isOutOfMapMaxBounds(e))return this._setErrorState(),this.fire(new t.l(`outofmaxbounds`,e)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case`WAITING_ACTIVE`:case`ACTIVE_LOCK`:case`ACTIVE_ERROR`:this._watchState=`ACTIVE_LOCK`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`BACKGROUND`:case`BACKGROUND_ERROR`:this._watchState=`BACKGROUND`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background`);break;default:throw Error(`Unexpected watchState ${this._watchState}`)}this.options.showUserLocation&&this._watchState!==`OFF`&&this._updateMarker(e),this.options.trackUserLocation&&this._watchState!==`ACTIVE_LOCK`||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove(`maplibregl-user-location-dot-stale`),this.fire(new t.l(`geolocate`,e)),this._finish()}},this._updateCamera=e=>{let n=new t.V(e.coords.longitude,e.coords.latitude),r=e.coords.accuracy,i=this._map.getBearing(),a=t.e({bearing:i},this.options.fitBoundsOptions),o=N.fromLngLat(n,r);this._map.fitBounds(o,a,{geolocateSource:!0})},this._updateMarker=e=>{if(e){let n=new t.V(e.coords.longitude,e.coords.latitude);this._accuracyCircleMarker.setLngLat(n).addTo(this._map),this._userLocationDotMarker.setLngLat(n).addTo(this._map),this._accuracy=e.coords.accuracy,this._updateCircleRadiusIfNeeded()}else this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove()},this._onUpdate=()=>{this._updateCircleRadiusIfNeeded()},this._onError=e=>{if(this._map){if(e.code===1){this._watchState=`OFF`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.disabled=!0;let e=this._map._getUIString(`GeolocateControl.LocationNotAvailable`);this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e),this._geolocationWatchID!==void 0&&this._clearWatch()}else{if(e.code===3&&fo)return;this._setErrorState()}this._watchState!==`OFF`&&this.options.showUserLocation&&this._dotElement.classList.add(`maplibregl-user-location-dot-stale`),this.fire(new t.l(`error`,e)),this._finish()}},this._finish=()=>{this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},this._onMoveStart=e=>{if(!this._map)return;let n=e?.[0]instanceof ResizeObserverEntry;e.geolocateSource||this._watchState!==`ACTIVE_LOCK`||n||this._map.isZooming()||(this._watchState=`BACKGROUND`,this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this.fire(new t.l(`trackuserlocationend`)),this.fire(new t.l(`userlocationlostfocus`)))},this._setupUI=()=>{this._map&&(this._container.addEventListener(`contextmenu`,(e=>e.preventDefault())),this._geolocateButton=u.create(`button`,`maplibregl-ctrl-geolocate`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._geolocateButton).setAttribute(`aria-hidden`,`true`),this._geolocateButton.type=`button`,this._geolocateButton.disabled=!0)},this._finishSetupUI=e=>{if(this._map){if(!1===e){t.w(`Geolocation support is not available so the GeolocateControl will be disabled.`);let e=this._map._getUIString(`GeolocateControl.LocationNotAvailable`);this._geolocateButton.disabled=!0,this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e)}else{let e=this._map._getUIString(`GeolocateControl.FindMyLocation`);this._geolocateButton.disabled=!1,this._geolocateButton.title=e,this._geolocateButton.setAttribute(`aria-label`,e)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute(`aria-pressed`,`false`),this._watchState=`OFF`),this.options.showUserLocation&&(this._dotElement=u.create(`div`,`maplibregl-user-location-dot`),this._userLocationDotMarker=new co({element:this._dotElement}),this._circleElement=u.create(`div`,`maplibregl-user-location-accuracy-circle`),this._accuracyCircleMarker=new co({element:this._circleElement,pitchAlignment:`map`}),this.options.trackUserLocation&&(this._watchState=`OFF`),this._map.on(`zoom`,this._onUpdate),this._map.on(`move`,this._onUpdate),this._map.on(`rotate`,this._onUpdate),this._map.on(`pitch`,this._onUpdate)),this._geolocateButton.addEventListener(`click`,(()=>this.trigger())),this._setup=!0,this.options.trackUserLocation&&this._map.on(`movestart`,this._onMoveStart)}},this.options=t.e({},lo,e)}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._setupUI(),function(){return t._(this,arguments,void 0,(function*(e=!1){if(io!==void 0&&!e)return io;if(window.navigator.permissions===void 0)return io=!!window.navigator.geolocation,io;try{io=(yield window.navigator.permissions.query({name:`geolocation`})).state!==`denied`}catch{io=!!window.navigator.geolocation}return io}))}().then((e=>this._finishSetupUI(e))),this._container}onRemove(){this._geolocationWatchID!==void 0&&(window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),this.options.showAccuracyCircle&&this._accuracyCircleMarker&&this._accuracyCircleMarker.remove(),this._container.remove(),this._map.off(`movestart`,this._onMoveStart),this._map.off(`zoom`,this._onUpdate),this._map.off(`move`,this._onUpdate),this._map.off(`rotate`,this._onUpdate),this._map.off(`pitch`,this._onUpdate),this._map=void 0,uo=0,fo=!1}_isOutOfMapMaxBounds(e){let t=this._map.getMaxBounds(),n=e.coords;return t&&(n.longitude<t.getWest()||n.longitude>t.getEast()||n.latitude<t.getSouth()||n.latitude>t.getNorth())}_setErrorState(){switch(this._watchState){case`WAITING_ACTIVE`:this._watchState=`ACTIVE_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active-error`);break;case`ACTIVE_LOCK`:this._watchState=`ACTIVE_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`);break;case`BACKGROUND`:this._watchState=`BACKGROUND_ERROR`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-background-error`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`);break;case`ACTIVE_ERROR`:case`BACKGROUND_ERROR`:case`OFF`:case void 0:break;default:throw Error(`Unexpected watchState ${this._watchState}`)}}_updateCircleRadiusIfNeeded(){let e=this._userLocationDotMarker.getLngLat();if(!(this.options.showUserLocation&&this.options.showAccuracyCircle&&this._accuracy&&e))return;let t=this._map.project(e),n=this._map.unproject([t.x+100,t.y]),r=e.distanceTo(n)/100,i=2*this._accuracy/r;this._circleElement.style.width=`${i.toFixed(2)}px`,this._circleElement.style.height=`${i.toFixed(2)}px`}trigger(){if(!this._setup)return t.w(`Geolocate control triggered before added to a map`),!1;if(this.options.trackUserLocation){switch(this._watchState){case`OFF`:this._watchState=`WAITING_ACTIVE`,this.fire(new t.l(`trackuserlocationstart`));break;case`WAITING_ACTIVE`:case`ACTIVE_LOCK`:case`ACTIVE_ERROR`:case`BACKGROUND_ERROR`:uo--,fo=!1,this._watchState=`OFF`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-active-error`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background-error`),this.fire(new t.l(`trackuserlocationend`));break;case`BACKGROUND`:this._watchState=`ACTIVE_LOCK`,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-background`),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.l(`trackuserlocationstart`)),this.fire(new t.l(`userlocationfocus`));break;default:throw Error(`Unexpected watchState ${this._watchState}`)}switch(this._watchState){case`WAITING_ACTIVE`:this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`ACTIVE_LOCK`:this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-active`);break;case`OFF`:break;default:throw Error(`Unexpected watchState ${this._watchState}`)}if(this._watchState===`OFF`&&this._geolocationWatchID!==void 0)this._clearWatch();else if(this._geolocationWatchID===void 0){let e;this._geolocateButton.classList.add(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.setAttribute(`aria-pressed`,`true`),uo++,uo>1?(e={maximumAge:6e5,timeout:0},fo=!0):(e=this.options.positionOptions,fo=!1),this._geolocationWatchID=window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,e)}}else window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0}_clearWatch(){window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove(`maplibregl-ctrl-geolocate-waiting`),this._geolocateButton.setAttribute(`aria-pressed`,`false`),this.options.showUserLocation&&this._updateMarker(null)}},e.GlobeControl=class{constructor(){this._toggleProjection=()=>{let e=this._map.getProjection()?.type;this._map.setProjection(e!==`mercator`&&e?{type:`mercator`}:{type:`globe`}),this._updateGlobeIcon()},this._updateGlobeIcon=()=>{this._globeButton.classList.remove(`maplibregl-ctrl-globe`),this._globeButton.classList.remove(`maplibregl-ctrl-globe-enabled`),this._map.getProjection()?.type===`globe`?(this._globeButton.classList.add(`maplibregl-ctrl-globe-enabled`),this._globeButton.title=this._map._getUIString(`GlobeControl.Disable`)):(this._globeButton.classList.add(`maplibregl-ctrl-globe`),this._globeButton.title=this._map._getUIString(`GlobeControl.Enable`))}}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._globeButton=u.create(`button`,`maplibregl-ctrl-globe`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._globeButton).setAttribute(`aria-hidden`,`true`),this._globeButton.type=`button`,this._globeButton.addEventListener(`click`,this._toggleProjection),this._updateGlobeIcon(),this._map.on(`styledata`,this._updateGlobeIcon),this._map.on(`projectiontransition`,this._updateGlobeIcon),this._container}onRemove(){this._container.remove(),this._map.off(`styledata`,this._updateGlobeIcon),this._map.off(`projectiontransition`,this._updateGlobeIcon),this._globeButton.removeEventListener(`click`,this._toggleProjection),this._map=void 0}},e.Hash=Ki,e.ImageSource=ye,e.KeyboardHandler=Oa,e.LngLatBounds=N,e.LogoControl=Wa,e.Map=to,e.MapLibreMap=to,e.MapMouseEvent=na,e.MapTouchEvent=ra,e.MapWheelEvent=ia,e.Marker=co,e.NavigationControl=class{constructor(e){this._updateZoomButtons=()=>{let e=this._map.getZoom(),t=e===this._map.getMaxZoom(),n=e===this._map.getMinZoom();this._zoomInButton.disabled=t,this._zoomOutButton.disabled=n,this._zoomInButton.setAttribute(`aria-disabled`,t.toString()),this._zoomOutButton.setAttribute(`aria-disabled`,n.toString())},this._rotateCompassArrow=()=>{this._compassIcon.style.transform=this.options.visualizePitch&&this.options.visualizeRoll?`scale(${1/Math.cos(this._map.transform.pitchInRadians)**.5}) rotateZ(${-this._map.transform.roll}deg) rotateX(${this._map.transform.pitch}deg) rotateZ(${-this._map.transform.bearing}deg)`:this.options.visualizePitch?`scale(${1/Math.cos(this._map.transform.pitchInRadians)**.5}) rotateX(${this._map.transform.pitch}deg) rotateZ(${-this._map.transform.bearing}deg)`:this.options.visualizeRoll?`rotate(${-this._map.transform.bearing-this._map.transform.roll}deg)`:`rotate(${-this._map.transform.bearing}deg)`},this._setButtonTitle=(e,t)=>{let n=this._map._getUIString(`NavigationControl.${t}`);e.title=n,e.setAttribute(`aria-label`,n)},this.options=t.e({},no,e),this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._container.addEventListener(`contextmenu`,(e=>e.preventDefault())),this.options.showZoom&&(this._zoomInButton=this._createButton(`maplibregl-ctrl-zoom-in`,(e=>this._map.zoomIn({},{originalEvent:e}))),u.create(`span`,`maplibregl-ctrl-icon`,this._zoomInButton).setAttribute(`aria-hidden`,`true`),this._zoomOutButton=this._createButton(`maplibregl-ctrl-zoom-out`,(e=>this._map.zoomOut({},{originalEvent:e}))),u.create(`span`,`maplibregl-ctrl-icon`,this._zoomOutButton).setAttribute(`aria-hidden`,`true`)),this.options.showCompass&&(this._compass=this._createButton(`maplibregl-ctrl-compass`,(e=>{this.options.visualizePitch?this._map.resetNorthPitch({},{originalEvent:e}):this._map.resetNorth({},{originalEvent:e})})),this._compassIcon=u.create(`span`,`maplibregl-ctrl-icon`,this._compass),this._compassIcon.setAttribute(`aria-hidden`,`true`))}onAdd(e){return this._map=e,this.options.showZoom&&(this._setButtonTitle(this._zoomInButton,`ZoomIn`),this._setButtonTitle(this._zoomOutButton,`ZoomOut`),this._map.on(`zoom`,this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this._setButtonTitle(this._compass,`ResetBearing`),this.options.visualizePitch&&this._map.on(`pitch`,this._rotateCompassArrow),this.options.visualizeRoll&&this._map.on(`roll`,this._rotateCompassArrow),this._map.on(`rotate`,this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new ro(this._map,this._compass,this.options.visualizePitch)),this._container}onRemove(){this._container.remove(),this.options.showZoom&&this._map.off(`zoom`,this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&this._map.off(`pitch`,this._rotateCompassArrow),this.options.visualizeRoll&&this._map.off(`roll`,this._rotateCompassArrow),this._map.off(`rotate`,this._rotateCompassArrow),this._handler.off(),delete this._handler),delete this._map}_createButton(e,t){let n=u.create(`button`,e,this._container);return n.type=`button`,n.addEventListener(`click`,t),n}},e.Popup=class extends t.E{constructor(e){super(),this._updateOpacity=()=>{this.options.locationOccludedOpacity!==void 0&&(this._container.style.opacity=this._map.transform.isLocationOccluded(this.getLngLat())?`${this.options.locationOccludedOpacity}`:``)},this.remove=()=>(this._content&&this._content.remove(),this._container&&(this._container.remove(),delete this._container),this._map&&(this._map.off(`move`,this._update),this._map.off(`move`,this._onClose),this._map.off(`click`,this._onClose),this._map.off(`remove`,this.remove),this._map.off(`mousemove`,this._update),this._map.off(`mouseup`,this._update),this._map.off(`drag`,this._update),this._map._canvasContainer.classList.remove(`maplibregl-track-pointer`),delete this._map,this.fire(new t.l(`close`))),this),this._update=e=>{if(!this._map||!this._lngLat&&!this._trackPointer||!this._content)return;if(!this._container){if(this._container=u.create(`div`,`maplibregl-popup`,this._map.getContainer()),this._tip=u.create(`div`,`maplibregl-popup-tip`,this._container),this._container.appendChild(this._content),this.options.className)for(let e of this.options.className.split(` `))this._container.classList.add(e);this._closeButton&&this._closeButton.setAttribute(`aria-label`,this._map._getUIString(`Popup.Close`)),this._trackPointer&&this._container.classList.add(`maplibregl-popup-track-pointer`)}let t;if(this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._lngLat=ao(this._lngLat,this._flatPos,this._map.transform,this._trackPointer),e&&`point`in e&&e.point&&(t=e.point),this._trackPointer&&!t)return;let n=this._flatPos=this._pos=this._trackPointer&&t?t:this._map.project(this._lngLat);this._map.terrain&&(this._flatPos=this._trackPointer&&t?t:this._map.transform.locationToScreenPoint(this._lngLat));let r=this.options.anchor,i=vo(this.options.offset);if(!r){let e=this._container.offsetWidth,t=this._container.offsetHeight,a=function(e){return e?{top:e.top??0,right:e.right??0,bottom:e.bottom??0,left:e.left??0}:{top:0,right:0,bottom:0,left:0}}(this.options.padding),o;o=n.y+i.bottom.y<t+a.top?[`top`]:n.y>this._map.transform.height-t-a.bottom?[`bottom`]:[],n.x<e/2+a.left?o.push(`left`):n.x>this._map.transform.width-e/2-a.right&&o.push(`right`),r=o.length===0?`bottom`:o.join(`-`)}let a=n.add(i[r]);this.options.subpixelPositioning||(a=a.round()),this._container.style.transform=`${oo[r]} translate(${a.x}px,${a.y}px)`,so(this._container,r,`popup`),this._updateOpacity()},this._onClose=()=>{this.remove()},this.options=t.e(Object.create(go),e)}addTo(e){return this._map&&this.remove(),this._map=e,this.options.closeOnClick&&this._map.on(`click`,this._onClose),this.options.closeOnMove&&this._map.on(`move`,this._onClose),this._map.on(`remove`,this.remove),this._update(),this._focusFirstElement(),this._trackPointer?(this._map.on(`mousemove`,this._update),this._map.on(`mouseup`,this._update),this._container&&this._container.classList.add(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.add(`maplibregl-track-pointer`)):this._map.on(`move`,this._update),this.fire(new t.l(`open`)),this}isOpen(){return!!this._map}getLngLat(){return this._lngLat}setLngLat(e){return this._lngLat=t.V.convert(e),this._pos=null,this._flatPos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on(`move`,this._update),this._map.off(`mousemove`,this._update),this._container&&this._container.classList.remove(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.remove(`maplibregl-track-pointer`)),this}trackPointer(){return this._trackPointer=!0,this._pos=null,this._flatPos=null,this._update(),this._map&&(this._map.off(`move`,this._update),this._map.on(`mousemove`,this._update),this._map.on(`drag`,this._update),this._container&&this._container.classList.add(`maplibregl-popup-track-pointer`),this._map._canvasContainer.classList.add(`maplibregl-track-pointer`)),this}getElement(){return this._container}setText(e){return this.setDOMContent(document.createTextNode(e))}setHTML(e){let t=document.createDocumentFragment(),n=document.createElement(`body`),r;for(n.innerHTML=e;r=n.firstChild,r;)t.appendChild(r);return this.setDOMContent(t)}getMaxWidth(){return this._container?.style.maxWidth}setMaxWidth(e){return this.options.maxWidth=e,this._update(),this}setDOMContent(e){if(this._content)for(;this._content.hasChildNodes();)this._content.firstChild&&this._content.removeChild(this._content.firstChild);else this._content=u.create(`div`,`maplibregl-popup-content`,this._container);return this._content.appendChild(e),this._createCloseButton(),this._update(),this._focusFirstElement(),this}addClassName(e){return this._container&&this._container.classList.add(e),this}removeClassName(e){return this._container&&this._container.classList.remove(e),this}setOffset(e){return this.options.offset=e,this._update(),this}toggleClassName(e){if(this._container)return this._container.classList.toggle(e)}setSubpixelPositioning(e){this.options.subpixelPositioning=e}setPadding(e){this.options.padding=e,this._update()}_createCloseButton(){this.options.closeButton&&(this._closeButton=u.create(`button`,`maplibregl-popup-close-button`,this._content),this._closeButton.type=`button`,this._closeButton.innerHTML=`&#215;`,this._closeButton.addEventListener(`click`,this._onClose))}_focusFirstElement(){if(!this.options.focusAfterOpen||!this._container)return;let e=this._container.querySelector(_o);e&&e.focus()}},e.RasterDEMTileSource=de,e.RasterTileSource=ue,e.ScaleControl=class{constructor(e){this._onMove=()=>{mo(this._map,this._container,this.options)},this.setUnit=e=>{this.options.unit=e,mo(this._map,this._container,this.options)},this.options=Object.assign(Object.assign({},po),e)}getDefaultPosition(){return`bottom-left`}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-scale`,e.getContainer()),this._map.on(`move`,this._onMove),this._onMove(),this._container}onRemove(){this._container.remove(),this._map.off(`move`,this._onMove),this._map=void 0}},e.ScrollZoomHandler=ja,e.Style=Fn,e.TerrainControl=class{constructor(e){this._toggleTerrain=()=>{this._map.getTerrain()?this._map.setTerrain(null):this._map.setTerrain(this.options),this._updateTerrainIcon()},this._updateTerrainIcon=()=>{this._terrainButton.classList.remove(`maplibregl-ctrl-terrain`),this._terrainButton.classList.remove(`maplibregl-ctrl-terrain-enabled`),this._map.terrain?(this._terrainButton.classList.add(`maplibregl-ctrl-terrain-enabled`),this._terrainButton.title=this._map._getUIString(`TerrainControl.Disable`)):(this._terrainButton.classList.add(`maplibregl-ctrl-terrain`),this._terrainButton.title=this._map._getUIString(`TerrainControl.Enable`))},this.options=e}onAdd(e){return this._map=e,this._container=u.create(`div`,`maplibregl-ctrl maplibregl-ctrl-group`),this._terrainButton=u.create(`button`,`maplibregl-ctrl-terrain`,this._container),u.create(`span`,`maplibregl-ctrl-icon`,this._terrainButton).setAttribute(`aria-hidden`,`true`),this._terrainButton.type=`button`,this._terrainButton.addEventListener(`click`,this._toggleTerrain),this._updateTerrainIcon(),this._map.on(`terrain`,this._updateTerrainIcon),this._container}onRemove(){this._container.remove(),this._map.off(`terrain`,this._updateTerrainIcon),this._map=void 0}},e.TwoFingersTouchPitchHandler=Ea,e.TwoFingersTouchRotateHandler=wa,e.TwoFingersTouchZoomHandler=Sa,e.TwoFingersTouchZoomRotateHandler=La,e.VectorTileSource=le,e.VideoSource=be,e.addSourceType=(e,n)=>t._(void 0,void 0,void 0,(function*(){if(Ce(e))throw Error(`A source type called "${e}" already exists.`);((e,t)=>{Se[e]=t})(e,n)})),e.clearPrewarmedResources=function(){let e=ee;e&&(e.isPreloaded()&&e.numActive()===1?(e.release(O),ee=null):console.warn(`Could not clear WebWorkers since there are active Map instances that still reference it. The pre-warmed WebWorker pool can only be cleared when all map instances have been removed with map.remove()`))},e.createTileMesh=cn,e.getMaxParallelImageRequests=function(){return t.c.MAX_PARALLEL_IMAGE_REQUESTS},e.getRTLTextPluginStatus=function(){return De().getRTLTextPluginStatus()},e.getVersion=function(){return yo},e.getWorkerCount=function(){return k.workerCount},e.getWorkerUrl=function(){return t.c.WORKER_URL},e.importScriptInWorkers=function(e){return re().broadcast(`IS`,e)},e.isTimeFrozen=function(){return c.isFrozen()},e.now=l,e.prewarm=function(){j().acquire(O)},e.restoreNow=function(){c.restoreNow()},e.setMaxParallelImageRequests=function(e){t.c.MAX_PARALLEL_IMAGE_REQUESTS=e},e.setNow=function(e){c.setNow(e)},e.setRTLTextPlugin=function(e,t){return De().setRTLTextPlugin(e,t)},e.setWorkerCount=function(e){k.workerCount=e},e.setWorkerUrl=function(e){t.c.WORKER_URL=e}})),e}))}))(),1);function u(e,t,n){if(e!==null)for(var r,i,a,o,s,c,l,d=0,f=0,p,m=e.type,h=m===`FeatureCollection`,g=m===`Feature`,_=h?e.features.length:1,v=0;v<_;v++){l=h?e.features[v].geometry:g?e.geometry:e,p=l?l.type===`GeometryCollection`:!1,s=p?l.geometries.length:1;for(var y=0;y<s;y++){var b=0,x=0;if(o=p?l.geometries[y]:l,o!==null){c=o.coordinates;var S=o.type;switch(d=n&&(S===`Polygon`||S===`MultiPolygon`)?1:0,S){case null:break;case`Point`:if(t(c,f,v,b,x)===!1)return!1;f++,b++;break;case`LineString`:case`MultiPoint`:for(r=0;r<c.length;r++){if(t(c[r],f,v,b,x)===!1)return!1;f++,S===`MultiPoint`&&b++}S===`LineString`&&b++;break;case`Polygon`:case`MultiLineString`:for(r=0;r<c.length;r++){for(i=0;i<c[r].length-d;i++){if(t(c[r][i],f,v,b,x)===!1)return!1;f++}S===`MultiLineString`&&b++,S===`Polygon`&&x++}S===`Polygon`&&b++;break;case`MultiPolygon`:for(r=0;r<c.length;r++){for(x=0,i=0;i<c[r].length;i++){for(a=0;a<c[r][i].length-d;a++){if(t(c[r][i][a],f,v,b,x)===!1)return!1;f++}x++}b++}break;case`GeometryCollection`:for(r=0;r<o.geometries.length;r++)if(u(o.geometries[r],t,n)===!1)return!1;break;default:throw Error(`Unknown Geometry Type`)}}}}}function d(e,t={}){if(e.bbox!=null&&!0!==t.recompute)return e.bbox;let n=[1/0,1/0,-1/0,-1/0];return u(e,e=>{n[0]>e[0]&&(n[0]=e[0]),n[1]>e[1]&&(n[1]=e[1]),n[2]<e[0]&&(n[2]=e[0]),n[3]<e[1]&&(n[3]=e[1])}),n}var f=d,p=async()=>{let e=document.createElement(`canvas`);e.width=25,e.height=17;let t=e.getContext(`2d`);if(!t)throw Error(`无法获取 Canvas 上下文`);t.rect(0,0,e.width,e.height),t.fillStyle=`rgba(0, 0, 0, 0)`,t.fill(),t.strokeStyle=`red`,t.lineWidth=3,t.stroke();let n=new Image;return n.src=e.toDataURL(),new Promise((e,t)=>{n.onload=()=>e(n),n.onerror=()=>t(Error(`Failed to load redBoxIcon image`))})},m=async()=>{let e=document.createElement(`canvas`);e.width=64,e.height=64;let t=e.getContext(`2d`);if(!t)throw Error(`无法获取 Canvas 上下文`);let n=e.width/2,r=e.height/2;t.beginPath(),t.arc(n,r,20,0,Math.PI*2),t.fillStyle=`rgba(0, 0, 0, 0)`,t.fill(),t.strokeStyle=`#ffffff`,t.lineWidth=3,t.setLineDash([6,6]),t.lineCap=`round`,t.lineJoin=`round`,t.stroke();let i=new Image;return i.src=e.toDataURL(),new Promise((e,t)=>{i.onload=()=>e(i),i.onerror=()=>t(Error(`Failed to load dashCircle image`))})},h=async(e=`h`,t=`r`,n=``,r=``)=>{let i=e===`h`,a=t===`r`,o=`transparent`,s=n||o,c=r||o,l=27*.5,u=3*1.75,d=i?27*1.25:27,f=12*1.2,p=3+(i?f:0)+54+u,m=d+l,h=document.createElement(`canvas`);h.width=p,h.height=m;let g=h.getContext(`2d`);if(!g)throw Error(`无法获取 Canvas 上下文`);g.clearRect(0,0,p,m),g.save(),a||(g.translate(p/2,m/2),g.scale(1,-1),g.translate(-p/2,-m/2)),g.strokeStyle=`rgb(255,255,255)`,g.fillStyle=`rgb(255,255,255)`,3/2-u/2+5;let _=m-l;g.beginPath(),g.rect(3.875,_,u,l),g.fill(),g.beginPath(),g.lineWidth=3;let v=6.5,y=m-l-d,b=m-l;g.moveTo(v,y),g.lineTo(v,b),g.stroke(),g.lineWidth=2;let x=y+27/2,S=16+(i?f:0)+5,C=S+27-1;if(g.beginPath(),g.strokeStyle=`rgb(255,255,255)`,g.lineWidth=2,g.fillStyle=s,g.arc(S,x,12,0,Math.PI*2),g.fill(),g.stroke(),g.beginPath(),g.strokeStyle=`rgb(255,255,255)`,g.lineWidth=2,g.fillStyle=c,g.arc(C,x,12,0,Math.PI*2),g.fill(),g.stroke(),i){g.beginPath(),g.lineWidth=2,g.strokeStyle=`rgb(255,255,255)`,v+3/2;let e=S-12-2/2,t=x;g.moveTo(8,t),g.lineTo(e,t),g.stroke()}g.restore();let w=new Image;return w.src=h.toDataURL(),new Promise((e,t)=>{w.onload=()=>e(w),w.onerror=t})},g=async(e=`h`,t=`r`)=>{let n=e===`h`,r=t===`r`,i=12*1.2,a=27*.5,o=n?27*1.25:27,s=3+(n?i:0)+54+5.25+8,c=o+a+8,l=document.createElement(`canvas`);l.width=s,l.height=c;let u=l.getContext(`2d`);if(!u)throw Error(`无法获取 Canvas 上下文`);u.clearRect(0,0,s,c),u.save(),r||(u.translate(s/2,c/2),u.scale(1,-1),u.translate(-s/2,-c/2));let d=c-a-o-4+27/2,f=16+(n?i:0)+4+27,p=1.5,m=f+12+4*1.5,h=d-12,g=d+12+8;u.beginPath(),u.setLineDash([8,8]),u.strokeStyle=`#ffffff`,u.lineWidth=3,u.rect(p,h,m-p,g-h),u.stroke(),u.restore();let _=new Image;return _.src=l.toDataURL(),new Promise((e,t)=>{_.onload=()=>e(_),_.onerror=t})},_=async(e=`h`,t=`r`,n=!0)=>{let r=e===`h`,i=t===`r`,a=12*1.2,o=27*.5,s=r?27*1.25:27,c=3+(r?a:0)+54+5.25,l=s+o,u=document.createElement(`canvas`);u.width=c,u.height=l;let d=u.getContext(`2d`);if(!d)throw Error(`无法获取 Canvas 上下文`);d.clearRect(0,0,c,l),d.save(),i||(d.translate(c/2,l/2),d.scale(1,-1),d.translate(-c/2,-l/2));let f=l-o-s+27/2,p=16+(r?a:0)+5,m=p+27;d.lineWidth=4,d.strokeStyle=`#ff0000`,n&&(d.beginPath(),d.moveTo(p-12,f-12),d.lineTo(p+12,f+12),d.moveTo(p+12,f-12),d.lineTo(p-12,f+12),d.stroke()),n&&(d.beginPath(),d.moveTo(m-12,f-12),d.lineTo(m+12,f+12),d.moveTo(m+12,f-12),d.lineTo(m-12,f+12),d.stroke()),d.restore();let h=new Image;return h.src=u.toDataURL(),new Promise((e,t)=>{h.onload=()=>e(h),h.onerror=t})},v=async(e=`h`,t=`r`,n,r)=>{let i=e===`h`,a=t===`r`,o=12*1.2,s=27*.5,c=i?27*1.25:27,l=3+(i?o:0)+54+5.25,u=c+s,d=document.createElement(`canvas`);d.width=l,d.height=u;let f=d.getContext(`2d`);if(!f)throw Error(`无法获取 Canvas 上下文`);f.clearRect(0,0,l,u),f.save(),a||(f.translate(l/2,u/2),f.scale(1,-1),f.translate(-l/2,-u/2));let p=u-s-c+27/2,m=16+(i?o:0)+27+5;f.save(),f.translate(m,p),f.fillStyle=n;let h=r?12:24;f.fillRect(-12,-12,h,24),r&&(f.fillStyle=r,f.fillRect(0,-12,12,24)),f.strokeStyle=`white`,f.lineWidth=2,f.strokeRect(-12,-12,24,24),f.restore(),f.restore();let g=new Image;return g.src=d.toDataURL(),new Promise((e,t)=>{g.onload=()=>e(g),g.onerror=t})},y=`data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20t='1776081402940'%20class='icon'%20viewBox='0%200%201024%201024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20p-id='9172'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='32'%20height='32'%3e%3cpath%20d='M675.84%20409.6v-102.4a163.84%20163.84%200%201%200-327.68%200v102.4h327.68z%20m-409.6%200v-102.4c0-135.72096%20110.03904-245.76%20245.76-245.76s245.76%20110.03904%20245.76%20245.76v102.4a81.92%2081.92%200%200%201%2081.92%2081.92v225.28c0%20135.72096-110.03904%20245.76-245.76%20245.76h-163.84c-135.72096%200-245.76-110.03904-245.76-245.76V491.52a81.92%2081.92%200%200%201%2081.92-81.92z%20m286.72%20348.16v-51.87584a40.96%2040.96%200%200%201%2014.19264-30.98624%2081.92%2081.92%200%201%200-113.07008-2.56c0.79872%200.79872%201.72032%201.6384%202.7648%202.56A40.96%2040.96%200%200%201%20471.04%20705.88416V757.76a40.96%2040.96%200%201%200%2081.92%200z'%20p-id='9173'%20fill='%23ffffff'%3e%3c/path%3e%3c/svg%3e`,b={BASE_COLOR:`rgb(85,120,182)`,BG_COLOR:`rgb(0,0,0)`},x=(e,t,n)=>{let r=document.createElement(`canvas`);r.width=66,r.height=64;let i=r.getContext(`2d`);return i.clearRect(0,0,r.width,r.height),n===2&&(i.translate(66,0),i.scale(-1,1)),e===1?(i.beginPath(),i.arc(46,20,20-4/2,0,Math.PI*2),i.fillStyle=t||`rgb(255,255,255,0)`,i.strokeStyle=t||b.BASE_COLOR,i.lineWidth=4,i.fill(),i.stroke(),i.beginPath(),i.moveTo(6,40/2),i.lineTo(26,40/2),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.lineCap=`round`,i.moveTo(8/2,0),i.lineTo(8/2,40),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.moveTo(8/2,40),i.lineTo(8/2,64),i.lineWidth=8,i.strokeStyle=b.BASE_COLOR,i.stroke(),r):(i.beginPath(),i.arc(26,20,20-4/2,0,Math.PI*2),i.fillStyle=t||`rgb(255,255,255,0)`,i.strokeStyle=t||b.BASE_COLOR,i.lineWidth=4,i.fill(),i.stroke(),i.beginPath(),i.lineCap=`round`,i.moveTo(8/2,0),i.lineTo(8/2,40),i.lineWidth=4,i.strokeStyle=b.BASE_COLOR,i.stroke(),i.beginPath(),i.moveTo(8/2,40),i.lineTo(8/2,64),i.lineWidth=8,i.strokeStyle=b.BASE_COLOR,i.stroke(),r)},S=()=>{let e=document.createElement(`canvas`);e.width=24,e.height=64;let t=e.getContext(`2d`);return t.fillStyle=b.BG_COLOR,t.fillRect(0,0,24,64),t.strokeStyle=b.BASE_COLOR,t.lineWidth=8,t.strokeRect(0,0,24,64),e},C=()=>{let e=document.createElement(`canvas`);e.width=15,e.height=40;let t=e.getContext(`2d`);return t.clearRect(0,0,e.width,e.height),t.beginPath(),t.moveTo(0,4/2),t.lineTo(15-4/2,4/2),t.moveTo(4/2,4/2),t.lineTo(4/2,36),t.moveTo(0,36),t.lineTo(15-4/2,36),t.lineWidth=4,t.strokeStyle=b.BASE_COLOR,t.stroke(),e},w=async(e=`h`,t=`r`,n=``)=>{let r=x(e==`h`?1:2,n,t==`l`?1:2),i=new Image;return i.src=r.toDataURL(),new Promise((e,t)=>{i.onload=()=>e(i),i.onerror=t})},T=async()=>{let e=S(),t=new Image;return t.src=e.toDataURL(),new Promise((e,n)=>{t.onload=()=>e(t),t.onerror=n})},E=async()=>{let e=C(),t=new Image;return t.src=e.toDataURL(),new Promise((e,n)=>{t.onload=()=>e(t),t.onerror=n})},D=function(e){return e.Blue=`blue`,e.Green=`green`,e.Red=`red`,e.Yellow=`yellow`,e.Gray=`gray`,e.Purple=`purple`,e.Red_Purple=`red-purple`,e}({}),O=function(e){return e.Red=`red`,e.Red_Yellow=`red-yellow`,e.Yellow=`yellow`,e.Yellow_Yellow=`yellow-yellow`,e.Yellow_Green=`yellow-green`,e.Green=`green`,e.Blue=`blue`,e.White=`white`,e}({}),k=async()=>{let[e,t,n,r]=await Promise.all([w(`h`,`r`,``),w(`h`,`l`,``),w(`l`,`r`,``),w(`l`,`l`,``)]),i=new Image;i.src=y;let[a,o,s]=await Promise.all([E(),p(),m()]),[c,l,u,d]=await Promise.all([h(`h`,`r`,``),h(`h`,`l`,``),h(`l`,`r`,``),h(`l`,`l`,``)]),[f,b,x,S]=await Promise.all([g(`h`,`r`),g(`h`,`l`),g(`l`,`r`),g(`l`,`l`)]),[C,k,A,ee]=await Promise.all([_(`h`,`r`),_(`h`,`l`),_(`l`,`r`),_(`l`,`l`)]),te=[`h`,`l`],j=[`r`,`l`],ne=[D.Blue,D.Green,D.Red,D.Yellow,D.Gray,D.Purple,D.Red_Purple],re=te.flatMap(e=>j.flatMap(t=>ne.map(n=>({height:e,dir:t,color:n})))),ie=await Promise.all(re.map(({height:e,dir:t,color:n})=>v(e,t,n===D.Red_Purple?`red`:n,n===D.Red_Purple?`purple`:void 0))),M=[O.Red,O.Red_Yellow,O.Yellow,O.Yellow_Yellow,O.Yellow_Green,O.Green,O.Blue,O.White],ae=te.flatMap(e=>j.flatMap(t=>M.map(n=>({height:e,dir:t,color:n})))),oe=await Promise.all(ae.map(({height:e,dir:t,color:n})=>{let r=n,i;return n===O.Red_Yellow?(r=`red`,i=`yellow`):n===O.Yellow_Yellow?(r=`yellow`,i=`yellow`):n===O.Yellow_Green&&(r=`yellow`,i=`green`),h(e,t,r,i)})),se=[O.Red,O.Green,O.White,O.Blue],N=te.flatMap(e=>j.flatMap(t=>se.map(n=>({height:e,dir:t,color:n})))),ce=await Promise.all(N.map(({height:e,dir:t,color:n})=>w(e,t,n))),le=await T();return[{id:`icon-signal-h-r`,image:e},{id:`icon-signal-h-l`,image:t},{id:`icon-signal-l-r`,image:n},{id:`icon-signal-l-l`,image:r},{id:`icon-lock`,image:i},{id:`icon-bumper`,image:a},{id:`icon-red-box`,image:o},{id:`icon-dash-circle`,image:s},{id:`icon-ctc-signal-h-r`,image:c},{id:`icon-ctc-signal-h-l`,image:l},{id:`icon-ctc-signal-l-r`,image:u},{id:`icon-ctc-signal-l-l`,image:d},{id:`icon-ctc-box-h-r`,image:f},{id:`icon-ctc-box-h-l`,image:b},{id:`icon-ctc-box-l-r`,image:x},{id:`icon-ctc-box-l-l`,image:S},{id:`icon-ctc-x-h-r`,image:C},{id:`icon-ctc-x-h-l`,image:k},{id:`icon-ctc-x-l-r`,image:A},{id:`icon-ctc-x-l-l`,image:ee},{id:`icon-jcw`,image:le},...ie.map((e,t)=>{let n=re[t];return{id:`icon-ctc-s-${n.height}-${n.dir}-${n.color}`,image:e}}),...oe.map((e,t)=>{let n=ae[t];return{id:`icon-ctc-signal-${n.height}-${n.dir}-${n.color}`,image:e}}),...ce.map((e,t)=>{let n=N[t];return{id:`icon-signal-${n.height}-${n.dir}-${n.color}`,image:e}})]},A={geojson:e=>({type:`geojson`,data:e||{type:`FeatureCollection`,features:[]},promoteId:`code`}),raster:e=>({type:`raster`,tiles:[e],scheme:`tms`,tileSize:256}),graph:e=>({type:`vector`,tiles:[e],scheme:`tms`,promoteId:`code`}),geom:e=>({type:`vector`,tiles:[e],scheme:`tms`,promoteId:`code`}),image:(e,t)=>({type:`image`,url:e,coordinates:t}),video:(e,t)=>({type:`video`,urls:e,coordinates:t}),canvas:(e,t)=>({type:`canvas`,canvas:e,coordinates:t}),mbtiles:e=>({type:`vector`,tiles:[e]})},ee={background:(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),track:(e,t)=>[{id:`${e.id}_${t}_lock`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_lock_icon`,type:`symbol`,source:e.id,"source-layer":t,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_catenery_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_catenery_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_select_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#ffffff`,"line-dasharray":[.5,.5],"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:(e,t)=>[{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`subState1`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`subState1`],`1`],1,0]}},{id:`${e.id}_${t}_select_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#ffffff`,"line-dasharray":[.4,.4],"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":3}},{id:`${e.id}_${t}_red`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_white`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_grey`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`,visibility:`none`},paint:{"line-color":`grey`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_subpath`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`burlywood`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_mainpath`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`5`],1,0]}}],signal:(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5],r=[];[D.Blue,D.Green,D.Red,D.Yellow,D.Gray,D.Purple,D.Red_Purple].forEach(i=>{r.push({id:`${e.id}_${t}_square_${i}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-s-h-r-${i}`,`icon-ctc-s-h-l-${i}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-s-l-r-${i}`,`icon-ctc-s-l-l-${i}`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-right`,`top-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`subState1`],i],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})});let i=[];return[O.Red,O.Red_Yellow,O.Yellow,O.Yellow_Yellow,O.Yellow_Green,O.Green,O.Blue,O.White].forEach(r=>{i.push({id:`${e.id}_${t}_${r}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-h-r-${r}`,`icon-ctc-signal-h-l-${r}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-l-r-${r}`,`icon-ctc-signal-l-l-${r}`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],r],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})}),[...i,{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-h-r`,`icon-ctc-signal-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-signal-l-r`,`icon-ctc-signal-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}},{id:`${e.id}_${t}_box`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-box-h-r`,`icon-ctc-box-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-box-l-r`,`icon-ctc-box-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`select`],!0],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}},{id:`${e.id}_${t}_x`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-x-h-r`,`icon-ctc-x-h-l`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-ctc-x-l-r`,`icon-ctc-x-l-l`]],"icon-size":n,"icon-rotate":[`+`,[`to-number`,[`get`,`angle`]],90],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`top-left`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`subState2`],`off`],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}},...r]},bumper:(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-bumper`,"icon-size":.3,"icon-allow-overlap":!0},paint:{"icon-opacity":0}}),switch:(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e.id}_${t}_dash_circle`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-dash-circle`,"icon-allow-overlap":!0,"icon-size":[`interpolate`,[`linear`],[`zoom`],17,.5]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}},{id:`${e.id}_${t}_lock`,type:`circle`,source:e.id,"source-layer":t,layout:{visibility:`visible`},paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,8],"circle-stroke-width":1.7,"circle-stroke-color":[`match`,[`feature-state`,`state`],`2`,`green`,`3`,`darkorange`,`4`,`red`,`white`],"circle-color":`transparent`,"circle-stroke-opacity":[`case`,[`==`,[`feature-state`,`subState2`],`1`],1,0]}},{id:`${e.id}_${t}_danfen`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-red-box`,"icon-allow-overlap":!0,"icon-offset":[0,15],"icon-size":[`interpolate`,[`linear`],[`zoom`],5,.2,10,.5,18,1]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`subState3`],`1`],1,0]}}],switch_loc:(e,t)=>[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e.id}_${t}_normal`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_reverse`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_fourway`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":4,"line-color":`#000000`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_normal_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_reverse_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_normal_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}},{id:`${e.id}_${t}_reverse_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}}],insulation:(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":n,"circle-stroke-width":n,"circle-stroke-color":`#ffbb00`},layout:{visibility:`none`}}},label:(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],10,[`==`,[`get`,`category`],96],8,7],22,[`case`,[`==`,[`get`,`category`],50],16,[`==`,[`get`,`category`],96],12,13]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`#C0C33F`}}),prevention:(e,t)=>[{id:`${e.id}_${t}_circle`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,20,10],"circle-stroke-width":2,"circle-stroke-color":`red`},layout:{visibility:`none`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`2`],`网`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`8`],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`20`],`界`,`门`],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,2,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,visibility:`none`},paint:{"text-color":`white`}}]},te=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=ee[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},j=(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),ne=(e,t)=>[{id:`${e.id}_${t}_lock`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_lock_icon`,type:`symbol`,source:e.id,"source-layer":t,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_poweroff_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_poweroff_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_catenery_border`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_catenery_fill`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],re=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,2,16,3.5,18,4.5,20,5];return[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":3}},{id:`${e.id}_${t}_red`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e.id}_${t}_white`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_grey`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`,visibility:`none`},paint:{"line-color":`grey`,"line-width":n,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_white_label`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_red_label`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`red`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}}]},ie=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5],r=[];return[O.Red,O.Green,O.White,O.Blue].forEach(i=>{r.push({id:`${e.id}_${t}_${i}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-h-l-${i}`,`icon-signal-h-r-${i}`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-l-l-${i}`,`icon-signal-l-r-${i}`]],"icon-size":n,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],i],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})}),[...r,{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-h-l`,`icon-signal-h-r`],[`case`,[`==`,[`get`,`posi_side`],1],`icon-signal-l-l`,`icon-signal-l-r`]],"icon-size":n,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}}]},M=(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}},{id:`${e.id}_${t}_lock`,type:`circle`,source:e.id,"source-layer":t,layout:{visibility:`visible`},paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,8],"circle-stroke-width":1.7,"circle-stroke-color":[`match`,[`feature-state`,`state`],`2`,`green`,`3`,`darkorange`,`4`,`red`,`white`],"circle-color":`transparent`,"circle-stroke-opacity":[`case`,[`==`,[`feature-state`,`subState2`],`1`],1,0]}},{id:`${e.id}_${t}_danfen`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-red-box`,"icon-allow-overlap":!0,"icon-offset":[0,15],"icon-size":[`interpolate`,[`linear`],[`zoom`],5,.2,10,.5,18,1]},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`subState3`],`1`],1,0]}}],ae=(e,t)=>[{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e.id}_${t}_normal`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e.id}_${t}_reverse`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e.id}_${t}_fourway`,type:`line`,source:e.id,"source-layer":t,paint:{"line-width":4,"line-color":`#000000`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`4`],1,0]}},{id:`${e.id}_${t}_normal_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_reverse_white`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`white`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`2`]],1,0]}},{id:`${e.id}_${t}_normal_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`2`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}},{id:`${e.id}_${t}_reverse_red`,type:`line`,source:e.id,"source-layer":t,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`red`,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],`3`],[`==`,[`feature-state`,`subState1`],`3`]],1,0]}}],oe=(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":`icon-bumper`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-rotate":[`get`,`angle`],"icon-allow-overlap":!0,"icon-anchor":`left`}}),se=(e,t)=>({id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],10,[`==`,[`get`,`category`],96],8,7],22,[`case`,[`==`,[`get`,`category`],50],16,[`==`,[`get`,`category`],96],12,13]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`#C0C33F`}}),N=(e,t)=>{let n=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":n,"circle-stroke-width":n,"circle-stroke-color":`#ffbb00`},layout:{visibility:`none`}}},ce=function(e){return e[e.NULL=0]=`NULL`,e[e.BUMPER=1]=`BUMPER`,e[e.CONTACTLINEEND=2]=`CONTACTLINEEND`,e[e.FIXEDDERAILER=3]=`FIXEDDERAILER`,e[e.CONTACTLINENOSTOP=4]=`CONTACTLINENOSTOP`,e[e.CONTACTLINENOSTOPIN=5]=`CONTACTLINENOSTOPIN`,e[e.OTHERPROMPT=6]=`OTHERPROMPT`,e[e.OTHERBRAKE=7]=`OTHERBRAKE`,e[e.ONESTOP=8]=`ONESTOP`,e[e.SPEEDLIMITED=9]=`SPEEDLIMITED`,e[e.SPEEDNOTICE=10]=`SPEEDNOTICE`,e[e.CROSSSPEEDLIMITED=11]=`CROSSSPEEDLIMITED`,e[e.CONTACTLINEPSS=12]=`CONTACTLINEPSS`,e[e.SSG=13]=`SSG`,e[e.CONTACTLINEPSSIN=14]=`CONTACTLINEPSSIN`,e[e.CONTACTLINENOAREA=15]=`CONTACTLINENOAREA`,e[e.HIGHPOSTSIGNAL=16]=`HIGHPOSTSIGNAL`,e[e.RESCUEVEHICLE=17]=`RESCUEVEHICLE`,e[e.RAILWAYCROSS=18]=`RAILWAYCROSS`,e[e.TRAIN=19]=`TRAIN`,e[e.STATIONBOUND=20]=`STATIONBOUND`,e[e.SHORTPOSTSIGNAL=21]=`SHORTPOSTSIGNAL`,e[e.BRIDGE=22]=`BRIDGE`,e[e.WHITE=23]=`WHITE`,e[e.WHITEBLUE=24]=`WHITEBLUE`,e[e.BLUE=25]=`BLUE`,e[e.BLUEWHITE=26]=`BLUEWHITE`,e[e.SLOPE=27]=`SLOPE`,e[e.PEOPLE=28]=`PEOPLE`,e[e.TUNNEL=29]=`TUNNEL`,e[e.DANGER=30]=`DANGER`,e[e.SIGNAL=31]=`SIGNAL`,e[e.SWERVE=32]=`SWERVE`,e[e.SWITCH=33]=`SWITCH`,e[e.FOULINGPOST=38]=`FOULINGPOST`,e[e.CUNCHE=39]=`CUNCHE`,e[e.STATIONBOUNDEXTEND=40]=`STATIONBOUNDEXTEND`,e[e.RED=41]=`RED`,e[e.GREEN=42]=`GREEN`,e[e.YELLOW=43]=`YELLOW`,e[e.BLOCKLINE=50]=`BLOCKLINE`,e[e.WORKAREA=51]=`WORKAREA`,e[e.ROUTELINE=52]=`ROUTELINE`,e[e.PARK=53]=`PARK`,e[e.WORKBUOND=54]=`WORKBUOND`,e[e.WORKBUONDCROSS=55]=`WORKBUONDCROSS`,e[e.LEFTHIGHPLATFORM=61]=`LEFTHIGHPLATFORM`,e[e.RIGHTHIGHPLATFORM=62]=`RIGHTHIGHPLATFORM`,e[e.BOTHSIDEHIGHPLATFORM=63]=`BOTHSIDEHIGHPLATFORM`,e[e.TGQ=47]=`TGQ`,e[e.DOOR=87]=`DOOR`,e[e.OTHER=95]=`OTHER`,e[e.SIDE=253]=`SIDE`,e[e.NONE=254]=`NONE`,e[e.MAX=255]=`MAX`,e[e.ISOLATE=35]=`ISOLATE`,e[e.ISOLATESWITCH=100]=`ISOLATESWITCH`,e}({}),le={background:j,signal:ie,track:ne,track_circuit:re,bumper:oe,switch:M,switch_loc:ae,insulation:N,label:se,prevention:(e,t)=>[{id:`${e.id}_${t}_jcw`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.CONTACTLINEEND)],`icon-jcw`,``],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-allow-overlap":!0,"icon-anchor":`left`}},{id:`${e.id}_${t}_circle`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[String(ce.ONESTOP),String(ce.STATIONBOUND),String(ce.DOOR)],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,6,20,18],"circle-stroke-width":2,"circle-stroke-color":`red`},layout:{visibility:`visible`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[String(ce.CONTACTLINEEND),String(ce.ONESTOP),String(ce.STATIONBOUND),String(ce.DOOR)],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.ONESTOP)],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],String(ce.STATIONBOUND)],`界`,``],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,20,18],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,visibility:`visible`},paint:{"text-color":`white`}}]},ue=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=le[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},de={background:(e,t)=>({id:`${e.id}_${t}`,type:`background`,paint:{"background-color":`#131212`}}),signal:(e,t)=>[{id:`${e.id}_${t}`,type:`symbol`,source:e.id,"source-layer":t,layout:{"icon-image":[`case`,[`==`,[`get`,`inst_type`],1],[`case`,[`==`,[`get`,`posi_side`],2],`icon-signal-h-r`,`icon-signal-h-l`],[`case`,[`==`,[`get`,`posi_side`],2],`icon-signal-l-r`,`icon-signal-l-l`]],"icon-allow-overlap":!0,"icon-rotate":[`case`,[`==`,[`get`,`posi_side`],2],[`-`,270,[`to-number`,[`get`,`angle`]]],[`-`,90,[`to-number`,[`get`,`angle`]]]],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,0,16,.3,18,.5,20,1],"icon-anchor":[`case`,[`==`,[`get`,`posi_side`],1],`bottom-left`,`bottom-right`],"icon-offset":[0,2]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`get`,`name`],"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],12,5,14,8,18,14],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0,"text-offset":[0,.6]},paint:{"text-color":`gold`}}],track:(e,t)=>[{id:`${e.id}_${t}_hitarea`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`select`],!0],1,0]}},{id:`${e.id}_${t}`,type:`line`,source:e.id,"source-layer":t,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:null,bumper:(e,t)=>[{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,12,3,14,5,16,6,20,8],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":`档`,"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,12,8,14,10,16,12,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}],switch:null,switch_loc:null,insulation:null,label:null,prevention:(e,t)=>[{id:`${e.id}_${t}`,type:`circle`,source:e.id,"source-layer":t,filter:[`match`,[`to-string`,[`get`,`uc_oob_type`]],[`2`,`8`,`20`,`87`],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,3,12,3,14,5,16,6,20,8],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e.id}_${t}_text`,type:`symbol`,source:e.id,"source-layer":t,layout:{"text-field":[`case`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`2`],`网`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`8`],`停`,[`==`,[`to-string`,[`get`,`uc_oob_type`]],`20`],`界`,`门`],"text-font":[`Arial Unicode MS Bold`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,12,8,14,10,16,12,20,12],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}]},fe=e=>{let t=[];return e.layers.forEach((n,r)=>{let i=de[n],a=e.sourceLayers[r];if(i){let n=i(e,a);Array.isArray(n)?t.push(...n):t.push(n)}else console.warn(`图层 ${n} 尚未实现`)}),t},pe=e=>[{id:`${e}_raster_layer`,type:`raster`,source:e,paint:{"raster-opacity":.8}}],me={background:e=>({id:`${e}_background`,type:`background`,paint:{"background-color":`#131212`}}),signal:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,.2,16,.6,18,.8,20,1.5];return[...[O.Red,O.Green,O.White,O.Blue].map(n=>({id:`${e}_signal_${n}`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`get`,`installType`],1],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-h-l-${n}`,`icon-signal-h-r-${n}`],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-l-l-${n}`,`icon-signal-l-r-${n}`]],"icon-size":t,"icon-rotate":[`case`,[`==`,[`get`,`positionSide`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`positionSide`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],n],[`!=`,[`feature-state`,`visiable`],!1]],1,0]}})),{id:`${e}_signal`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`get`,`installType`],1],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-h-l`,`icon-signal-h-r`],[`case`,[`==`,[`get`,`positionSide`],1],`icon-signal-l-l`,`icon-signal-l-r`]],"icon-size":t,"icon-rotate":[`case`,[`==`,[`get`,`positionSide`],2],[`+`,270,[`to-number`,[`get`,`angle`]]],[`+`,90,[`to-number`,[`get`,`angle`]]]],"icon-allow-overlap":!0,"icon-anchor":[`case`,[`==`,[`get`,`positionSide`],1],`bottom-left`,`bottom-right`]},paint:{"icon-opacity":[`case`,[`!=`,[`feature-state`,`visiable`],!1],1,0]}}]},track:e=>[{id:`${e}_track_lock`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`#a7009e`,"line-width":3,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e}_track_lock_icon`,type:`symbol`,source:e,layout:{"symbol-placement":`line-center`,"icon-anchor":`top`,"icon-image":`icon-lock`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.2,15,.5,16,.6,17,.8],"icon-offset":[0,5],"icon-allow-overlap":!0,"icon-rotation-alignment":`viewport`,"icon-rotate":0},paint:{"icon-opacity":[`case`,[`==`,[`feature-state`,`state`],`1`],1,0]}},{id:`${e}_track_poweroff_border`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`green`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_track_poweroff_fill`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_track_catenery_border`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":9,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e}_track_catenery_fill`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`black`,"line-width":6,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}},{id:`${e}_track`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`#85A0D9`,"line-width":2}}],track_circuit:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,2,16,3.5,18,4.5,20,5];return[{id:`${e}_trackcircuit_bad`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":[`case`,[`==`,[`feature-state`,`state`],1],`#ff0000`,[`==`,[`feature-state`,`state`],2],`#ffffff`,[`==`,[`feature-state`,`state`],3],`#808080`,`#000000`],"line-width":t,"line-dasharray":[4,4],"line-opacity":[`case`,[`==`,[`feature-state`,`substate`],0],1,0]}},{id:`${e}_trackcircuit_grey`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`grey`,"line-width":t,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],3],[`!=`,[`feature-state`,`substate`],0]],1,0]}},{id:`${e}_trackcircuit_red`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`red`,"line-width":t,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],1],[`!=`,[`feature-state`,`substate`],0]],1,0]}},{id:`${e}_trackcircuit_white`,type:`line`,source:e,layout:{"line-join":`round`},paint:{"line-color":`white`,"line-width":t,"line-opacity":[`case`,[`all`,[`==`,[`feature-state`,`state`],2],[`!=`,[`feature-state`,`substate`],0]],1,0]}},{id:`${e}_trackcircuit_white_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],2],1,0]}},{id:`${e}_trackcircuit_red_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":`bottom`,"text-offset":[0,-1],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`red`,"text-opacity":[`case`,[`==`,[`feature-state`,`state`],1],1,0]}}]},bumper:e=>({id:`${e}_bumper`,type:`symbol`,source:e,layout:{"icon-image":`icon-bumper`,"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-rotate":[`get`,`angle`],"icon-allow-overlap":!0,"icon-anchor":`left`}}),switch:e=>[{id:`${e}_switch_hitarea`,type:`circle`,source:e,paint:{"circle-radius":[`interpolate`,[`linear`],[`zoom`],5,11],"circle-color":`red`,"circle-opacity":0}},{id:`${e}_switch_text`,type:`symbol`,source:e,layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,11,22,15],"text-font":[`Open Sans Regular`],"text-anchor":`top`,"text-offset":[0,.5],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":[`match`,[`feature-state`,`state`],`2`,`lightgreen`,`3`,`darkorange`,`4`,`red`,`white`]}}],switch_loc:e=>[{id:`${e}_switchloc`,type:`line`,source:e,paint:{"line-width":5,"line-color":`#000000`}},{id:`${e}_switchloc_normal`,type:`line`,source:e,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`2`]],paint:{"line-width":4,"line-color":`green`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`2`],1,0]}},{id:`${e}_switchloc_reverse`,type:`line`,source:e,filter:[`any`,[`==`,[`get`,`location`],`1`],[`==`,[`get`,`location`],`3`]],paint:{"line-width":4,"line-color":`darkorange`,"line-opacity":[`case`,[`==`,[`feature-state`,`state`],`3`],1,0]}}],insulation:e=>{let t=[`interpolate`,[`exponential`,2],[`zoom`],12,1,15,1.5,16,2,17,4];return{id:`${e}_insulation`,type:`circle`,source:e,filter:[`!=`,[`get`,`category`],2],paint:{"circle-radius":t,"circle-stroke-width":t,"circle-stroke-color":`#ffbb00`}}},label:e=>({id:`${e}_label`,type:`symbol`,source:e,filter:[`!=`,[`get`,`category`],2],layout:{"text-field":[`get`,`name`],"text-size":[`interpolate`,[`linear`],[`zoom`],15,[`case`,[`==`,[`get`,`category`],50],12,[`==`,[`get`,`category`],96],10,9],22,[`case`,[`==`,[`get`,`category`],50],18,[`==`,[`get`,`category`],96],14,15]],"text-font":[`Open Sans Regular`],"text-anchor":[`case`,[`==`,[`get`,`angle`],90],`bottom-left`,`top-right`],"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`yellow`}}),prevention:e=>[{id:`${e}_prevention_jcw`,type:`symbol`,source:e,layout:{"icon-image":[`case`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.CONTACTLINEEND],`icon-jcw`,``],"icon-size":[`interpolate`,[`exponential`,2],[`zoom`],12,.1,16,.5,18,.7,20,1.4],"icon-allow-overlap":!0,"icon-anchor":`left`}},{id:`${e}_prevention_circle`,type:`circle`,source:e,filter:[`match`,[`to-number`,[`get`,`ucOobType`]],[ce.ONESTOP,ce.STATIONBOUND,ce.DOOR],!0,!1],paint:{"circle-radius":[`interpolate`,[`exponential`,2],[`zoom`],10,6,20,18],"circle-stroke-width":2,"circle-stroke-color":`red`}},{id:`${e}_prevention_text`,type:`symbol`,source:e,filter:[`match`,[`to-number`,[`get`,`ucOobType`]],[ce.CONTACTLINEEND,ce.ONESTOP,ce.STATIONBOUND,ce.DOOR],!0,!1],layout:{"text-field":[`case`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.ONESTOP],`停`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.STATIONBOUND],`界`,[`==`,[`to-number`,[`get`,`ucOobType`]],ce.DOOR],`门`,``],"text-font":[`Open Sans Regular`],"text-size":[`interpolate`,[`linear`],[`zoom`],10,6,20,18],"text-anchor":`center`,"symbol-placement":`point`,"text-allow-overlap":!0},paint:{"text-color":`white`}}]},he={ctc:te,graph:ue,geom:fe,raster:pe,geojson:(e,t)=>{let n=[];return e.forEach((e,r)=>{let i=t[r],a=me[e];if(!a){console.warn(`GeoJSON 图层 ${e} 尚未实现`);return}let o=a(i);Array.isArray(o)?n.push(...o):n.push(o)}),n}};function ge(){if(!this.mapConfigs)return;let e=this.mapConfigs.id;this.mapConfigs.sourceLayers.forEach(t=>{(t.includes(`switch`)||t.includes(`signal`)||t.includes(`track`))&&this.map.querySourceFeatures(e,{sourceLayer:t}).forEach(e=>{this.initCTCFeatureState(e)})})}function _e(e){if(!e||e.length<11)return``;let t=e.charAt(10),n=e.charAt(9);return t===`1`&&n===`0`?`track`:t===`3`?`signal`:t===`2`&&n===`0`||t===`1`&&n===`1`?`switch`:t===`2`&&n===`1`?`circuit`:``}function ve(e){if(!e)return;let t=e.properties.code,n=_e(t);if(n===`switch`){let t={state:``,select:!1,visiable:!0,subState1:``,subState2:``,subState3:``};t.state=`2`;let n=e.properties;this.updateFeatureState(n.code,t)}else if(n===`signal`){let t=e.properties,n=t.attach||0,r=t.func_type,i={state:``,select:!1,visiable:!0,subState1:`grey`,subState2:``,subState3:``};r==1&&n==0||(r==2||r==3)&&n==0||(r==2||r==3||r==11)&&n==1?(i.state=`red`,i.subState1=`blue`,this.updateFeatureState(t.code,i)):(r==4||r==5||r==12)&&n==0?(i.state=`blue`,i.subState1=`green`,this.updateFeatureState(t.code,i)):r==6&&n==0||(r==7||r==11)&&n==0?(i.state=`red`,i.subState1=`blue`,this.updateFeatureState(t.code,i)):(i.state=``,i.subState1=`grey`,this.updateFeatureState(t.code,i))}else if(n===`signal`||n===`circuit`){let t={state:``,select:!1,visiable:!0,subState1:``,subState2:``,subState3:``},n=e.properties;this.updateFeatureState(n.code,t)}}function ye(e){e.initCTCFeatureState=ve,e.initState=ge,e.map.once(`idle`,()=>{e&&e.map.moveLayer(`${e.mapConfigs.id}_${e.mapConfigs.sourceLayers[e.mapConfigs.layers.indexOf(`track`)]}_lock`)})}function be(e,t){let n=this.map;if(n&&!n.getSource(e)){let r=A.graph(t);n.addSource(e,r)}}function xe(e,t){let n=this.map;if(n&&!n.getSource(e)){let r=A.raster(t);n.addSource(e,r)}}function Se(e,t){let n=this.map;if(!n){console.error(`地图实例未初始化`);return}try{if(n.getSource(e))console.warn(`源已存在,跳过添加: ${e}`);else{let r=t?A.geojson(t):A.geojson();n.addSource(e,r),console.log(`成功添加 GeoJSON 源: ${e}`)}}catch(t){console.error(` 添加源失败 [${e}]:`,t)}}function Ce(e){let t=this.map;if(t)if(t.getSource(e))try{(t.getStyle().layers||[]).filter(t=>{if(`source`in t)return t.source===e}).forEach(e=>{t.removeLayer(e.id),console.log(`移除关联图层: ${e.id}`)}),t.removeSource(e),console.log(`成功移除源: ${e}`)}catch(t){console.error(`移除源失败 [${e}]:`,t)}else console.warn(`源不存在,无法移除: ${e}`)}function we(e,t){let n=this.map;if(!n)return;let r=n.getSource(e);r?(r.setData(t),console.log(`更新源数据: ${e}`)):this.addGeoJsonSource(e,t)}function Te(e,t,n=`fill`,r,i){let a=this.map;if(!a)return;if(!a.getSource(t)){console.error(`无法添加图层: 源 '${t}' 不存在`);return}a.getLayer(e)&&a.removeLayer(e);let o={};n===`fill`&&(o[`fill-color`]=`#3b82f6`),n===`line`&&(o[`line-color`]=`#3b82f6`),n===`circle`&&(o[`circle-color`]=`#3b82f6`);let s={id:e,type:n,source:t,paint:{...o,...r},layout:i||{}};a.addLayer(s)}function Ee(e,t){let n=this.map;n&&(n.getLayer(e)?(Object.keys(t).forEach(r=>{n.setPaintProperty(e,r,t[r])}),console.log(`样式已更新: ${e}`)):console.warn(` 图层不存在,无法更新样式: ${e}`))}function De(e){let t=this.map;t&&(t.getLayer(e)?(t.removeLayer(e),console.log(`图层已移除: ${e}`)):console.warn(` 图层不存在,无法删除: ${e}`))}function Oe(e,t){let n=this.map;if(!n)return;let r=Array.isArray(e)?e:[e];n.on(`click`,e=>{let i=n.queryRenderedFeatures(e.point,{layers:r});if(!i.length)return;let a=i[0];t(a,e.lngLat)}),n.on(`mouseenter`,r[r.length-1],()=>{n.getCanvas().style.cursor=`pointer`}),n.on(`mouseleave`,r[r.length-1],()=>{n.getCanvas().style.cursor=``})}function ke(){this.stashFeatures.clear(),this.map&&(this.map.remove(),console.log(`地图实例已移除`))}function Ae(e){e.addGeoJsonSource=Se,e.addVectorTileSource=be,e.addRasterTileSource=xe,e.updateGeoJsonSource=we,e.removeSource=Ce,e.addGeoJsonLayer=Te,e.updateLayerStyle=Ee,e.removeLayer=De,e.onFeatureClick=Oe,e.destroy=ke}var je=class{constructor(){this.signalExist=!0,this.interlockInfo=new Map}getProductInfo(){return this.productInfo}getStCode(){return this.stationCode}getInterlockInfo(){return this.interlockInfo}isSignalExist(){return this.signalExist}setYardSignal(e){let t=e.split(`&`);this.time=t[0];let n=[],r=[],i=[];this.stationCode=t[1];let a=t[1],o=0;t.length===6&&(this.productInfo=t[2],o=1);let s=t[2],c=a+`:`+s;if(t[2+o]!==``){let e=t[2+o].split(`;`);for(let t of e){let e=t.split(`:`);n.push({name:e[0]+`:`+a,state:e[1]})}}if(t[3+o]!==``){let e=t[3+o].split(`;`);for(let t of e){let e=t.split(`:`);r.push({name:e[0]+`:`+a,state:e[1]})}}if(t[4+o]!==``){let e=t[4+o].split(`;`);for(let t of e){let e=t.split(`:`);i.push({name:e[0]+`:`+a,state:e[1]})}}this.interlockInfo.set(c,{signalInterlock:n,switchInterlock:r,circuitInterlock:i})}reset(){}resetInterlockInfo(){this.interlockInfo=new Map}},Me=class{constructor(){this.insulationSignalMap=new Map,this.signalInsulationMap=new Map}setInsulation(e){this.insulationSignalMap.clear(),this.signalInsulationMap.clear(),e.length===0&&console.warn(`没有绝缘节数据!`),e.forEach(e=>{let t=String(e.id??e.properties?.code??``),n=e.properties?.upSignal??null,r=e.properties?.downSignal??null,i=e.properties?.name??``;this.insulationSignalMap.set(t,{upsignal:n,downsignal:r}),n!=null&&this.signalInsulationMap.set(String(n),t+`-`+i),r!=null&&this.signalInsulationMap.set(String(r),t+`-`+i)})}getInsulationBySignalKey(e){return this.signalInsulationMap.get(e)}getSignalByInsulationKey(e){return this.insulationSignalMap.get(e)}},Ne=function(e){return e.RedLight=`red`,e.GreenLight=`green`,e.BlueLight=`blue`,e.WhiteLight=`white`,e}({}),Pe={1:Ne.RedLight,2:Ne.GreenLight,3:Ne.WhiteLight,4:Ne.BlueLight},Fe=class{constructor(e){if(this.signalStore=new je,this.interLockInsulation=new Me,this.interLockState={signal:new Map,switch:new Map,circuit:new Map},this.pathCircuits=[],this.pathCircuitsCodes=[],this.linkWhiteCircuits=[],this.map=e.map,this.firstSwitches=e.firstSwitches??[],this.updateFeatureState=e.updateFeatureState,`mode`in e&&e.mode===`geojson`){let t=e.sourceIds;this.layers={signal:{sourceId:t.signal},switch:{sourceId:t.switch},switch_loc:{sourceId:t.switch_loc},track_circuit:{sourceId:t.track_circuit},track:{sourceId:t.track},insulation:{sourceId:t.insulation}}}else{let t=e.sourceId,n=e.sourceLayers;this.layers={signal:{sourceId:t,sourceLayer:n.signal},switch:{sourceId:t,sourceLayer:n.switch},switch_loc:{sourceId:t,sourceLayer:n.switch_loc},track_circuit:{sourceId:t,sourceLayer:n.track_circuit},track:{sourceId:t,sourceLayer:n.track},insulation:{sourceId:t,sourceLayer:n.insulation}}}}queryFeatures(e){let t=this.layers[e];return this.map.querySourceFeatures(t.sourceId,t.sourceLayer?{sourceLayer:t.sourceLayer}:void 0)}setFeatureState(e,t,n){if(this.updateFeatureState)return this.updateFeatureState(t,n);let r=this.layers[e];this.map.setFeatureState(r.sourceLayer?{source:r.sourceId,sourceLayer:r.sourceLayer,id:t}:{source:r.sourceId,id:t},n)}getFeatureState(e,t){let n=this.layers[e];return this.map.getFeatureState(n.sourceLayer?{source:n.sourceId,sourceLayer:n.sourceLayer,id:t}:{source:n.sourceId,id:t})}initInsulation(){let e=this.queryFeatures(`insulation`);this.interLockInsulation.setInsulation(e)}handleSignalData(e){this.signalStore.resetInterlockInfo(),!e||e.length===0?this.signalStore.signalExist=!1:(this.signalStore.signalExist=!0,this.signalStore.setYardSignal(e)),this.signalStore.isSignalExist()&&this.signalStore.getInterlockInfo().forEach((e,t)=>{let n=t.split(`:`)[0],r=t.split(`:`)[1];this.arrToMap(this.interLockState.signal,e.signalInterlock),this.arrToMap(this.interLockState.switch,e.switchInterlock),this.arrToMap(this.interLockState.circuit,e.circuitInterlock),r===`ZK01`?this.visualizeZK(e,r,n):this.visualizeYD(e,r,n)})}turnOffSignals(){this.interLockState={signal:new Map,switch:new Map,circuit:new Map}}reset(e){this.clearCircuits(e),this.clearSwitchLocs(e)}clearCircuits(e){this.queryFeatures(`track_circuit`).forEach(t=>{t.properties?.stcode===e&&this.setFeatureState(`track_circuit`,t.properties.code,{state:``,visiable:!0})})}clearSwitchLocs(e){this.queryFeatures(`switch_loc`).forEach(t=>{t.properties?.stcode===e&&this.setFeatureState(`switch_loc`,t.properties.code,{state:``,visiable:!0})})}visualizeZK(e,t,n){this.reset(n);for(let t of e.signalInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getSignalFeature(e,n);r&&this.setFeatureState(`signal`,r.properties.code,{state:Pe[t.state],visiable:!0})}for(let t of e.switchInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1];this.getSwitchLocFeatures(e,n,t.state).forEach(e=>{this.setFeatureState(`switch_loc`,e.properties.code,{state:t.state})})}for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);r&&this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,visiable:!0})}this.applyHandSwitchPaths(n,e.switchInterlock)}visualizeYD(e,t,n){this.reset(n);for(let t of e.signalInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getSignalFeature(e,n);r&&this.setFeatureState(`signal`,r.properties.code,{state:Pe[t.state],visiable:!0})}for(let t of e.switchInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1];this.getSwitchLocFeatures(e,n,t.state).forEach(e=>{this.setFeatureState(`switch_loc`,e.properties.code,{state:t.state,visiable:!0})})}this.pathCircuits=[],this.pathCircuitsCodes=[],this.linkWhiteCircuits=[];for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);r&&(this.pathCircuits.push(r),this.pathCircuitsCodes.push(String(r.properties?.code??``)))}for(let t of e.circuitInterlock){let e=t.name.split(`:`)[0],n=t.name.split(`:`)[1],r=this.getCircuitFeature(e,n);if(!r){console.warn(`没有找到对应的区段YD`,t.name,t.state);continue}if(t.state===`1`)this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,controlName:``,visiable:!0});else{let e=String(r.properties?.fromCode??``),n=String(r.properties?.toCode??``);try{let i=this.getCircuitState([e,n],null);i?(this.setFeatureState(`track_circuit`,r.properties.code,{state:i.circuitState,controlName:i.controlName,link:i.controlName===``?void 0:0,visiable:!0}),i.controlName!==``&&this.linkWhiteCircuits.push(r)):this.setFeatureState(`track_circuit`,r.properties.code,{state:t.state,visiable:!0})}catch(e){if(e instanceof Error&&e.message!==`End Loop`)throw e}}}this.queryFeatures(`track_circuit`).forEach(e=>{let t=String(e.properties?.code??``),n=this.linkWhiteCircuits.find(e=>String(e.properties?.code??``)===t);if(n){let t=this.getFeatureState(`track_circuit`,e.id);t.state!==`2`&&t.state!==2&&t.state!==`1`&&t.state!==1&&this.setFeatureState(`track_circuit`,e.properties.code,{state:2,link:1,controlName:n.properties?.controlName??``,visiable:!0})}}),this.applyHandSwitchPaths(n,e.switchInterlock)}applyHandSwitchPaths(e,t){let n=[];for(let r of this.firstSwitches)this.findHandSwitchPath(r,e,t,n,[]);n.forEach(e=>{this.setFeatureState(`track`,e,{state:5,visiable:!0})})}findHandSwitchPath(e,t,n,r,i){let a=this.findSwitchInfo(e,t,n);if(!this.validSwitchInfo(a))return;let o=this.getSwitchLocFeatures(e,t,a.state);for(let a of o){let o=String(a.properties?.t_code??``),s=String(a.properties?.s_code??``),c=this.getTrackByCode(o);if(!c)continue;let l=String(c.properties?.fromCode??``),u=String(c.properties?.toCode??``),d=c.properties?.fromLyr,f=c.properties?.toLyr,p=``,m=null;if(l===s?(p=u,m=f):u===s&&(p=l,m=d),m===2){let a=this.getSwitchByCode(p);if(a){r.push(o);let s=String(a.properties?.name??``),c=this.findSwitchInfo(s,t,n);this.validSwitchInfo(c)&&!i.includes(s)&&this.doseTrackConnectSwitch(o,c)&&(i.push(e),this.findHandSwitchPath(s,t,n,r,i))}}else r.push(o)}}doseTrackConnectSwitch(e,t){let n=t.name.split(`:`)[0],r=t.name.split(`:`)[1];return this.getSwitchLocFeatures(n,r,t.state).some(t=>String(t.properties?.t_code??``)===e)}getCircuitState(e,t){let n=4,r=null;try{e.forEach((i,a)=>{let o=this.interLockInsulation.getSignalByInsulationKey(i),s=this.getInsulationSignalState(o??null);if(t==null&&s!=null&&(r=s),s==null&&t!=null&&(s={name:t.name,dir:t.dir,state:`3`}),s!=null&&s.state===`3`){n=2;let t=e.find(e=>e!==i),r=this.findNextCircuit(t,s);if(r!=null){let e=this.interLockInsulation.getSignalByInsulationKey(t);if(this.getControlSignalState(e??null,s)!=4){let e=String(r.properties?.fromCode??``),t=String(r.properties?.toCode??``),n={...r,properties:{...r.properties,controlName:s.name}};this.linkWhiteCircuits.push(n),this.getCircuitState([e,t],s)}}}})}catch(e){console.error(e)}return{circuitState:n,controlName:r==null?``:r.name}}findNextCircuit(e,t){let n=this.pathCircuits.find(n=>{let r=String(n.properties?.fromCode??``),i=String(n.properties?.toCode??``);return t.dir===`up`&&r===e||t.dir===`down`&&i===e});return n?this.linkWhiteCircuits.find(e=>String(e.properties?.code??``)===String(n.properties?.code??``))?null:n:null}getInsulationSignalState(e){if(!e)return null;if(e.upsignal){let t=this.getSignalById(String(e.upsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``),r=this.interLockState.signal.get(e+`:`+n);if(r===`3`)return{name:e,state:r,dir:`up`}}}if(e.downsignal){let t=this.getSignalById(String(e.downsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``),r=this.interLockState.signal.get(e+`:`+n);if(r===`3`)return{name:e,state:r,dir:`down`}}}return null}getControlSignalState(e,t){if(e){if(t.dir===`up`&&e.upsignal){let t=this.getSignalById(String(e.upsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``);return this.interLockState.signal.get(e+`:`+n)}}if(t.dir===`down`&&e.downsignal){let t=this.getSignalById(String(e.downsignal));if(t){let e=String(t.properties?.name??``),n=String(t.properties?.stcode??``);return this.interLockState.signal.get(e+`:`+n)}}}}getSignalFeature(e,t){return this.queryFeatures(`signal`).find(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t))}getSignalById(e){return this.queryFeatures(`signal`).find(t=>String(t.id??t.properties?.code??``)===e)}getSwitchLocFeatures(e,t,n){let r=this.queryFeatures(`switch`).find(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t));if(!r)return[];let i=String(r.properties?.code??``),a=this.queryFeatures(`switch_loc`);return n===`4`?a.filter(e=>String(e.properties?.s_code??``)===i):a.filter(e=>String(e.properties?.s_code??``)===i&&(String(e.properties?.location??``)===n||String(e.properties?.location??``)===`1`))}getSwitchByCode(e){return this.queryFeatures(`switch`).find(t=>String(t.id??t.properties?.code??``)===e)}getTrackByCode(e){return this.queryFeatures(`track`).find(t=>String(t.id??t.properties?.code??``)===e)}getCircuitFeature(e,t){let n=this.queryFeatures(`track_circuit`).filter(n=>n.properties?.name===e&&String(n.properties?.code??``).includes(t));if(n.length===0)return;let r;if(n.length>=1&&(n[0].properties?.type===`1`||n[0].properties?.type===1))return n[0];for(let e of n){if(r)break;if(e.properties?.type===2||e.properties?.type===`2`){let t=String(e.properties?.switches??``).split(`,`),n=String(e.properties?.positions??``).replace(/\s+/g,``).split(`,`).filter(e=>e!==`1`);for(let i=0;i<t.length;i++){let a=t[i],o=n[i],s=this.getSwitchNameByCode(a);if(!s||o!==this.interLockState.switch.get(s+`:`+a.substring(0,9)))break;if(i==t.length-1){r=e;break}}}}return r}getSwitchNameByCode(e){let t=this.queryFeatures(`switch`).find(t=>String(t.properties?.code??``)===e);return t?String(t.properties?.name??``):void 0}findSwitchInfo(e,t,n){let r=e+`:`+t;return n.find(e=>e.name===r)??null}validSwitchInfo(e){return e?e.state===`2`||e.state===`3`:!1}arrToMap(e,t){t?.forEach(t=>e.set(t.name,t.state))}};function Ie(){if(!this.mapConfigs)return;let e=this.mapConfigs.id;this.mapConfigs.sourceLayers?.forEach(t=>{(t.includes(`switch`)||t.includes(`signal`)||t.includes(`track`))&&this.map.querySourceFeatures(e,{sourceLayer:t}).forEach(e=>{this.initGraphFeatureState(e)})})}function Le(e){if(!e||e.length<11)return``;let t=e.charAt(10),n=e.charAt(9);return t===`1`&&n===`0`?`track`:t===`3`?`signal`:t===`2`&&n===`0`||t===`1`&&n===`1`?`switch`:t===`2`&&n===`1`?`circuit`:``}function P(e){if(!e)return;let t=e.properties.code,n=Le(t);if(n===`switch`){let t={state:``,visiable:!0};t.state=`2`;let n=e.properties;this.updateFeatureState(n.code,t)}else if(n===`signal`){let t=e.properties,n=t.attach||0,r=t.func_type,i={state:``,visiable:!0};r==1&&n==0||(r==2||r==3)&&n==0||(r==2||r==3||r==11)&&n==1?(i.state=`red`,this.updateFeatureState(t.code,i)):(r==4||r==5||r==12)&&n==0?(i.state=`blue`,this.updateFeatureState(t.code,i)):r==6&&n==0||(r==7||r==11)&&n==0?(i.state=`red`,this.updateFeatureState(t.code,i)):(i.state=``,this.updateFeatureState(t.code,i))}else if(n===`signal`||n===`circuit`){let t={state:``,visiable:!0},n=e.properties;this.updateFeatureState(n.code,t)}}function Re(e){if(!e.mapConfigs)return;let t=e.mapConfigs.id,n=e.mapConfigs.layers?.reduce((t,n,r)=>(t[n]=e.mapConfigs.sourceLayers[r],t),{});if(n)return new Fe({map:e.map,sourceId:t,sourceLayers:n,updateFeatureState:(t,n)=>e.updateFeatureState(t,n)})}function ze(e){e.initGraphFeatureState=P,e.initState=Ie,e.interLockVisualization=Re(e),e.map.once(`idle`,()=>{})}function Be(){this.mapConfigs&&(this.mapConfigs.layers??[]).forEach(e=>{let t=`geojson_${e}`;this.map.getSource(t)&&this.stashFeatures.forEach(n=>{n.sourceLayer!==t||!n.properties||this.initGeoJsonFeatureState({properties:n.properties},e)})})}function Ve(e,t){if(!e)return;let n=e.properties,r=n?.code;if(r)if(t===`switch`||t===`switch_loc`)this.updateFeatureState(r,{state:`2`,visiable:!0});else if(t===`signal`){let e=n?.attach||0,t=n?.functionType,i={state:``,visiable:!0};t==1&&e==0||(t==2||t==3)&&e==0||(t==2||t==3||t==11)&&e==1||t==6&&e==0||(t==7||t==11)&&e==0?i.state=`red`:(t==4||t==5||t==12)&&e==0&&(i.state=`blue`),this.updateFeatureState(r,i)}else t===`track_circuit`&&this.updateFeatureState(r,{state:3,substate:1,visiable:!0})}function He(e){if(!e.mapConfigs)return;let t=[`signal`,`switch`,`switch_loc`,`track_circuit`,`track`,`insulation`].reduce((e,t)=>(e[t]=`geojson_${t}`,e),{});return new Fe({mode:`geojson`,map:e.map,sourceIds:t,updateFeatureState:(t,n)=>e.updateFeatureState(t,n)})}function Ue(e){e.initGeoJsonFeatureState=Ve,e.initGeoJsonState=Be,e.interLockVisualization=He(e),e.map.once(`idle`,()=>{})}function F(){return F=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},F.apply(null,arguments)}var We=`draw`,Ge=`edit`,Ke=`deleteCoordinate`,qe=`insertMidpoint`,I;(function(e){e.Commit=`commit`,e.Provisional=`provisional`,e.Finish=`finish`})(I||={});var Je=`https://raw.githubusercontent.com/JamesLMilner/terra-draw/refs/heads/main/assets/markers/marker-blue.png`,Ye={SELECTED:`selected`,MID_POINT:`midPoint`,SELECTION_POINT_FEATURE_ID:`selectionPointFeatureId`,SELECTION_POINT:`selectionPoint`},L={MODE:`mode`,CURRENTLY_DRAWING:`currentlyDrawing`,EDITED:`edited`,CLOSING_POINT:`closingPoint`,SNAPPING_POINT:`snappingPoint`,COORDINATE_POINT:`coordinatePoint`,COORDINATE_POINT_FEATURE_ID:`coordinatePointFeatureId`,COORDINATE_POINT_IDS:`coordinatePointIds`,PROVISIONAL_COORDINATE_COUNT:`provisionalCoordinateCount`,COMMITTED_COORDINATE_COUNT:`committedCoordinateCount`,MARKER:`marker`},Xe=10;function R(e){return!!(e&&typeof e==`object`&&e&&!Array.isArray(e))}function z(e){return!!(e&&typeof e==`object`&&`properties`in e&&typeof e.properties==`object`&&e.properties!==null&&`mode`in e.properties)}function B(e){return!!function(e){return typeof e==`number`&&!isNaN(new Date(e).valueOf())}(e)}var Ze=`Feature mode property does not match the mode being added to`,Qe;(function(e){e.Drawing=`drawing`,e.Select=`select`,e.Static=`static`,e.Render=`render`})(Qe||={});var $e={rightClick:!0,contextMenu:!1,leftClick:!0,onDragStart:!0,onDrag:!0,onDragEnd:!0},V=class{get state(){return this._state}set state(e){throw Error(`Please use the modes lifecycle methods`)}get styles(){return this._styles}set styles(e){if(typeof e!=`object`)throw Error(`Styling must be an object`);this.onStyleChange&&this.onStyleChange([],`styling`),this._styles=e}registerBehaviors(e){}constructor(e,t=!1){this._state=`unregistered`,this._styles={},this.pointerEvents=$e,this.behaviors=[],this.validate=void 0,this.pointerDistance=40,this.coordinatePrecision=void 0,this.undoRedoMaxStackSize=void 0,this.onStyleChange=void 0,this.store=void 0,this.projection=`web-mercator`,this.setDoubleClickToZoom=void 0,this.unproject=void 0,this.project=void 0,this.setCursor=void 0,this.isInitialUpdate=!1,this.type=Qe.Drawing,this.mode=`base`,t?this.isInitialUpdate=!0:this.updateOptions(F({},e))}updateOptions(e){e!=null&&e.styles&&(this.styles=F({},this._styles,e.styles)),e!=null&&e.pointerDistance&&(this.pointerDistance=e.pointerDistance),e!=null&&e.validation&&(this.validate=e&&e.validation),e!=null&&e.projection&&(this.projection=e.projection),e?.pointerEvents!==void 0&&(this.pointerEvents=e.pointerEvents),e!=null&&e.modeName&&!0===this.isInitialUpdate&&(this.mode=e.modeName),this.isInitialUpdate=!1}allowPointerEvent(e,t){return typeof e==`boolean`?e:typeof e!=`function`||e(t)}setDrawing(){if(this._state!==`started`)throw Error(`Mode must be unregistered or stopped to start`);this._state=`drawing`}setStarted(){if(this._state!==`stopped`&&this._state!==`registered`&&this._state!==`drawing`&&this._state!==`selecting`)throw Error(`Mode must be unregistered or stopped to start`);this._state=`started`,this.setDoubleClickToZoom(!1)}setStopped(){if(this._state!==`started`)throw Error(`Mode must be started to be stopped`);this._state=`stopped`,this.setDoubleClickToZoom(!0)}register(e){if(this._state!==`unregistered`)throw Error(`Can not register unless mode is unregistered`);this._state=`registered`,this.store=e.store,this.store.registerOnChange(e.onChange),this.setDoubleClickToZoom=e.setDoubleClickToZoom,this.project=e.project,this.unproject=e.unproject,this.onSelect=e.onSelect,this.onDeselect=e.onDeselect,this.setCursor=e.setCursor,this.onStyleChange=e.onChange,this.onFinish=e.onFinish,this.coordinatePrecision=e.coordinatePrecision,this.undoRedoMaxStackSize=e.undoRedoMaxStackSize,this.registerBehaviors({mode:e.mode,store:this.store,project:this.project,unproject:this.unproject,pointerDistance:this.pointerDistance,coordinatePrecision:e.coordinatePrecision,projection:this.projection,undoRedoMaxStackSize:e.undoRedoMaxStackSize})}validateFeature(e){return this.performFeatureValidation(e)}afterFeatureAdded(e){}afterFeatureUpdated(e){}performFeatureValidation(e){if(this._state===`unregistered`)throw Error(`Mode must be registered`);let t=function(e,t){let n;if(R(e))if(e.id==null)n=`Feature has no id`;else if(typeof e.id!=`string`&&typeof e.id!=`number`)n=`Feature must be string or number as per GeoJSON spec`;else if(t(e.id))if(R(e.geometry))if(R(e.properties))if(typeof e.geometry.type==`string`&&[`Polygon`,`LineString`,`Point`].includes(e.geometry.type))if(Array.isArray(e.geometry.coordinates)){if(!e.properties.mode||typeof e.properties.mode!=`string`)return{valid:!1,reason:`Feature does not have a valid mode property`}}else n=`Feature coordinates is not an array`;else n=`Feature is not Point, LineString or Polygon`;else n=`Feature has no properties`;else n=`Feature has no geometry`;else n=`Feature must match the id strategy (default is UUID4)`;else n=`Feature is not object`;return n?{valid:!1,reason:n}:{valid:!0}}(e,this.store.idStrategy.isValidId);if(!t.valid)return t;if(this.validate){let n=this.validate(e,{project:this.project,unproject:this.unproject,coordinatePrecision:this.coordinatePrecision,updateType:I.Provisional});return{valid:t.valid&&n.valid,reason:n.reason}}return{valid:t.valid,reason:t.reason}}validateModeFeature(e,t){let n=this.performFeatureValidation(e);return n.valid?e.properties.mode===this.mode?t(e):{valid:!1,reason:Ze}:{valid:!1,reason:n.reason}}onFinish(e,t){}onDeselect(e){}onSelect(e){}onKeyDown(e){}onKeyUp(e){}undo(){}clearHistory(){}undoSize(){return 0}redoSize(){return 0}redo(){}onMouseMove(e){}onClick(e){}onDragStart(e,t){}onDrag(e,t){}onDragEnd(e,t){}getHexColorStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getNumericStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getUrlStylingValue(e,t,n){return this.getStylingValue(e,t,n)}getStylingValue(e,t,n){return e===void 0?t:typeof e==`function`?(r=e(n))??t:e;var r}},et=class extends V{constructor(...e){super(...e),this.type=Qe.Select}};function tt(e,t){let n=e=>e*Math.PI/180,r=n(e[1]),i=n(e[0]),a=n(t[1]),o=a-r,s=n(t[0])-i,c=Math.sin(o/2)*Math.sin(o/2)+Math.cos(r)*Math.cos(a)*Math.sin(s/2)*Math.sin(s/2);return 2*Math.atan2(Math.sqrt(c),Math.sqrt(1-c))*6371e3/1e3}var nt=6371008.8;function rt(e){return e%360*Math.PI/180}function it(e){return e/6371.0088}function at(e){return e%(2*Math.PI)*180/Math.PI}function H(e,t=9){let n=10**t;return Math.round(e*n)/n}var ot=57.29577951308232,st=.017453292519943295,ct=6378137,U=(e,t)=>({x:e===0?0:e*st*ct,y:t===0?0:Math.log(Math.tan(Math.PI/4+t*st/2))*ct}),lt=(e,t)=>({lng:e===0?0:e/ct*ot,lat:t===0?0:(2*Math.atan(Math.exp(t/ct))-Math.PI/2)*ot});function ut(e,t,n){let r=rt(e[0]),i=rt(e[1]),a=rt(n),o=it(t),s=Math.asin(Math.sin(i)*Math.cos(o)+Math.cos(i)*Math.sin(o)*Math.cos(a));return[at(r+Math.atan2(Math.sin(a)*Math.sin(o)*Math.cos(i),Math.cos(o)-Math.sin(i)*Math.sin(s))),at(s)]}function dt(e){let{center:t,radiusKilometers:n,coordinatePrecision:r}=e,i=e.steps?e.steps:64,a=[];for(let e=0;e<i;e++){let o=ut(t,n,-360*e/i);a.push([H(o[0],r),H(o[1],r)])}return a.push(a[0]),{type:`Feature`,geometry:{type:`Polygon`,coordinates:[a]},properties:{}}}function ft(e){let t;if(e.geometry.type===`Polygon`)t=e.geometry.coordinates;else{if(e.geometry.type!==`LineString`)throw Error(`Self intersects only accepts Polygons and LineStrings`);t=[e.geometry.coordinates]}let n=[];for(let e=0;e<t.length;e++)for(let n=0;n<t[e].length-1;n++)for(let r=0;r<t.length;r++)for(let a=0;a<t[r].length-1;a++)i(e,n,r,a);return n.length>0;function r(e){return e<0||e>1}function i(e,i,a,o){let s=t[e][i],c=t[e][i+1],l=t[a][o],u=t[a][o+1],d=function(e,t,n,r){if(pt(e,n)||pt(e,r)||pt(t,n)||pt(r,n))return null;let i=e[0],a=e[1],o=t[0],s=t[1],c=n[0],l=n[1],u=r[0],d=r[1],f=(i-o)*(l-d)-(a-s)*(c-u);return f===0?null:[((i*s-a*o)*(c-u)-(i-o)*(c*d-l*u))/f,((i*s-a*o)*(l-d)-(a-s)*(c*d-l*u))/f]}(s,c,l,u);if(d===null)return;let f,p;f=c[0]===s[0]?(d[1]-s[1])/(c[1]-s[1]):(d[0]-s[0])/(c[0]-s[0]),p=u[0]===l[0]?(d[1]-l[1])/(u[1]-l[1]):(d[0]-l[0])/(u[0]-l[0]),r(f)||r(p)||(d.toString(),n.push(d))}}function pt(e,t){return e[0]===t[0]&&e[1]===t[1]}function mt(e,t){return gt(e[0])<=t&&gt(e[1])<=t}function ht(e){return e.length===2&&typeof e[0]==`number`&&typeof e[1]==`number`&&e[0]!==1/0&&e[1]!==1/0&&(n=e[0])>=-180&&n<=180&&(t=e[1])>=-90&&t<=90;var t,n}function gt(e){let t=1,n=0;for(;Math.round(e*t)/t!==e;)t*=10,n++;return n}var _t=`Feature has holes`,vt=`Feature has less than 4 coordinates`,yt=`Feature has invalid coordinates`,bt=`Feature coordinates are not closed`;function xt(e,t){if(e.geometry.type!==`Polygon`)return{valid:!1,reason:`Feature is not a Polygon`};if(e.geometry.coordinates.length!==1)return{valid:!1,reason:_t};if(e.geometry.coordinates[0].length<4)return{valid:!1,reason:vt};for(let n=0;n<e.geometry.coordinates[0].length;n++){if(!ht(e.geometry.coordinates[0][n]))return{valid:!1,reason:yt};if(!mt(e.geometry.coordinates[0][n],t))return{valid:!1,reason:`Feature has coordinates with excessive precision`}}return(n=e.geometry.coordinates[0][0])[0]!==(r=e.geometry.coordinates[0][e.geometry.coordinates[0].length-1])[0]||n[1]!==r[1]?{valid:!1,reason:bt}:{valid:!0};var n,r}function St(e,t){let n=xt(e,t);return n.valid?ft(e)?{valid:!1,reason:`Feature intersects itself`}:{valid:!0}:n}var Ct=class{constructor({store:e,mode:t,project:n,unproject:r,pointerDistance:i,coordinatePrecision:a,projection:o,undoRedoMaxStackSize:s}){this.store=void 0,this.mode=void 0,this.project=void 0,this.unproject=void 0,this.pointerDistance=void 0,this.coordinatePrecision=void 0,this.projection=void 0,this.undoRedoMaxStackSize=void 0,this.store=e,this.mode=t,this.project=n,this.unproject=r,this.pointerDistance=i,this.coordinatePrecision=a,this.projection=o,this.undoRedoMaxStackSize=s}};function wt(e){if(!function(e){let t=e.coordinates[0],n=0;for(let e=0;e<t.length-1;e++){let[r,i]=t[e],[a,o]=t[e+1];n+=(a-r)*(o+i)}return n<0}(e))return{type:`Polygon`,coordinates:[e.coordinates[0].reverse()]}}var Tt=`insert-before`,Et=`insert-after`,Dt=`update`,Ot=`delete`,kt=`replace`,At=class extends Ct{constructor(e,t){super(e),this.options=void 0,this.options=t}createPoint({coordinates:e,properties:t,context:n}){if(n?.updateType!==I.Finish||this.validateGeometryWithUpdateType({geometry:{type:`Point`,coordinates:e},properties:t,updateType:I.Finish}))return this.handleCreateFeature({geometry:{type:`Point`,coordinates:e},properties:t})}createLineString({coordinates:e,properties:t}){return this.handleCreateFeature({geometry:{type:`LineString`,coordinates:e},properties:t})}createPolygon({coordinates:e,properties:t}){let n=wt({type:`Polygon`,coordinates:[e]});return this.handleCreateFeature({geometry:{type:`Polygon`,coordinates:n?n.coordinates:[e]},properties:t})}createGuidancePoint({coordinate:e,type:t}){return this.createGuidancePoints({coordinates:[e],type:t})[0]}createGuidancePoints({coordinates:e,type:t,additionalProperties:n}){let r=e.map((e,r)=>({type:`Feature`,geometry:{type:`Point`,coordinates:e},properties:F({mode:this.mode,[t]:!0},n?n(r):{})}));return this.createFeatures(r)}updatePoint({featureId:e,coordinateMutations:t,propertyMutations:n,context:r}){return this.handleMutateFeature({type:`Point`,featureId:e,coordinateMutations:t,propertyMutations:n,context:r})}updatePolygon({featureId:e,coordinateMutations:t,context:n,propertyMutations:r}){return this.handleMutateFeature({type:`Polygon`,featureId:e,coordinateMutations:t,propertyMutations:r,context:n})}updateLineString({featureId:e,coordinateMutations:t,context:n,propertyMutations:r}){return this.handleMutateFeature({type:`LineString`,featureId:e,coordinateMutations:t,propertyMutations:r,context:n})}deleteFeatureIfPresent(e){e&&this.store.has(e)&&this.store.delete([e])}deleteFeaturesIfPresent(e){if(e.length===0)return;let t=e.filter(e=>this.store.has(e));t.length&&this.store.delete(t)}setDeselected(e){let t=e.filter(e=>this.store.has(e)).map(e=>({featureId:e,properties:{[Ye.SELECTED]:!1}}));this.updateFeatureProperties(t)}setSelected(e){let{type:t}=this.store.getGeometryCopy(e),n={featureId:e,propertyMutations:{[Ye.SELECTED]:!0},context:{updateType:I.Commit}};t===`Polygon`?this.updatePolygon(n):t===`LineString`?this.updateLineString(n):t===`Point`&&this.updatePoint(n)}updateGuidancePoints(e){this.updateFeatureGeometries(e.map(({featureId:e,coordinate:t})=>({id:e,geometry:{type:`Point`,coordinates:t}})))}handleCreateFeature({geometry:e,properties:t}){return this.createFeatureWithGeometry({geometry:e,properties:t})}handleMutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i}){if(!this.mutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i.updateType===I.Finish?F({},i,{correctRightHandRule:!0}):F({},i)}))return null;let a=this.buildFeatureWithGeometry(t);return i.updateType!==I.Finish||n||this.validateGeometryWithUpdateType({geometry:a.geometry,properties:a.properties,updateType:i.updateType})?a:null}mutateFeature({type:e,featureId:t,coordinateMutations:n,propertyMutations:r,context:i}){if(!t)return!1;let a=this.store.getGeometryCopy(t),o=this.store.getPropertiesCopy(t);if(a.type!==e)throw Error(`${e} geometries cannot be updated on features with ${a.type} geometries`);if(n){let e=this.applyCoordinateMutations(a,n);if(i.correctRightHandRule&&e.type===`Polygon`){let t=wt(e);t&&(e=t)}if(!this.validateGeometryWithUpdateType({geometry:e,properties:o,updateType:i.updateType}))return!1;this.updateFeatureGeometries([{id:t,geometry:e}])}return r&&this.updateFeatureProperties([{featureId:t,properties:r}]),!0}applyCoordinateMutations(e,t){if(this.isReplaceMutation(t))return F({},e,{coordinates:t.coordinates});if(e.type===`Point`)throw Error(`Coordinate mutations are not supported for Point geometries`);let n=e.type===`Polygon`,r=n?e.coordinates[0].slice():e.coordinates.slice(),i=r.length,a=e=>{let t=e<0?i+e:e;if(t<0||t>=i)throw RangeError(`Index ${e} (normalized to ${t}) is out of bounds`);return t},o=Array(i).fill(void 0),s=Array.from({length:i},()=>[]),c=Array.from({length:i},()=>[]),l=[];for(let e of t){if(e.type===Tt||e.type===Et){let t=e.index,n=t<0?i+t:t;if(n<0||n>i)throw RangeError(`Index ${e.index} (normalized to ${n}) is out of bounds`);if(e.type===Tt){if(n>=i)throw RangeError(`INSERT_BEFORE index ${e.index} (normalized to ${n}) is out of bounds for length ${i}`);s[n].push(e)}else n===i?l.push(e):c[n].push(e);continue}let t=a(e.index);o[t]=F({},e,{index:t})}let u=[];for(let e=0;e<i;e++){let t=s[e];for(let e of t)u.push(e.coordinate);let n=o[e];n?n.type===Ot||u.push(n.coordinate):u.push(r[e]);let i=c[e];for(let e of i)u.push(e.coordinate)}for(let e of l)u.push(e.coordinate);return F({},e,n?{coordinates:[u,...e.coordinates.slice(1)]}:{coordinates:u})}isReplaceMutation(e){return e.type===kt}createFeatureWithGeometry({geometry:e,properties:t}){let[n]=this.createFeatures([{type:`Feature`,geometry:e,properties:t}]);return{id:n,type:`Feature`,properties:this.store.getPropertiesCopy(n),geometry:this.store.getGeometryCopy(n)}}validateGeometryWithUpdateType({geometry:e,properties:t,updateType:n}){return!this.options.validate||this.options.validate({type:`Feature`,geometry:e,properties:t||{}},{project:this.project,unproject:this.unproject,coordinatePrecision:this.coordinatePrecision,updateType:n}).valid}buildFeatureWithGeometry(e){return{id:e,type:`Feature`,properties:this.store.getPropertiesCopy(e),geometry:this.store.getGeometryCopy(e)}}createFeatures(e){return this.store.create(e)}updateFeatureGeometries(e){this.store.updateGeometry(e)}updateFeatureProperties(e){let t=e.map(({featureId:e,properties:t})=>Object.entries(t).map(([t,n])=>({id:e,property:t,value:n}))).flat();this.store.updateProperty(t)}},jt={cancel:`Escape`,finish:`Enter`},Mt={start:`crosshair`},Nt=class extends V{constructor(e){super(e,!0),this.mode=`circle`,this.center=void 0,this.endPosition=void 0,this.segments=64,this.currentCircleId=void 0,this.keyEvents=jt,this.cursors=Mt,this.startingRadiusKilometers=1e-5,this.cursorMovedAfterInitialCursorDown=!1,this.drawInteraction=`click-move`,this.drawType=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.startingRadiusKilometers&&(this.startingRadiusKilometers=e.startingRadiusKilometers),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction),e!=null&&e.segments&&(this.segments=e.segments<3?3:e.segments)}close(){if(this.currentCircleId===void 0||this.endPosition===void 0||!this.updateCircle(this.endPosition,I.Finish))return;let e=this.currentCircleId;this.cursorMovedAfterInitialCursorDown=!1,this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}beginDrawing(e,t=`click`){this.center=[e.lng,e.lat],this.endPosition=[e.lng,e.lat];let n=dt({center:this.center,radiusKilometers:this.startingRadiusKilometers,coordinatePrecision:this.coordinatePrecision}),r=this.mutateFeature.createPolygon({coordinates:n.geometry.coordinates[0],properties:{mode:this.mode,radiusKilometers:this.startingRadiusKilometers,[L.CURRENTLY_DRAWING]:!0}});r&&(this.currentCircleId=r.id,this.cursorMovedAfterInitialCursorDown=!1,this.drawType=t,this.setDrawing())}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.center?this.center&&this.currentCircleId!==void 0&&(this.endPosition=[e.lng,e.lat],this.close()):this.beginDrawing(e))}onMouseMove(e){this.cursorMovedAfterInitialCursorDown=!0,this.endPosition=[e.lng,e.lat],this.updateCircle(this.endPosition,I.Provisional)}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){this.state!==`drawing`&&this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.cursorMovedAfterInitialCursorDown=!0,this.endPosition=[e.lng,e.lat],this.updateCircle(this.endPosition,I.Provisional))}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.close(),t(!0))}cleanUp(){let e=this.currentCircleId;this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}updateCircle(e,t){if(this.currentCircleId===void 0||this.center===void 0)return;let n=t===I.Finish,r,i;if(this.cursorMovedAfterInitialCursorDown)if(i=tt(this.center,e),this.projection===`web-mercator`){let t=function(e,t){let n=1e3*tt(e,t);if(n===0)return 1;let{x:r,y:i}=U(e[0],e[1]),{x:a,y:o}=U(t[0],t[1]);return Math.sqrt((a-r)**2+(o-i)**2)/n}(this.center,e);r=function(e){let{center:t,radiusKilometers:n,coordinatePrecision:r}=e,i=e.steps?e.steps:64,a=1e3*n,[o,s]=t,{x:c,y:l}=U(o,s),u=[];for(let e=0;e<i;e++){let t=360*e/i*Math.PI/180,n=a*Math.cos(t),o=a*Math.sin(t),[s,d]=[c+n,l+o],{lng:f,lat:p}=lt(s,d);u.push([H(f,r),H(p,r)])}return u.push(u[0]),{type:`Feature`,geometry:{type:`Polygon`,coordinates:[u]},properties:{}}}({center:this.center,radiusKilometers:i*t,coordinatePrecision:this.coordinatePrecision,steps:this.segments})}else{if(this.projection!==`globe`)throw Error(`Invalid projection`);r=dt({center:this.center,radiusKilometers:i,coordinatePrecision:this.coordinatePrecision,steps:this.segments})}let a={};return r&&i&&(a.radiusKilometers=i),n&&(a[L.CURRENTLY_DRAWING]=void 0),this.mutateFeature.updatePolygon({featureId:this.currentCircleId,coordinateMutations:r?{type:kt,coordinates:r.geometry.coordinates}:void 0,propertyMutations:a,context:n?{updateType:t,action:We}:{updateType:t}})}afterFeatureUpdated(e){this.currentCircleId===e.id&&(this.cursorMovedAfterInitialCursorDown=!1,this.center=void 0,this.currentCircleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.mutateFeature=new At(e,{validate:this.validate})}},Pt=(e,t)=>{let{x:n,y:r}=e,{x:i,y:a}=t,o=i-n,s=a-r;return Math.sqrt(s*s+o*o)};function W(e,t){return e[0]===t[0]&&e[1]===t[1]}var Ft=class extends Ct{constructor(e){super(e)}getGeometryType(e){return this.store.getGeometryCopy(e).type}coordinateAtIndexIsIdentical({featureId:e,newCoordinate:t,index:n}){let r=this.store.getGeometryCopy(e),i;if(r.type===`Polygon`)i=r.coordinates[0][n];else if(r.type===`LineString`)i=r.coordinates[n];else{if(n!==0)throw Error(`Point geometries only have one coordinate at index 0`);i=r.coordinates}return W(t,i)}getGeometry(e){return this.store.getGeometryCopy(e)}getCoordinates(e){let{type:t,coordinates:n}=this.store.getGeometryCopy(e);return t===`Polygon`?n[0]:n}getCoordinate(e,t){let n=this.getCoordinates(e),r=t<0?n.length+t:t;if(r<0||r>=n.length)throw RangeError(`Index ${t} (normalized to ${r}) is out of bounds`);return n[r]}getProperties(e){return this.store.getPropertiesCopy(e)}hasFeature(e){return this.store.has(e)}getAllFeatureIdsWhere(e){return this.store.copyAllWhere(e).map(({id:e})=>e)}},It={cancel:`Escape`,finish:`Enter`},G={start:`crosshair`,close:`pointer`},Lt=class extends V{constructor(e){super(e,!0),this.mode=`freehand`,this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.minDistance=20,this.keyEvents=It,this.cursors=G,this.preventPointsNearClose=!0,this.autoClose=!1,this.autoCloseTimeout=500,this.hasLeftStartingPoint=!1,this.preventNewFeature=!1,this.drawInteraction=`click-move`,this.drawType=void 0,this.smoothing=0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.minDistance&&(this.minDistance=e.minDistance),e?.smoothing!==void 0&&(this.smoothing=Math.min(Math.max(e.smoothing,0),.999)),e?.preventPointsNearClose!==void 0&&(this.preventPointsNearClose=e.preventPointsNearClose),e?.autoClose!==void 0&&(this.autoClose=e.autoClose),e!=null&&e.autoCloseTimeout&&(this.autoCloseTimeout=e.autoCloseTimeout),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction)}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}beginDrawing(e,t=`click`){let{id:n}=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=n,this.drawType=t,this.closingPointId=this.mutateFeature.createGuidancePoint({coordinate:[e.lng,e.lat],type:L.CLOSING_POINT}),this.canClose=!0,this.state!==`drawing`&&this.setDrawing()}addCoordinate(e){if(this.currentId===void 0||!1===this.canClose)return void this.setCursor(this.cursors.start);let[t,n]=this.readFeature.getCoordinate(this.currentId,-2),{x:r,y:i}=this.project(t,n),a=Pt({x:r,y:i},{x:e.containerX,y:e.containerY}),[o,s]=this.readFeature.getCoordinate(this.currentId,0),{x:c,y:l}=this.project(o,s);if(Pt({x:c,y:l},{x:e.containerX,y:e.containerY})<this.pointerDistance){if(this.autoClose&&this.hasLeftStartingPoint&&(this.preventNewFeature=!0,setTimeout(()=>{this.preventNewFeature=!1},this.autoCloseTimeout),this.close()),this.setCursor(this.cursors.close),this.preventPointsNearClose)return}else this.hasLeftStartingPoint=!0,this.setCursor(this.cursors.start);if(a<this.minDistance)return;let u=this.getSmoothedCoordinate([t,n],[e.lng,e.lat]);this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Tt,index:-1,coordinate:u}],context:{updateType:I.Provisional}})}getSmoothedCoordinate(e,t){if(this.smoothing===0)return t;let[n,r]=e,[i,a]=t;return[n*this.smoothing+i*(1-this.smoothing),r*this.smoothing+a*(1-this.smoothing)]}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.mutateFeature.deleteFeatureIfPresent(this.closingPointId),this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.hasLeftStartingPoint=!1,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){this.moveDrawAllowed()&&this.drawType===`click`&&this.addCoordinate(e)}onClick(e){if(this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))){if(this.preventNewFeature)return;if(!1===this.canClose)return void this.beginDrawing(e);this.close()}}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&!0===this.canClose&&this.close()}onDragStart(e,t){this.state!==`drawing`&&(this.preventNewFeature||this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&this.addCoordinate(e)}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.preventNewFeature=!0,setTimeout(()=>{this.preventNewFeature=!1},this.autoCloseTimeout),this.close(),t(!0))}cleanUp(){let e=this.currentId,t=this.closingPointId;this.closingPointId=void 0,this.currentId=void 0,this.canClose=!1,this.hasLeftStartingPoint=!1,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode?(t.pointWidth=this.getNumericStylingValue(this.styles.closingPointWidth,t.pointWidth,e),t.pointColor=this.getHexColorStylingValue(this.styles.closingPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.closingPointOpacity,t.pointOpacity===void 0?1:t.pointOpacity,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.closingPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.closingPointOutlineWidth,2,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.closingPointOutlineOpacity,t.pointOutlineOpacity===void 0?1:t.pointOutlineOpacity,e),t.zIndex=50,t):t}validateFeature(e){return this.validateModeFeature(e,e=>xt(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.mutateFeature.deleteFeatureIfPresent(this.closingPointId),this.canClose=!1,this.currentId=void 0,this.closingPointId=void 0,this.hasLeftStartingPoint=!1)}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}};function Rt({unproject:e,point:t,pointerDistance:n}){let r=n/2,{x:i,y:a}=t;return{type:`Feature`,properties:{},geometry:{type:`Polygon`,coordinates:[[e(i-r,a-r),e(i+r,a-r),e(i+r,a+r),e(i-r,a+r),e(i-r,a-r)].map(e=>[e.lng,e.lat])]}}}var zt=class extends Ct{constructor(e){super(e)}create(e){let{containerX:t,containerY:n}=e;return Rt({unproject:this.unproject,point:{x:t,y:n},pointerDistance:this.pointerDistance})}},Bt=class extends Ct{constructor(e){super(e)}measure(e,t){let{x:n,y:r}=this.project(t[0],t[1]);return Pt({x:n,y:r},{x:e.containerX,y:e.containerY})}},Vt=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.getSnappableCoordinateFirstClick=e=>this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode)).coordinate,this.getSnappableCoordinate=(e,t)=>this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode&&e.id!==t)).coordinate,this.config=e,this.pixelDistance=t,this.clickBoundingBox=n}getSnappable(e,t){let n=this.clickBoundingBox.create(e),r=this.store.search(n,t),i={featureId:void 0,featureCoordinateIndex:void 0,coordinate:void 0,minDist:1/0};return r.forEach(t=>{let n;if(t.geometry.type===`Polygon`)n=t.geometry.coordinates[0];else{if(t.geometry.type!==`LineString`)return;n=t.geometry.coordinates}n.forEach((n,r)=>{let a=this.pixelDistance.measure(e,n);a<i.minDist&&a<this.pointerDistance&&(i.coordinate=n,i.minDist=a,i.featureId=t.id,i.featureCoordinateIndex=r)})}),i}};function Ht(e,t,n){let r=rt(e[0]),i=rt(e[1]),a=rt(n),o=it(t),s=Math.asin(Math.sin(i)*Math.cos(o)+Math.cos(i)*Math.sin(o)*Math.cos(a));return[at(r+Math.atan2(Math.sin(a)*Math.sin(o)*Math.cos(i),Math.cos(o)-Math.sin(i)*Math.sin(s))),at(s)]}function Ut({x:e,y:t},n,r){let i=rt(r);return{x:e+n*Math.cos(i),y:t+n*Math.sin(i)}}function Wt(e,t){let n=rt(e[0]),r=rt(t[0]),i=rt(e[1]),a=rt(t[1]),o=Math.sin(r-n)*Math.cos(a),s=Math.cos(i)*Math.sin(a)-Math.sin(i)*Math.cos(a)*Math.cos(r-n);return at(Math.atan2(o,s))}function Gt({x:e,y:t},{x:n,y:r}){let i=n-e,a=r-t;if(i===0&&a===0)return 0;let o=Math.atan2(a,i);return o*=180/Math.PI,o>180?o-=360:o<-180&&(o+=360),o}function Kt(e){return(e+360)%360}function qt(e,t,n){let r=[],i=e.length,a,o,s,c=0;for(let i=0;i<e.length&&!(t>=c&&i===e.length-1);i++){if(c>t&&r.length===0){if(a=t-c,!a)return r.push(e[i]),r;o=Wt(e[i],e[i-1])-180,s=Ht(e[i],a,o),r.push(s)}if(c>=n)return a=n-c,a?(o=Wt(e[i],e[i-1])-180,s=Ht(e[i],a,o),r.push(s),r):(r.push(e[i]),r);if(c>=t&&r.push(e[i]),i===e.length-1)return r;c+=tt(e[i],e[i+1])}if(c<t&&e.length===i)throw Error(`Start position is beyond line`);let l=e[e.length-1];return[l,l]}function Jt(e){return Math.PI/180*e}function Yt(e){return 180/Math.PI*e}var Xt=class extends Ct{constructor(e){super(e),this.config=void 0,this.config=e}generateInsertionCoordinates(e,t,n){let r=[e,t],i=0;for(let e=0;e<r.length-1;e++)i+=tt(r[0],r[1]);if(i<=n)return r;let a=i/n-1;Number.isInteger(a)||(a=Math.floor(a)+1);let o=[];for(let e=0;e<a;e++){let t=qt(r,n*e,n*(e+1));o.push(t)}let s=[];for(let e=0;e<o.length;e++)s.push(o[e][1]);return this.limitCoordinates(s)}generateInsertionGeodesicCoordinates(e,t,n){let r=tt(e,t),i=function(e,t,n){let r=[],i=Jt(e[1]),a=Jt(e[0]),o=Jt(t[1]),s=Jt(t[0]);n+=1;let c=2*Math.asin(Math.sqrt(Math.sin((o-i)/2)**2+Math.cos(i)*Math.cos(o)*Math.sin((s-a)/2)**2));if(c===0||isNaN(c))return r;for(let e=0;e<=n;e++){let t=e/n,l=Math.sin((1-t)*c)/Math.sin(c),u=Math.sin(t*c)/Math.sin(c),d=l*Math.cos(i)*Math.cos(a)+u*Math.cos(o)*Math.cos(s),f=l*Math.cos(i)*Math.sin(a)+u*Math.cos(o)*Math.sin(s),p=l*Math.sin(i)+u*Math.sin(o);if(isNaN(d)||isNaN(f)||isNaN(p))continue;let m=Math.atan2(p,Math.sqrt(d**2+f**2)),h=Math.atan2(f,d);isNaN(m)||isNaN(h)||r.push([Yt(h),Yt(m)])}return r.slice(1,-1)}(e,t,Math.floor(r/n));return this.limitCoordinates(i)}limitCoordinates(e){return e.map(e=>[H(e[0],this.config.coordinatePrecision),H(e[1],this.config.coordinatePrecision)])}};function Zt(e,t){if(e.geometry.type!==`LineString`)return{valid:!1,reason:`Feature is not a LineString`};if(e.geometry.coordinates.length<2)return{valid:!1,reason:`Feature has less than 2 coordinates`};for(let n=0;n<e.geometry.coordinates.length;n++){if(!ht(e.geometry.coordinates[n]))return{valid:!1,reason:`Feature has invalid coordinates`};if(!mt(e.geometry.coordinates[n],t))return{valid:!1,reason:`Feature has coordinates with excessive precision`}}return{valid:!0}}function Qt(e){return Math.sqrt(e[0]**2+e[1]**2+e[2]**2)}function $t(e,t){let n=function(e,t){let[n,r,i]=e,[a,o,s]=t;return n*a+r*o+i*s}(e,t)/(Qt(e)*Qt(t));return Math.acos(Math.min(Math.max(n,-1),1))}function en(e){let t=rt(e[1]),n=rt(e[0]);return[Math.cos(t)*Math.cos(n),Math.cos(t)*Math.sin(n),Math.sin(t)]}function tn(e){let[t,n,r]=e,i=at(Math.asin(r));return[at(Math.atan2(n,t)),i]}function K(e,t,n){let r=en(e),i=en(t),[a,o,s]=en(n),[c,l,u]=function(e,t){let[n,r,i]=e,[a,o,s]=t;return[r*s-i*o,i*a-n*s,n*o-r*a]}(r,i),d=l*s-u*o,f=u*a-c*s,p=c*o-l*a,m=p*l-f*u,h=d*u-p*c,g=f*c-d*l,_=1/Math.sqrt(m**2+h**2+g**2),v=[m*_,h*_,g*_],y=[-1*m*_,-1*h*_,-1*g*_],b=$t(r,i),x=$t(r,v),S=$t(i,v),C=$t(r,y),w=$t(i,y),T;return T=x<C&&x<w||S<C&&S<w?v:y,$t(r,T)>b||$t(i,T)>b?tt(tn(T),tn(r))<=tt(tn(T),tn(i))?[tn(r),!0,!1]:[tn(i),!1,!0]:[tn(T),!1,!1]}function q(e,t,n){let r=t.x-e.x,i=t.y-e.y,a=Math.max(0,Math.min(1,((n.x-e.x)*r+(n.y-e.y)*i)/(r*r+i*i)));return{x:e.x+a*r,y:e.y+a*i}}var nn=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.getSnappableCoordinateFirstClick=e=>{let t=this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode));return t.coordinate?[H(t.coordinate[0],this.config.coordinatePrecision),H(t.coordinate[1],this.config.coordinatePrecision)]:void 0},this.getSnappableCoordinate=(e,t)=>{let n=this.getSnappable(e,e=>!!(e.properties&&e.properties.mode===this.mode&&e.id!==t));return n.coordinate?[H(n.coordinate[0],this.config.coordinatePrecision),H(n.coordinate[1],this.config.coordinatePrecision)]:void 0},this.config=e,this.pixelDistance=t,this.clickBoundingBox=n}getSnappable(e,t){let n=this.clickBoundingBox.create(e),r=this.store.search(n,t),i={featureId:void 0,featureCoordinateIndex:void 0,coordinate:void 0,minDistance:1/0};return r.forEach(t=>{let n;if(t.geometry.type===`Polygon`)n=t.geometry.coordinates[0];else{if(t.geometry.type!==`LineString`)return;n=t.geometry.coordinates}let r=[];for(let e=0;e<n.length-1;e++)r.push([n[e],n[e+1]]);let a,o=[e.lng,e.lat];if(this.config.projection===`web-mercator`?a=function(e,t){let n=[1/0,1/0],r=1/0,i=0;for(let a of t){let o=a[0],s=a[1],c,l=1/0,u=U(o[0],o[1]),d=U(s[0],s[1]),f=U(e[0],e[1]);if(o[0]===e[0]&&o[1]===e[1])c=o;else if(s[0]===e[0]&&s[1]===e[1])c=s;else{let{x:e,y:t}=q(u,d,f),{lng:n,lat:r}=lt(e,t);c=[n,r]}c&&(l=Pt(f,U(c[0],c[1])),l<r&&(n=c,r=l,i=t.indexOf(a)))}return r===1/0?void 0:{coordinate:n,lineIndex:i,distance:r}}(o,r):this.config.projection===`globe`&&(a=function(e,t){let n=[1/0,1/0],r=1/0,i=0;for(let a of t){let o=a[0],s=a[1],c,l=1/0;o[0]===e[0]&&o[1]===e[1]?c=o:s[0]===e[0]&&s[1]===e[1]?c=s:[c]=K(o,s,e),c&&(l=tt(e,c),l<r&&(n=c,r=l,i=t.indexOf(a)))}return r===1/0?void 0:{coordinate:n,distance:r,lineIndex:i}}(o,r)),!a)return;let s=this.pixelDistance.measure(e,a.coordinate);s<i.minDistance&&s<this.pointerDistance&&(i.featureId=t.id,i.coordinate=[H(a.coordinate[0],this.config.coordinatePrecision),H(a.coordinate[1],this.config.coordinatePrecision)],i.featureCoordinateIndex=a.lineIndex,i.minDistance=s)}),i}};function J(e){return Array.isArray(e)&&e.length>0&&Array.isArray(e[0])&&Array.isArray(e[0][0])}var rn=e=>J(e)?e[0].slice(0,-1):e,an=e=>J(e)?e[0]:e,on=class extends Ct{constructor(e,t,n,r){super(e),this.config=void 0,this.pixelDistance=void 0,this.mutateFeatureBehavior=void 0,this.readFeatureBehavior=void 0,this._startEndPoints=[],this.config=e,this.pixelDistance=t,this.mutateFeatureBehavior=n,this.readFeatureBehavior=r}get ids(){return this._startEndPoints.concat()}set ids(e){}create(e){if(this.ids.length)throw Error(`Opening and closing points already created`);let t=J(e),n=an(e);if(t){if(n.length<=3)throw Error(`Requires at least 4 coordinates`);this._startEndPoints=this.mutateFeatureBehavior.createGuidancePoints({coordinates:[n[0],n[n.length-2]],type:L.CLOSING_POINT})}else this._startEndPoints=[this.mutateFeatureBehavior.createGuidancePoint({coordinate:n[n.length-2],type:L.CLOSING_POINT})]}delete(){this.ids.length&&(this.mutateFeatureBehavior.deleteFeaturesIfPresent(this.ids),this._startEndPoints=[])}updateOne(e,t){this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[e],coordinate:t}])}update(e){let t=an(e);this.ids.length===1?this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[0],coordinate:t[t.length-2]}]):this.ids.length===2&&this.mutateFeatureBehavior.updateGuidancePoints([{featureId:this.ids[0],coordinate:t[0]},{featureId:this.ids[1],coordinate:t[t.length-3]}])}isLineStringClosingPoint(e){if(this.ids.length!==1)return{isClosing:!1};let t=this.readFeatureBehavior.getGeometry(this.ids[0]);return{isClosing:this.pixelDistance.measure(e,t.coordinates)<this.pointerDistance}}isPolygonClosingPoints(e){if(this.ids.length!==2)return{isClosing:!1,isPreviousClosing:!1};let t=this.readFeatureBehavior.getGeometry(this.ids[0]),n=this.readFeatureBehavior.getGeometry(this.ids[1]),r=this.pixelDistance.measure(e,t.coordinates),i=this.pixelDistance.measure(e,n.coordinates);return{isClosing:r<this.pointerDistance,isPreviousClosing:i<this.pointerDistance}}},sn=class extends Ct{constructor(e,t,n){super(e),this.readFeature=void 0,this.mutateFeature=void 0,this.readFeature=t,this.mutateFeature=n}createOrUpdate({featureId:e,featureCoordinates:t}){if(!this.readFeature.hasFeature(e))return void this.deleteOrphanedPoints(e);let n=rn(t),r=this.readFeature.getProperties(e),i=r.coordinatePointIds;if(i)if(i&&i.every(e=>this.readFeature.hasFeature(e))){let t=r.coordinatePointIds,i=t.map(e=>this.readFeature.getGeometry(e).coordinates);if(t.length!==n.length){this.deleteCoordinatePoints(t);let i=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,i)}else{let e=[];n.forEach((n,r)=>{n[0]===i[r][0]&&n[1]===i[r][1]||e.push({featureId:t[r],coordinate:n})}),this.mutateFeature.updateGuidancePoints(e)}}else{let t=i.filter(e=>this.readFeature.hasFeature(e));t.length&&this.deleteCoordinatePoints(t);let a=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,a)}else{let t=this.createPoints(n,r.mode,e);this.setFeatureCoordinatePoints(e,t)}}deletePointsByFeatureIds(e){for(let t of e)this.deleteIfPresent(t)}updateOneAtIndex(e,t,n){let r=this.readFeature.getProperties(e).coordinatePointIds;r&&r.length!==0&&r[t]!==void 0&&this.mutateFeature.updateGuidancePoints([{featureId:r[t],coordinate:n}])}updateAllInPlace({featureId:e,featureCoordinates:t}){let n=this.readFeature.getProperties(e);if(!n.coordinatePointIds)return;let r=rn(t);r.length===n.coordinatePointIds.length&&this.mutateFeature.updateGuidancePoints(n.coordinatePointIds.map((e,t)=>({featureId:e,coordinate:r[t]})))}createPoints(e,t,n){return this.mutateFeature.createGuidancePoints({coordinates:e,type:L.COORDINATE_POINT,additionalProperties:e=>({mode:t,[L.COORDINATE_POINT]:!0,[L.COORDINATE_POINT_FEATURE_ID]:n,index:e})})}setFeatureCoordinatePoints(e,t,n=I.Commit){let r=this.readFeature.getGeometryType(e),i={featureId:e,propertyMutations:{[L.COORDINATE_POINT_IDS]:t},context:{updateType:n}};if(r===`Polygon`)this.mutateFeature.updatePolygon(i);else{if(r!==`LineString`)throw Error(`Unsupported geometry type for coordinate points`);this.mutateFeature.updateLineString(i)}}deleteCoordinatePoints(e){this.mutateFeature.deleteFeaturesIfPresent(e)}deleteIfPresent(e){if(!this.readFeature.hasFeature(e))return;let t=this.readFeature.getProperties(e).coordinatePointIds;t&&(this.deleteCoordinatePoints(t),this.setFeatureCoordinatePoints(e,null))}deleteOrphanedPoints(e){let t=this.readFeature.getAllFeatureIdsWhere(t=>t[L.COORDINATE_POINT_FEATURE_ID]===e);this.mutateFeature.deleteFeaturesIfPresent(t)}},cn=class{constructor(e){this.undoHistory=[],this.redoHistory=[],this.cloneCoordinatesFunction=void 0,this.maxStackSize=void 0,this.cloneCoordinatesFunction=e=>this.cloneRecursively(e);let t=e?.maxStackSize;this.maxStackSize=t!==void 0&&Number.isFinite(t)?Math.max(0,Math.floor(t)):1/0}setMaxStackSize(e){Number.isFinite(e)?(this.maxStackSize=Math.max(0,Math.floor(e)),this.trimHistoryToMax(this.undoHistory),this.trimHistoryToMax(this.redoHistory)):this.maxStackSize=1/0}trimHistoryToMax(e){if(Number.isFinite(this.maxStackSize))for(;e.length>this.maxStackSize;)e.shift()}pushUndoEntry(e){this.maxStackSize!==0&&(this.undoHistory.push(e),this.trimHistoryToMax(this.undoHistory))}pushRedoEntry(e){this.maxStackSize!==0&&(this.redoHistory.push(e),this.trimHistoryToMax(this.redoHistory))}cloneRecursively(e){return Array.isArray(e)?e.map(e=>this.cloneRecursively(e)):typeof e==`object`&&e?F({},e):e}cloneCoordinates(e){return this.cloneCoordinatesFunction(e)}cloneEntry(e){return{featureCoordinates:this.cloneCoordinates(e.featureCoordinates),currentCoordinate:e.currentCoordinate}}clear(){this.undoHistory=[],this.redoHistory=[]}undoSize(){return this.undoHistory.length}redoSize(){return this.redoHistory.length}recordSnapshot(e){this.pushUndoEntry(this.cloneEntry(e)),this.redoHistory=[]}beginUndo(){let e=this.undoHistory.pop();if(!e)return;let t=this.cloneEntry(e);this.pushRedoEntry(t);let n=this.undoHistory[this.undoHistory.length-1];return{undoneEntry:t,previousEntry:n?this.cloneEntry(n):void 0}}takeRedo(){let e=this.redoHistory.pop();if(e)return this.cloneEntry(e)}commitRedo(e){this.pushUndoEntry(this.cloneEntry(e))}},ln={cancel:`Escape`,finish:`Enter`},un={start:`crosshair`,close:`pointer`,dragStart:`grabbing`,dragEnd:`crosshair`},dn=class extends V{constructor(e){super(e,!0),this.mode=`linestring`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=ln,this.snapping=void 0,this.cursors=un,this.mouseMove=!1,this.insertCoordinates=void 0,this.lastCommittedCoordinates=void 0,this.snappedPointId=void 0,this.lastMouseMoveEvent=void 0,this.showCoordinatePoints=!1,this.finishOnNthCoordinate=void 0,this.editable=!1,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0,this.editedInsertIndex=void 0,this.editedPointId=void 0,this.coordinateSnapping=void 0,this.insertPoint=void 0,this.lineSnapping=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.closingPoints=void 0,this.coordinatePoints=void 0,this.undoRedo=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),e?.finishOnNthCoordinate!==void 0&&Number.isInteger(e.finishOnNthCoordinate)&&e.finishOnNthCoordinate>1&&(this.finishOnNthCoordinate=Math.floor(e.finishOnNthCoordinate)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.snapping&&(this.snapping=e.snapping),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.insertCoordinates&&(this.insertCoordinates=e.insertCoordinates),e&&e.editable&&(this.editable=e.editable),e?.showCoordinatePoints!==void 0){if(this.showCoordinatePoints=e.showCoordinatePoints,this.coordinatePoints&&!0===e.showCoordinatePoints)this.store.copyAllWhere(e=>e.mode===this.mode).forEach(e=>{this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})});else if(this.coordinatePoints&&!1===this.showCoordinatePoints){let e=this.store.copyAllWhere(e=>e.mode===this.mode&&!!e[L.COORDINATE_POINT_IDS]?.length);this.coordinatePoints.deletePointsByFeatureIds(e.map(e=>e.id))}}}shouldFinishOnCommit(e){return!!this.finishOnNthCoordinate&&Math.max(0,e.coordinates.length-1)>=this.finishOnNthCoordinate}updateSnappedCoordinate(e){let t=this.snapCoordinate(e);return t?(this.snappedPointId?this.mutateFeature.updateGuidancePoints([{featureId:this.snappedPointId,coordinate:t}]):this.snappedPointId=this.mutateFeature.createGuidancePoint({coordinate:t,type:L.SNAPPING_POINT}),e.lng=t[0],e.lat=t[1]):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),t}close(){if(this.currentId===void 0)return;let e=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Finish,action:We},coordinateMutations:[{type:Ot,index:-1}],propertyMutations:{[L.CURRENTLY_DRAWING]:void 0}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates});let t=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),this.closingPoints.delete(),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.onFinish(t,{mode:this.mode,action:We})}generateInsertCoordinates(e,t){if(!this.insertCoordinates||!this.lastCommittedCoordinates)throw Error(`Not able to insert coordinates`);if(this.insertCoordinates.strategy!==`amount`)throw Error(`Strategy does not exist`);let n=tt(e,t)/(this.insertCoordinates.value+1),r=[];return this.projection===`globe`?r=this.insertPoint.generateInsertionGeodesicCoordinates(e,t,n):this.projection===`web-mercator`&&(r=this.insertPoint.generateInsertionCoordinates(e,t,n)),r}createLine(e){let t=this.mutateFeature.createLineString({coordinates:[e,e],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.lastCommittedCoordinates=t.geometry.coordinates,this.currentId=t.id,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.setDrawing(),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}firstUpdateToLine(e){if(!this.currentId)return;this.setCursor(this.cursors.close);let t=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Commit},coordinateMutations:[{type:Et,index:-1,coordinate:e}]});t&&(this.closingPoints.create(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates}),this.lastCommittedCoordinates=t.geometry.coordinates,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.shouldFinishOnCommit(t.geometry)&&this.close())}updateToLine(e,t){if(!this.currentId)return;let{isClosing:n}=this.closingPoints.isLineStringClosingPoint(e);if(n)return void this.close();this.setCursor(this.cursors.close);let r=this.mutateFeature.updateLineString({featureId:this.currentId,context:{updateType:I.Commit},coordinateMutations:[{type:Et,index:-1,coordinate:t}]});r&&(this.closingPoints.update(r.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:r.geometry.coordinates}),this.lastCommittedCoordinates=r.geometry.coordinates,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.shouldFinishOnCommit(r.geometry)&&this.close())}undoSize(){return this.undoRedo.undoSize()}clearHistory(){this.undoRedo.clear()}pushHistorySnapshot(e,t){let n=this.readFeature.getGeometry(e);this.undoRedo.recordSnapshot({featureCoordinates:n.coordinates,currentCoordinate:t})}updateSnappedGuidancePointFromLastMouseMove(){this.snapping&&this.lastMouseMoveEvent?this.updateSnappedCoordinate(this.lastMouseMoveEvent):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}syncClosingPoints(e){this.currentCoordinate>=2?this.closingPoints.ids.length?this.closingPoints.update(e):this.closingPoints.create(e):this.closingPoints.delete()}undo(){if(this.state!==`drawing`||!this.currentId)return;let e=this.undoRedo.beginUndo();if(!e)return;let{previousEntry:t}=e;if(!t){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.lastCommittedCoordinates=void 0,this.closingPoints.delete(),this.state===`drawing`&&this.setStarted(),this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.updateSnappedGuidancePointFromLastMouseMove();return}let n=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:t.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0},context:{updateType:I.Commit}});n&&(this.currentCoordinate=t.currentCoordinate,this.lastCommittedCoordinates=n.geometry.coordinates,this.syncClosingPoints(n.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:n.geometry.coordinates}),this.updateSnappedGuidancePointFromLastMouseMove())}redoSize(){return this.undoRedo.redoSize()}redo(){let e=this.undoRedo.takeRedo();if(e){if(this.currentId){let t=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:e.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0},context:{updateType:I.Commit}});if(!t)return;this.currentCoordinate=e.currentCoordinate,this.lastCommittedCoordinates=t.geometry.coordinates,this.syncClosingPoints(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}else{let{id:t,geometry:n}=this.mutateFeature.createLineString({coordinates:e.featureCoordinates,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=t,this.currentCoordinate=e.currentCoordinate,this.lastCommittedCoordinates=n.coordinates,this.state===`started`&&this.setDrawing(),this.syncClosingPoints(n.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:n.coordinates})}this.undoRedo.commitRedo(e),this.updateSnappedGuidancePointFromLastMouseMove()}}registerBehaviors(e){this.insertPoint=new Xt(e),this.clickBoundingBox=new zt(e),this.pixelDistance=new Bt(e),this.lineSnapping=new nn(e,this.pixelDistance,this.clickBoundingBox),this.coordinateSnapping=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.undoRedo=new cn({maxStackSize:e.undoRedoMaxStackSize})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){this.mouseMove=!0,this.setCursor(this.cursors.start),this.lastMouseMoveEvent=e;let t=this.updateSnappedCoordinate(e)||[e.lng,e.lat];if(this.currentId===void 0||this.currentCoordinate===0)return;let{isClosing:n}=this.closingPoints.isLineStringClosingPoint(e);n&&this.setCursor(this.cursors.close);let r=[{type:Dt,index:-1,coordinate:t}];if(this.insertCoordinates){let e=this.getInsertCoordinates(t);e&&(r={type:kt,coordinates:e})}let i=this.mutateFeature.updateLineString({coordinateMutations:r,featureId:this.currentId,context:{updateType:I.Provisional}});i&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:i.geometry.coordinates})}getInsertCoordinates(e){if(!this.lastCommittedCoordinates)return;let t=this.lastCommittedCoordinates[this.lastCommittedCoordinates.length-1];if(W(t,e))return;let n=this.generateInsertCoordinates(t,e);return[...this.lastCommittedCoordinates.slice(0,-1),...n,e]}onRightClick(e){if(!this.editable||this.state!==`started`)return;let{featureId:t,featureCoordinateIndex:n}=this.coordinateSnapping.getSnappable(e,e=>this.lineStringFilter(e));if(!t||n===void 0)return;let r=this.readFeature.getGeometry(t),i;if(r.type!==`LineString`||(i=r.coordinates,i.length<=2))return;let a=this.mutateFeature.updateLineString({featureId:t,coordinateMutations:[{type:Ot,index:n}],context:{updateType:I.Finish,action:Ge}});a&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:a.geometry.coordinates}),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.closingPoints.delete(),this.onFinish(t,{mode:this.mode,action:Ke})}onLeftClick(e){this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0);let t=this.snapCoordinate(e)||[e.lng,e.lat];this.currentCoordinate===0?this.createLine(t):this.currentCoordinate===1&&this.currentId?this.firstUpdateToLine(t):this.currentId&&this.updateToLine(e,t)}onClick(e){this.currentId===void 0||this.readFeature.hasFeature(this.currentId)||this.cleanUp(),(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,e.button===`right`?this.onRightClick(e):e.button===`left`&&this.onLeftClick(e))}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel&&this.cleanUp(),e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e)||!this.editable)return;let n;if(this.state===`started`){let t=this.lineSnapping.getSnappable(e,e=>this.lineStringFilter(e));t.coordinate&&(this.editedSnapType=`line`,this.editedFeatureCoordinateIndex=t.featureCoordinateIndex,this.editedFeatureId=t.featureId,n=t.coordinate);let r=this.coordinateSnapping.getSnappable(e,e=>this.lineStringFilter(e));r.coordinate&&(this.editedSnapType=`coordinate`,this.editedFeatureCoordinateIndex=r.featureCoordinateIndex,this.editedFeatureId=r.featureId,n=r.coordinate)}this.editedFeatureId&&n&&(this.editedPointId||=this.mutateFeature.createGuidancePoint({coordinate:n,type:L.EDITED}),this.setCursor(this.cursors.dragStart),t(!1))}onDrag(e,t){if(this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.editedFeatureCoordinateIndex!==void 0){if(this.editedSnapType===`coordinate`||this.editedSnapType===`line`&&this.editedInsertIndex!==void 0){let t=this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional},coordinateMutations:[{type:Dt,index:this.editedFeatureCoordinateIndex,coordinate:[e.lng,e.lat]}]});if(!t)return;this.showCoordinatePoints&&(this.editedInsertIndex===void 0?this.coordinatePoints.updateOneAtIndex(this.editedFeatureId,this.editedFeatureCoordinateIndex,[e.lng,e.lat]):this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:t.geometry.coordinates}))}else if(this.editedSnapType===`line`&&this.editedInsertIndex===void 0){this.editedInsertIndex=this.editedFeatureCoordinateIndex+1;let e=this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:e.geometry.coordinates}),this.editedFeatureCoordinateIndex++}this.snapping&&this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0),this.editedPointId&&this.mutateFeature.updateGuidancePoints([{featureId:this.editedPointId,coordinate:[e.lng,e.lat]}]),this.mutateFeature.updateLineString({featureId:this.editedFeatureId,context:{updateType:I.Provisional},propertyMutations:{[L.EDITED]:!0}})}}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||(this.setCursor(this.cursors.dragEnd),!this.mutateFeature.updateLineString({featureId:this.editedFeatureId,propertyMutations:{[L.EDITED]:!1},context:{updateType:I.Finish,action:Ge}})))return;let n=this.editedFeatureId;t(!0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0),this.closingPoints.delete(),this.onFinish(n,{mode:this.mode,action:Ge})}cleanUp(){let e=this.currentId,t=this.snappedPointId;this.snappedPointId=void 0,this.currentId=void 0,this.currentCoordinate=0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),e&&this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t),this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.type===`Feature`&&e.geometry.type===`LineString`&&e.properties.mode===this.mode)return t.lineStringColor=this.getHexColorStylingValue(this.styles.lineStringColor,t.lineStringColor,e),t.lineStringOpacity=this.getNumericStylingValue(this.styles.lineStringOpacity,t.lineStringOpacity===void 0?1:t.lineStringOpacity,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.lineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t;if(e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode){let n=e.properties[L.COORDINATE_POINT],r=e.properties[L.CLOSING_POINT]?`closingPoint`:e.properties[L.SNAPPING_POINT]?`snappingPoint`:n?`coordinatePoint`:void 0;if(!r)return t;let i={closingPoint:{width:this.styles.closingPointWidth,color:this.styles.closingPointColor,opacity:this.styles.closingPointOpacity,outlineColor:this.styles.closingPointOutlineColor,outlineWidth:this.styles.closingPointOutlineWidth,outlineOpacity:this.styles.closingPointOutlineOpacity},snappingPoint:{width:this.styles.snappingPointWidth,color:this.styles.snappingPointColor,opacity:this.styles.snappingPointOpacity,outlineColor:this.styles.snappingPointOutlineColor,outlineWidth:this.styles.snappingPointOutlineWidth,outlineOpacity:this.styles.snappingPointOutlineOpacity},coordinatePoint:{width:this.styles.coordinatePointWidth,color:this.styles.coordinatePointColor,opacity:this.styles.coordinatePointOpacity,outlineColor:this.styles.coordinatePointOutlineColor,outlineWidth:this.styles.coordinatePointOutlineWidth,outlineOpacity:this.styles.coordinatePointOutlineOpacity}};return t.pointWidth=this.getNumericStylingValue(i[r].width,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(i[r].opacity,1,e),t.pointColor=this.getHexColorStylingValue(i[r].color,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(i[r].outlineColor,`#ffffff`,e),t.pointOutlineWidth=this.getNumericStylingValue(i[r].outlineWidth,2,e),t.pointOutlineOpacity=this.getNumericStylingValue(i[r].outlineOpacity,1,e),t.zIndex=n?20:50,t}return t}validateFeature(e){return this.validateModeFeature(e,e=>Zt(e,this.coordinatePrecision))}lineStringFilter(e){return!!(e.geometry.type===`LineString`&&e.properties&&e.properties.mode===this.mode)}snapCoordinate(e){var t,n,r;let i;if((t=this.snapping)!=null&&t.toLine){let t;t=this.currentId?this.lineSnapping.getSnappableCoordinate(e,this.currentId):this.lineSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((n=this.snapping)!=null&&n.toCoordinate){let t;t=this.currentId?this.coordinateSnapping.getSnappableCoordinate(e,this.currentId):this.coordinateSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((r=this.snapping)!=null&&r.toCustom){let t=this.snapping.toCustom(e,{currentCoordinate:this.currentCoordinate,currentId:this.currentId,getCurrentGeometrySnapshot:this.currentId?()=>this.readFeature.getGeometry(this.currentId):()=>null,project:this.project,unproject:this.unproject});t&&(i=t)}return i}afterFeatureUpdated(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates}),this.editedFeatureId===e.id&&this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0),this.snappedPointId&&this.lastMouseMoveEvent&&this.updateSnappedCoordinate(this.lastMouseMoveEvent),this.currentId===e.id&&(this.closingPoints.delete(),this.currentCoordinate=0,this.currentId=void 0,this.lastCommittedCoordinates=void 0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted())}afterFeatureAdded(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})}},fn=`Feature is not a Point`,pn=`Feature has invalid coordinates`,mn=`Feature has coordinates with excessive precision`;function hn(e,t){return e.geometry.type===`Point`?ht(e.geometry.coordinates)?mt(e.geometry.coordinates,t)?{valid:!0}:{valid:!1,reason:mn}:{valid:!1,reason:pn}:{valid:!1,reason:fn}}var gn=class extends Ct{constructor(e,t,n){super(e),this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pixelDistance=t,this.clickBoundingBox=n}getNearestPointFeature(e){let t=this.clickBoundingBox.create(e),n=this.store.search(t),r,i=1/0;for(let t=0;t<n.length;t++){let a=n[t];if(a.geometry.type!==`Point`||a.properties.mode!==this.mode)continue;let o=this.pixelDistance.measure(e,a.geometry.coordinates);o>i||o>this.pointerDistance||(i=o,r=a)}return r}},_n={create:`crosshair`,dragStart:`grabbing`,dragEnd:`crosshair`},vn=class extends V{constructor(e){super(e,!0),this.mode=`point`,this.cursors=_n,this.editable=!1,this.editedFeatureId=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pointSearch=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.editable&&(this.editable=e.editable)}start(){this.setStarted(),this.setCursor(this.cursors.create)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onMouseMove(){}onKeyDown(){}onKeyUp(){}cleanUp(){this.editedFeatureId=void 0}onDragStart(e,t){this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&(this.editable&&(this.editedFeatureId=this.pointSearch.getNearestPointFeature(e)?.id),this.editedFeatureId&&(this.setCursor(this.cursors.dragStart),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.mutateFeature.updatePoint({featureId:this.editedFeatureId,coordinateMutations:{type:kt,coordinates:[e.lng,e.lat]},propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}})}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||!this.mutateFeature.updatePoint({featureId:this.editedFeatureId,propertyMutations:{mode:this.mode,[L.EDITED]:!1},context:{updateType:I.Finish,action:`edit`}}))return;let n=this.editedFeatureId;this.setCursor(this.cursors.dragEnd),this.editedFeatureId=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:We})}registerBehaviors(e){this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.pointSearch=new gn(e,this.pixelDistance,this.clickBoundingBox),this.mutateFeature=new At(e,{validate:this.validate})}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode){let n=!!(e.id&&this.editedFeatureId===e.id);t.pointWidth=this.getNumericStylingValue(n?this.styles.editedPointWidth:this.styles.pointWidth,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(this.styles.pointOpacity,t.pointOpacity===void 0?1:t.pointOpacity,e),t.pointColor=this.getHexColorStylingValue(n?this.styles.editedPointColor:this.styles.pointColor,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(n?this.styles.editedPointOutlineColor:this.styles.pointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.pointOutlineOpacity,t.pointOutlineOpacity===void 0?1:t.pointOutlineOpacity,e),t.pointOutlineWidth=this.getNumericStylingValue(n?this.styles.editedPointOutlineWidth:this.styles.pointOutlineWidth,2,e),t.zIndex=30}return t}validateFeature(e){return this.validateModeFeature(e,e=>hn(e,this.coordinatePrecision))}onLeftClick(e){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode},context:{updateType:I.Finish,action:We}});t&&this.onFinish(t.id,{mode:this.mode,action:We})}onRightClick(e){if(!this.editable)return;let t=this.pointSearch.getNearestPointFeature(e);t&&this.mutateFeature.deleteFeatureIfPresent(t.id)}afterFeatureUpdated(e){this.editedFeatureId===e.id&&(this.editedFeatureId=void 0,this.setCursor(this.cursors.create))}},yn={cancel:`Escape`,finish:`Enter`},bn={start:`crosshair`,close:`pointer`,dragStart:`grabbing`,dragEnd:`crosshair`},xn=class extends V{constructor(e){super(e,!0),this.mode=`polygon`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=yn,this.cursors=bn,this.mouseMove=!1,this.showCoordinatePoints=!1,this.lastMouseMoveEvent=void 0,this.snapping=void 0,this.snappedPointId=void 0,this.editable=!1,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0,this.editedInsertIndex=void 0,this.editedPointId=void 0,this.coordinatePoints=void 0,this.lineSnapping=void 0,this.coordinateSnapping=void 0,this.pixelDistance=void 0,this.closingPoints=void 0,this.clickBoundingBox=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.undoRedo=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.snapping&&(this.snapping=e.snapping),e?.editable!==void 0&&(this.editable=e.editable),e?.pointerEvents!==void 0&&(this.pointerEvents=e.pointerEvents),e?.showCoordinatePoints!==void 0){if(this.showCoordinatePoints=e.showCoordinatePoints,this.coordinatePoints&&!0===e.showCoordinatePoints)this.store.copyAllWhere(e=>e.mode===this.mode).filter(e=>e.geometry.type===`Polygon`).forEach(e=>{this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})});else if(this.coordinatePoints&&!1===this.showCoordinatePoints){let e=this.store.copyAllWhere(e=>e.mode===this.mode&&!!e[L.COORDINATE_POINT_IDS]).filter(e=>e.geometry.type===`Polygon`);this.coordinatePoints.deletePointsByFeatureIds(e.map(e=>e.id))}}}close(){if(this.currentId===void 0||this.readFeature.getCoordinates(this.currentId).length<5)return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Ot,index:-2}],propertyMutations:{[L.CURRENTLY_DRAWING]:void 0,[L.COMMITTED_COORDINATE_COUNT]:void 0,[L.PROVISIONAL_COORDINATE_COUNT]:void 0},context:{updateType:I.Finish,action:We}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.state===`drawing`&&this.setStarted(),this.editedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),void 0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.closingPoints.delete();let t=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.undoRedo.clear(),this.onFinish(t,{mode:this.mode,action:We})}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.clickBoundingBox=new zt(e),this.pixelDistance=new Bt(e),this.lineSnapping=new nn(e,this.pixelDistance,this.clickBoundingBox),this.coordinateSnapping=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.undoRedo=new cn({maxStackSize:e.undoRedoMaxStackSize})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}updateSnappedCoordinate(e){let t=this.snapCoordinate(e);t?(this.snappedPointId?this.mutateFeature.updateGuidancePoints([{featureId:this.snappedPointId,coordinate:t}]):this.snappedPointId=this.mutateFeature.createGuidancePoint({coordinate:t,type:L.SNAPPING_POINT}),e.lng=t[0],e.lat=t[1]):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}undoSize(){return this.undoRedo.undoSize()}clearHistory(){this.undoRedo.clear()}pushHistorySnapshot(e,t){let n=this.readFeature.getGeometry(e);this.undoRedo.recordSnapshot({featureCoordinates:n.coordinates,currentCoordinate:t})}updateSnappedGuidancePointFromLastMouseMove(){this.snapping&&this.lastMouseMoveEvent?this.updateSnappedCoordinate(this.lastMouseMoveEvent):this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0)}syncClosingPoints(e){this.currentCoordinate>=3?this.closingPoints.ids.length?this.closingPoints.update(e):this.closingPoints.create(e):this.closingPoints.delete()}undo(){if(this.state!==`drawing`||!this.currentId)return;let e=this.undoRedo.beginUndo();if(!e)return;let{previousEntry:t}=e;if(!t){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.closingPoints.delete(),this.state===`drawing`&&this.setStarted(),this.showCoordinatePoints&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.updateSnappedGuidancePointFromLastMouseMove();return}let n=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:t.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:t.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:t.currentCoordinate},context:{updateType:I.Commit}});n&&(this.currentCoordinate=t.currentCoordinate,this.syncClosingPoints(n.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:n.geometry.coordinates}),this.updateSnappedGuidancePointFromLastMouseMove())}redoSize(){return this.undoRedo.redoSize()}redo(){let e=this.undoRedo.takeRedo();if(e){if(this.currentId){let t=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:e.featureCoordinates},propertyMutations:{[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:e.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:e.currentCoordinate},context:{updateType:I.Commit}});if(!t)return;this.currentCoordinate=e.currentCoordinate,this.syncClosingPoints(t.geometry.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:t.geometry.coordinates})}else{let t=this.undoRedo.cloneCoordinates(e.featureCoordinates)[0],{id:n,geometry:r}=this.mutateFeature.createPolygon({coordinates:t,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:e.currentCoordinate,[L.PROVISIONAL_COORDINATE_COUNT]:e.currentCoordinate}});this.currentId=n,this.currentCoordinate=e.currentCoordinate,this.state===`started`&&this.setDrawing(),this.syncClosingPoints(r.coordinates),this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:n,featureCoordinates:r.coordinates})}this.undoRedo.commitRedo(e),this.updateSnappedGuidancePointFromLastMouseMove()}}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.lastMouseMoveEvent=e,this.updateSnappedCoordinate(e),this.currentId===void 0||this.currentCoordinate===0)return;let t=this.readFeature.getCoordinate(this.currentId,0),n=[e.lng,e.lat],r;if(this.currentCoordinate===1)r=[{type:Dt,index:1,coordinate:n},{type:Dt,index:2,coordinate:[e.lng,e.lat]}];else if(this.currentCoordinate===2)r=[{type:Dt,index:2,coordinate:n}];else{let{isClosing:i,isPreviousClosing:a}=this.closingPoints.isPolygonClosingPoints(e);a||i?(this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.setCursor(this.cursors.close),r=[{type:Dt,index:-1,coordinate:t},{type:Dt,index:-2,coordinate:t}]):r=[{type:Dt,index:-2,coordinate:n},{type:Dt,index:-1,coordinate:t}]}let i=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:r,propertyMutations:{[L.PROVISIONAL_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Provisional}});i&&this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:i.geometry.coordinates})}snapCoordinate(e){var t,n,r;let i;if((t=this.snapping)!=null&&t.toLine){let t;t=this.currentId?this.lineSnapping.getSnappableCoordinate(e,this.currentId):this.lineSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((n=this.snapping)!=null&&n.toCoordinate){let t;t=this.currentId?this.coordinateSnapping.getSnappableCoordinate(e,this.currentId):this.coordinateSnapping.getSnappableCoordinateFirstClick(e),t&&(i=t)}if((r=this.snapping)!=null&&r.toCustom){let t=this.snapping.toCustom(e,{currentCoordinate:this.currentCoordinate,currentId:this.currentId,getCurrentGeometrySnapshot:this.currentId?()=>this.readFeature.getGeometry(this.currentId):()=>null,project:this.project,unproject:this.unproject});t&&(i=t)}return i}polygonFilter(e){return!!(e.geometry.type===`Polygon`&&e.properties&&e.properties.mode===this.mode)}onRightClick(e){if(!this.editable||this.state!==`started`)return;let{featureId:t,featureCoordinateIndex:n}=this.coordinateSnapping.getSnappable(e,e=>this.polygonFilter(e));if(!t||n===void 0)return;let r=this.readFeature.getGeometry(t);if(r.type!==`Polygon`)return;let i=r.coordinates[0];if(i.length<=4)return;let a;a=n===0||n===i.length-1?[{type:Ot,index:0},{type:Ot,index:-1},{type:Et,index:-1,coordinate:i[1]}]:[{type:Ot,index:n}];let o=this.mutateFeature.updatePolygon({featureId:t,coordinateMutations:a,context:{updateType:I.Finish,action:Ge}});if(o){if(this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:t,featureCoordinates:o.geometry.coordinates}),this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0,this.snapping)){let t=this.snapCoordinate(e);if(t){let[e]=this.mutateFeature.createGuidancePoints({type:L.SNAPPING_POINT,coordinates:[t]});this.snappedPointId=e}}this.onFinish(t,{mode:this.mode,action:Ge})}}onLeftClick(e){this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0);let t=this.snapCoordinate(e)||[e.lng,e.lat];if(this.currentCoordinate===0){let{id:e,geometry:n}=this.mutateFeature.createPolygon({coordinates:[t,t,t,t],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0,[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1,[L.PROVISIONAL_COORDINATE_COUNT]:this.currentCoordinate+1}});this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e,featureCoordinates:n.coordinates}),this.currentId=e,this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.setDrawing()}else if(this.currentCoordinate===1&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:0}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:t},{type:Dt,index:2,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate)}else if(this.currentCoordinate===2&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:1}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:2,coordinate:t},{type:Et,index:2,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate===2&&this.closingPoints.create(e.geometry.coordinates),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate)}else if(this.currentId){let{isClosing:n,isPreviousClosing:r}=this.closingPoints.isPolygonClosingPoints(e);if(r||n)this.close();else{if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,newCoordinate:t,index:this.currentCoordinate-1}))return;let e=this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Tt,index:-1,coordinate:t}],propertyMutations:{[L.COMMITTED_COORDINATE_COUNT]:this.currentCoordinate+1},context:{updateType:I.Commit}});if(!e)return;this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:this.currentId,featureCoordinates:e.geometry.coordinates}),this.currentCoordinate++,this.pushHistorySnapshot(this.currentId,this.currentCoordinate),this.closingPoints.ids.length&&this.closingPoints.update(e.geometry.coordinates)}}}onClick(e){this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e)||!this.editable)return;let n;if(this.state===`started`){let t=this.lineSnapping.getSnappable(e,e=>this.polygonFilter(e));t.coordinate&&(this.editedSnapType=`line`,this.editedFeatureCoordinateIndex=t.featureCoordinateIndex,this.editedFeatureId=t.featureId,n=t.coordinate);let r=this.coordinateSnapping.getSnappable(e,e=>this.polygonFilter(e));r.coordinate&&(this.editedSnapType=`coordinate`,this.editedFeatureCoordinateIndex=r.featureCoordinateIndex,this.editedFeatureId=r.featureId,n=r.coordinate)}this.editedFeatureId&&n&&(this.editedPointId||=this.mutateFeature.createGuidancePoint({coordinate:n,type:L.EDITED}),this.setCursor(this.cursors.dragStart),t(!1))}onDrag(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDrag,e)||this.editedFeatureId===void 0||this.editedFeatureCoordinateIndex===void 0)return;let n=this.readFeature.getGeometry(this.editedFeatureId),r=[e.lng,e.lat],i=[];if(this.editedSnapType===`coordinate`||this.editedSnapType===`line`&&this.editedInsertIndex!==void 0?i=this.editedFeatureCoordinateIndex===0||this.editedFeatureCoordinateIndex===n.coordinates[0].length-1?[{type:Dt,index:0,coordinate:r},{type:Dt,index:-1,coordinate:r}]:[{type:Dt,index:this.editedFeatureCoordinateIndex,coordinate:r}]:this.editedSnapType===`line`&&this.editedInsertIndex===void 0&&(this.editedInsertIndex=this.editedFeatureCoordinateIndex+1,i=[{type:Tt,index:this.editedInsertIndex,coordinate:r}],this.editedFeatureCoordinateIndex++),i.length===0)return;let a=this.mutateFeature.updatePolygon({featureId:this.editedFeatureId,coordinateMutations:i,propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}});a&&(this.showCoordinatePoints&&(this.editedInsertIndex?this.coordinatePoints.createOrUpdate({featureId:this.editedFeatureId,featureCoordinates:a.geometry.coordinates}):this.coordinatePoints.updateOneAtIndex(this.editedFeatureId,this.editedFeatureCoordinateIndex,a.geometry.coordinates[0][this.editedFeatureCoordinateIndex])),this.snapping&&this.snappedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),this.snappedPointId=void 0),this.editedPointId&&this.mutateFeature.updateGuidancePoints([{featureId:this.editedPointId,coordinate:r}]))}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||(this.setCursor(this.cursors.dragEnd),!this.mutateFeature.updatePolygon({featureId:this.editedFeatureId,propertyMutations:{[L.EDITED]:!1},context:{updateType:I.Finish,action:Ge}})))return;let n=this.editedFeatureId;this.editedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),void 0),this.snappedPointId&&=(this.mutateFeature.deleteFeatureIfPresent(this.snappedPointId),void 0),this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:Ge})}cleanUp(){let e=this.currentId,t=this.snappedPointId,n=this.editedPointId;this.currentId=void 0,this.snappedPointId=void 0,this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedInsertIndex=void 0,this.editedSnapType=void 0,this.currentCoordinate=0,this.undoRedo.clear(),this.state===`drawing`&&this.setStarted(),e&&this.coordinatePoints.deletePointsByFeatureIds([e]),this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(n),this.mutateFeature.deleteFeatureIfPresent(t),this.closingPoints.ids.length&&this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.properties.mode===this.mode){if(e.geometry.type===`Polygon`)return t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.zIndex=Xe,t;if(e.geometry.type===`Point`){let n=e.properties[L.EDITED],r=e.properties[L.COORDINATE_POINT],i=n?`editedPoint`:e.properties[L.CLOSING_POINT]?`closingPoint`:e.properties[L.SNAPPING_POINT]?`snappingPoint`:r?`coordinatePoint`:void 0;if(!i)return t;let a={editedPoint:{width:this.styles.editedPointOutlineWidth,color:this.styles.editedPointColor,opacity:this.styles.editedPointOpacity,outlineColor:this.styles.editedPointOutlineColor,outlineWidth:this.styles.editedPointOutlineWidth,outlineOpacity:this.styles.editedPointOutlineOpacity},closingPoint:{width:this.styles.closingPointWidth,color:this.styles.closingPointColor,opacity:this.styles.closingPointOpacity,outlineColor:this.styles.closingPointOutlineColor,outlineWidth:this.styles.closingPointOutlineWidth,outlineOpacity:this.styles.closingPointOutlineOpacity},snappingPoint:{width:this.styles.snappingPointWidth,color:this.styles.snappingPointColor,opacity:this.styles.snappingPointOpacity,outlineColor:this.styles.snappingPointOutlineColor,outlineWidth:this.styles.snappingPointOutlineWidth,outlineOpacity:this.styles.snappingPointOutlineOpacity},coordinatePoint:{width:this.styles.coordinatePointWidth,color:this.styles.coordinatePointColor,opacity:this.styles.coordinatePointOpacity,outlineColor:this.styles.coordinatePointOutlineColor,outlineWidth:this.styles.coordinatePointOutlineWidth,outlineOpacity:this.styles.coordinatePointOutlineOpacity}};return t.pointWidth=this.getNumericStylingValue(a[i].width,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(a[i].opacity,1,e),t.pointColor=this.getHexColorStylingValue(a[i].color,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(a[i].outlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(a[i].outlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(a[i].outlineWidth,2,e),t.zIndex=n?40:r?20:30,t}}return t}afterFeatureAdded(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates})}afterFeatureUpdated(e){this.showCoordinatePoints&&this.coordinatePoints.createOrUpdate({featureId:e.id,featureCoordinates:e.geometry.coordinates}),this.editedFeatureId===e.id&&this.editedPointId&&(this.mutateFeature.deleteFeatureIfPresent(this.editedPointId),this.editedPointId=void 0,this.editedFeatureId=void 0,this.editedFeatureCoordinateIndex=void 0,this.editedSnapType=void 0),this.snappedPointId&&this.lastMouseMoveEvent&&this.updateSnappedCoordinate(this.lastMouseMoveEvent),this.currentId===e.id&&(this.currentCoordinate=0,this.currentId=void 0,this.undoRedo.clear(),this.closingPoints.delete(),this.state===`drawing`&&this.setStarted())}validateFeature(e){return this.validateModeFeature(e,e=>xt(e,this.coordinatePrecision))}},Sn={cancel:`Escape`,finish:`Enter`},Cn={start:`crosshair`},wn=class extends V{constructor(e){super(e,!0),this.mode=`rectangle`,this.startPosition=void 0,this.endPosition=void 0,this.currentRectangleId=void 0,this.keyEvents=Sn,this.cursors=Cn,this.drawInteraction=`click-move`,this.drawType=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.drawInteraction&&(this.drawInteraction=e.drawInteraction)}updateRectangle(e,t){if(!this.startPosition||!this.currentRectangleId)return;let n=t===I.Finish;return this.mutateFeature.updatePolygon({featureId:this.currentRectangleId,coordinateMutations:[{type:Dt,index:1,coordinate:[e[0],this.startPosition[1]]},{type:Dt,index:2,coordinate:e},{type:Dt,index:3,coordinate:[this.startPosition[0],e[1]]}],propertyMutations:n?{[L.CURRENTLY_DRAWING]:void 0}:{},context:n?{updateType:t,action:We}:{updateType:t}})}close(){if(!this.currentRectangleId||!this.endPosition||!this.updateRectangle(this.endPosition,I.Finish))return;let e=this.currentRectangleId;this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}beginDrawing(e,t=`click`){this.startPosition=[e.lng,e.lat],this.endPosition=[e.lng,e.lat],this.currentRectangleId=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}}).id,this.drawType=t,this.setDrawing()}moveDrawAllowed(){return this.drawInteraction===`click-move`||this.drawInteraction===`click-move-or-drag`}dragDrawAllowed(){return this.drawInteraction===`click-drag`||this.drawInteraction===`click-move-or-drag`}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){this.moveDrawAllowed()&&(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))&&(this.startPosition?(this.endPosition=[e.lng,e.lat],this.close()):this.beginDrawing(e))}onMouseMove(e){this.endPosition=[e.lng,e.lat],this.updateRectangle(this.endPosition,I.Provisional)}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onDragStart(e,t){this.state!==`drawing`&&this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&this.dragDrawAllowed()&&(this.beginDrawing(e,`drag`),t(!1))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.updateRectangle(this.endPosition,I.Provisional))}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&this.dragDrawAllowed()&&this.drawType===`drag`&&(this.endPosition=[e.lng,e.lat],this.close(),t(!0))}cleanUp(){let e=this.currentRectangleId;this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Polygon`&&e.properties.mode===this.mode?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t):t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentRectangleId===e.id&&(this.startPosition=void 0,this.currentRectangleId=void 0,this.drawType=void 0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}},Tn=class extends V{constructor(e){if(!e.modeName)throw Error(`Mode name is required for TerraDrawRenderMode`);super(e,!0),this.type=Qe.Render,this.mode=`render`,this.updateOptions(e)}updateOptions(e){super.updateOptions(e)}registerBehaviors(e){this.mode=e.mode}start(){this.setStarted()}stop(){this.setStopped()}onKeyUp(){}onKeyDown(){}onClick(){}onDragStart(){}onDrag(){}onDragEnd(){}onMouseMove(){}cleanUp(){}styleFeature(e){return{pointColor:this.getHexColorStylingValue(this.styles.pointColor,`#3f97e0`,e),pointWidth:this.getNumericStylingValue(this.styles.pointWidth,6,e),pointOpacity:this.getNumericStylingValue(this.styles.pointOpacity,1,e),pointOutlineColor:this.getHexColorStylingValue(this.styles.pointOutlineColor,`#ffffff`,e),pointOutlineWidth:this.getNumericStylingValue(this.styles.pointOutlineWidth,0,e),pointOutlineOpacity:this.getNumericStylingValue(this.styles.pointOutlineOpacity,1,e),polygonFillColor:this.getHexColorStylingValue(this.styles.polygonFillColor,`#3f97e0`,e),polygonFillOpacity:this.getNumericStylingValue(this.styles.polygonFillOpacity,.3,e),polygonOutlineColor:this.getHexColorStylingValue(this.styles.polygonOutlineColor,`#3f97e0`,e),polygonOutlineWidth:this.getNumericStylingValue(this.styles.polygonOutlineWidth,4,e),lineStringWidth:this.getNumericStylingValue(this.styles.lineStringWidth,4,e),lineStringColor:this.getHexColorStylingValue(this.styles.lineStringColor,`#3f97e0`,e),lineStringOpacity:this.getNumericStylingValue(this.styles.lineStringOpacity,1,e),zIndex:this.getNumericStylingValue(this.styles.zIndex,0,e)}}validateFeature(e){let t=super.validateFeature(e);if(t.valid){let t=e,n=hn(t,this.coordinatePrecision).valid||xt(t,this.coordinatePrecision).valid||Zt(t,this.coordinatePrecision).valid;return n?{valid:!0}:{valid:n,reason:`Feature is not a valid Point, Polygon or LineString feature`}}return t}};function En(e,t){let n=e,r=t,i=rt(n[1]),a=rt(r[1]),o=rt(r[0]-n[0]);o>Math.PI&&(o-=2*Math.PI),o<-Math.PI&&(o+=2*Math.PI);let s=Math.log(Math.tan(a/2+Math.PI/4)/Math.tan(i/2+Math.PI/4)),c=(at(Math.atan2(o,s))+360)%360;return c>180?-(360-c):c}function Dn(e,t,n){let r=t;t<0&&(r=-Math.abs(r));let i=r/nt,a=e[0]*Math.PI/180,o=rt(e[1]),s=rt(n),c=i*Math.cos(s),l=o+c;Math.abs(l)>Math.PI/2&&(l=l>0?Math.PI-l:-Math.PI-l);let u=Math.log(Math.tan(l/2+Math.PI/4)/Math.tan(o/2+Math.PI/4)),d=Math.abs(u)>1e-11?c/u:Math.cos(o),f=[(180*(a+i*Math.sin(s)/d)/Math.PI+540)%360-180,180*l/Math.PI];return f[0]+=f[0]-e[0]>180?-360:e[0]-f[0]>180?360:0,f}function On(e,t,n,r,i){let a=r(e[0],e[1]),o=r(t[0],t[1]),{lng:s,lat:c}=i((a.x+o.x)/2,(a.y+o.y)/2);return[H(s,n),H(c,n)]}function kn(e,t,n){let r=Dn(e,1e3*tt(e,t)/2,En(e,t));return[H(r[0],n),H(r[1],n)]}function An({featureCoords:e,precision:t,unproject:n,project:r,projection:i}){let a=[];for(let o=0;o<e.length-1;o++){let s;if(i===`web-mercator`)s=On(e[o],e[o+1],t,r,n);else{if(i!==`globe`)throw Error(`Invalid projection`);s=kn(e[o],e[o+1],t)}a.push(s)}return a}var jn=class extends Ct{constructor(e,t,n,r,i,a){super(e),this.config=void 0,this.selectionPointBehavior=void 0,this.coordinatePointBehavior=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.pixelDistance=void 0,this._midPoints=[],this.config=e,this.selectionPointBehavior=t,this.coordinatePointBehavior=n,this.mutateFeature=r,this.readFeature=i,this.pixelDistance=a}getMidpointConfig(e){return{featureCoords:e,precision:this.coordinatePrecision,project:this.config.project,unproject:this.config.unproject,projection:this.config.projection}}get ids(){return this._midPoints.concat()}set ids(e){}getNearestMidPoint(e){let t,n=1/0;return this.ids.forEach(r=>{let i=this.readFeature.getGeometry(r),a=this.pixelDistance.measure(e,i.coordinates);a<this.pointerDistance&&a<n&&(n=a,t=r)}),t}insert({featureId:e,midPointId:t}){let n=this.readFeature.getGeometry(t),{midPointFeatureId:r,midPointSegment:i}=this.readFeature.getProperties(t),a=this.readFeature.getGeometry(r),o={featureId:r,coordinateMutations:[{type:Et,index:i,coordinate:n.coordinates}],context:{updateType:I.Commit}},s=null;if(a.type===`Polygon`)s=this.mutateFeature.updatePolygon(o);else{if(a.type!==`LineString`)throw Error(`Midpoints can only be added to polygons or linestrings`);s=this.mutateFeature.updateLineString(o)}if(!s)throw Error(`Failed to insert midpoint coordinate`);let c=s.geometry.coordinates;this.readFeature.getProperties(e)[L.COORDINATE_POINT_IDS]&&this.coordinatePointBehavior.createOrUpdate({featureId:e,featureCoordinates:c}),this.mutateFeature.deleteFeaturesIfPresent([...this.selectionPointBehavior.ids,...this._midPoints]),this.create({featureCoordinates:c,featureId:r}),this.selectionPointBehavior.create({featureCoordinates:c,featureId:e})}create({featureCoordinates:e,featureId:t}){if(!this.readFeature.hasFeature(t))throw Error(`Store does not have feature with this id`);let n=an(e),r=An(this.getMidpointConfig(n));this._midPoints=this.mutateFeature.createGuidancePoints({additionalProperties:e=>({mode:this.mode,midPointSegment:e,midPointFeatureId:t,[Ye.MID_POINT]:!0}),coordinates:r,type:Ye.MID_POINT})}delete(){this._midPoints.length&&(this.mutateFeature.deleteFeaturesIfPresent(this._midPoints),this._midPoints=[])}updateAllInPlace({featureCoordinates:e}){if(this._midPoints.length===0)return;let t=an(e),n=An(this.getMidpointConfig(t));this.mutateFeature.updateGuidancePoints(this._midPoints.map((e,t)=>({featureId:e,coordinate:n[t]})))}updateOneAtIndex(e,t){if(e<0&&(e=this._midPoints.length+e),this._midPoints[e]===void 0)return;let n=an(t),r=An(this.getMidpointConfig(n));this.mutateFeature.updateGuidancePoints([{featureId:this._midPoints[e],coordinate:r[e]}])}},Mn=class extends Ct{constructor(e,t){super(e),this.mutateFeature=void 0,this._selectionPoints=[],this.mutateFeature=t}get ids(){return this._selectionPoints.concat()}set ids(e){}create({featureId:e,featureCoordinates:t}){let n=rn(t);this._selectionPoints=this.mutateFeature.createGuidancePoints({coordinates:n,type:Ye.SELECTION_POINT,additionalProperties:t=>({[Ye.SELECTION_POINT_FEATURE_ID]:e,index:t})})}delete(){this.ids.length&&(this.mutateFeature.deleteFeaturesIfPresent(this.ids),this._selectionPoints=[])}updateAllInPlace({featureCoordinates:e}){if(this._selectionPoints.length===0)return;let t=rn(e);t.length===this._selectionPoints.length&&this.mutateFeature.updateGuidancePoints(this._selectionPoints.map((e,n)=>({featureId:e,coordinate:t[n]})))}updateOneAtIndex(e,t){this._selectionPoints[e]!==void 0&&this.mutateFeature.updateGuidancePoints([{featureId:this._selectionPoints[e],coordinate:t}])}};function Nn(e,t){let n=!1;for(let o=0,s=t.length;o<s;o++){let s=t[o];for(let t=0,o=s.length,c=o-1;t<o;c=t++)(i=s[t])[1]>(r=e)[1]!=(a=s[c])[1]>r[1]&&r[0]<(a[0]-i[0])*(r[1]-i[1])/(a[1]-i[1])+i[0]&&(n=!n)}var r,i,a;return n}var Pn=(e,t,n)=>{let r=e=>e*e,i=(e,t)=>r(e.x-t.x)+r(e.y-t.y);return Math.sqrt(((e,t,n)=>{let r=i(t,n);if(r===0)return i(e,t);let a=((e.x-t.x)*(n.x-t.x)+(e.y-t.y)*(n.y-t.y))/r;return a=Math.max(0,Math.min(1,a)),i(e,{x:t.x+a*(n.x-t.x),y:t.y+a*(n.y-t.y)})})(e,t,n))},Fn=class extends Ct{constructor(e,t,n){super(e),this.config=void 0,this.createClickBoundingBox=void 0,this.pixelDistance=void 0,this.config=e,this.createClickBoundingBox=t,this.pixelDistance=n}find(e,t){let n,r,i,a=1/0,o=1/0,s=this.createClickBoundingBox.create(e),c=this.store.search(s);for(let s=0;s<c.length;s++){let l=c[s],u=l.geometry;if(u.type===`Point`){if(l.properties.selectionPoint||l.properties.coordinatePoint||!t&&l.properties[Ye.MID_POINT])continue;let r=this.pixelDistance.measure(e,u.coordinates);!l.properties[Ye.MID_POINT]&&r<this.pointerDistance&&r<a&&(a=r,n=l)}else if(u.type===`LineString`){if(n)continue;for(let t=0;t<u.coordinates.length-1;t++){let n=u.coordinates[t],i=u.coordinates[t+1],a=Pn({x:e.containerX,y:e.containerY},this.project(n[0],n[1]),this.project(i[0],i[1]));a<this.pointerDistance&&a<o&&(o=a,r=l)}}else if(u.type===`Polygon`){if(n||r)continue;Nn([e.lng,e.lat],u.coordinates)&&(i=l)}}return{clickedFeature:n||r||i}}},In=class extends Ct{constructor(e,t,n,r,i,a,o){super(e),this.config=void 0,this.featuresAtCursorEvent=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.draggedFeatureId=null,this.dragPosition=void 0,this.config=e,this.featuresAtCursorEvent=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.readFeature=a,this.mutateFeature=o}startDragging(e,t){this.draggedFeatureId=t,this.dragPosition=[e.lng,e.lat]}stopDragging(){this.draggedFeatureId=null,this.dragPosition=void 0}isDragging(){return this.draggedFeatureId!==null}canDrag(e,t){let{clickedFeature:n}=this.featuresAtCursorEvent.find(e,!0);return!(!n||n.id!==t)}drag(e){if(!this.draggedFeatureId)return;let t=this.readFeature.getGeometry(this.draggedFeatureId),n=[e.lng,e.lat];if(t.type===`Polygon`||t.type===`LineString`){let r,i;if(t.type===`Polygon`?(r=t.coordinates[0],i=r.length-1):(r=t.coordinates,i=r.length),!this.dragPosition)return!1;for(let e=0;e<i;e++){let t=r[e],i,a;if(this.config.projection===`web-mercator`){let e=U(this.dragPosition[0],this.dragPosition[1]),r=U(n[0],n[1]),o=U(t[0],t[1]),s={x:e.x-r.x,y:e.y-r.y},{lng:c,lat:l}=lt(o.x-s.x,o.y-s.y);i=c,a=l}else{let e=[this.dragPosition[0]-n[0],this.dragPosition[1]-n[1]];i=t[0]-e[0],a=t[1]-e[1]}if(i=H(i,this.config.coordinatePrecision),a=H(a,this.config.coordinatePrecision),i>180||i<-180||a>90||a<-90)return!1;r[e]=[i,a]}t.type===`Polygon`&&(r[r.length-1]=[r[0][0],r[0][1]]);let a=this.draggedFeatureId,o=null;if(t.type===`Polygon`)o=this.mutateFeature.updatePolygon({featureId:a,coordinateMutations:{type:kt,coordinates:[r]},context:{updateType:I.Provisional}});else{if(t.type!==`LineString`)return;o=this.mutateFeature.updateLineString({featureId:a,coordinateMutations:{type:kt,coordinates:r},context:{updateType:I.Provisional}})}if(!o)return!1;let s=o.geometry.coordinates;this.midPoints.updateAllInPlace({featureCoordinates:s}),this.selectionPoints.updateAllInPlace({featureCoordinates:s}),this.coordinatePoints.updateAllInPlace({featureId:a,featureCoordinates:s}),this.dragPosition=[e.lng,e.lat]}else t.type===`Point`&&(this.mutateFeature.updatePoint({featureId:this.draggedFeatureId,coordinateMutations:{type:kt,coordinates:n},context:{updateType:I.Provisional}}),this.dragPosition=[e.lng,e.lat])}},Ln=class extends Ct{constructor(e,t,n,r,i,a,o,s,c){super(e),this.config=void 0,this.pixelDistance=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.coordinateSnapping=void 0,this.lineSnapping=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.draggedCoordinate={id:null,index:-1},this.config=e,this.pixelDistance=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.coordinateSnapping=a,this.lineSnapping=o,this.readFeature=s,this.mutateFeature=c}getClosestCoordinate(e,t){let n={dist:1/0,index:-1,isFirstOrLastPolygonCoord:!1},r;if(t.type===`LineString`)r=t.coordinates;else{if(t.type!==`Polygon`)return n;r=t.coordinates[0]}for(let i=0;i<r.length;i++){let a=this.pixelDistance.measure(e,r[i]);if(a<this.pointerDistance&&a<n.dist){let e=t.type===`Polygon`&&(i===r.length-1||i===0);n.dist=a,n.index=e?0:i,n.isFirstOrLastPolygonCoord=e}}return n}getDraggable(e,t){let n=this.readFeature.getGeometry(t);return this.getClosestCoordinate(e,n)}getDraggableIndex(e,t){let n=this.readFeature.getGeometry(t),r=this.getClosestCoordinate(e,n);return r.index===-1?-1:r.index}snapCoordinate(e,t,n){let r=[e.lng,e.lat],i=e=>!!(e.properties&&e.properties.mode===n.properties.mode&&e.id!==this.draggedCoordinate.id);if(t!=null&&t.toLine){let t;t=this.lineSnapping.getSnappable(e,i).coordinate,t&&(r=t)}if(t.toCoordinate){let t;t=this.coordinateSnapping.getSnappable(e,i).coordinate,t&&(r=t)}if(t!=null&&t.toCustom){let i;i=t.toCustom(e,{currentCoordinate:this.draggedCoordinate.index,currentId:n.id,getCurrentGeometrySnapshot:n.id?()=>this.readFeature.getGeometry(n.id):()=>null,project:this.project,unproject:this.unproject}),i&&(r=i)}return r}drag(e,t,n){let r=this.draggedCoordinate.id;if(r===null)return!1;let i=this.draggedCoordinate.index,a=this.readFeature.getGeometry(r),o=this.readFeature.getProperties(r),s=a.type===`LineString`?a.coordinates:a.coordinates[0],c=a.type===`Polygon`&&(i===s.length-1||i===0),l=this.snapCoordinate(e,n,{type:`Feature`,id:r,geometry:a,properties:o});if(e.lng>180||e.lng<-180||e.lat>90||e.lat<-90)return!1;if(c){let e=s.length-1;s[0]=l,s[e]=l}else s[i]=l;if(a.type!==`Point`&&!t&&ft({type:`Feature`,geometry:a,properties:{}}))return!1;let u=r,d=null;return a.type===`Polygon`?d=this.mutateFeature.updatePolygon({featureId:u,coordinateMutations:{type:kt,coordinates:[s]},context:{updateType:I.Provisional}}):a.type===`LineString`&&(d=this.mutateFeature.updateLineString({featureId:u,coordinateMutations:{type:kt,coordinates:s},context:{updateType:I.Provisional}})),!!d&&(this.midPoints.updateOneAtIndex(i>0?i-1:-1,s),this.midPoints.updateOneAtIndex(i,s),this.selectionPoints.updateOneAtIndex(i,l),this.coordinatePoints.updateOneAtIndex(u,i,l),!0)}isDragging(){return this.draggedCoordinate.id!==null}startDragging(e,t){this.draggedCoordinate={id:e,index:t}}stopDragging(){this.draggedCoordinate={id:null,index:-1}}};function Rn(e){let t=0,n=0,r=0;return(e.geometry.type===`Polygon`?e.geometry.coordinates[0].slice(0,-1):e.geometry.coordinates).forEach(e=>{t+=e[0],n+=e[1],r++},!0),[t/r,n/r]}var zn=(e,t)=>{if(t===0||t===360||t===-360)return e;let n=.017453292519943295*t,r=(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).map(([e,t])=>U(e,t)),i=r.reduce((e,t)=>({x:e.x+t.x,y:e.y+t.y}),{x:0,y:0});i.x/=r.length,i.y/=r.length;let a=r.map(e=>({x:i.x+(e.x-i.x)*Math.cos(n)-(e.y-i.y)*Math.sin(n),y:i.y+(e.x-i.x)*Math.sin(n)+(e.y-i.y)*Math.cos(n)})).map(({x:e,y:t})=>[lt(e,t).lng,lt(e,t).lat]);return e.geometry.type===`Polygon`?e.geometry.coordinates[0]=a:e.geometry.coordinates=a,e};function Bn(e){let t=(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).map(e=>{let{x:t,y:n}=U(e[0],e[1]);return[t,n]});return e.geometry.type===`Polygon`?function(e){let t=0,n=0,r=0,i=e.length;for(let a=0;a<i-1;a++){let[i,o]=e[a],[s,c]=e[a+1],l=i*c-s*o;t+=l,n+=(i+s)*l,r+=(o+c)*l}return t/=2,n/=6*t,r/=6*t,{x:n,y:r}}(t):function(e){let t=e.length,n=0,r=0;for(let i=0;i<t;i++){let[t,a]=e[i];n+=t,r+=a}return{x:n/t,y:r/t}}(t)}var Vn=class extends Ct{constructor(e,t,n,r,i,a){super(e),this.config=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.lastBearing=void 0,this.selectedGeometry=void 0,this.selectedGeometryCentroid=void 0,this.selectedGeometryWebMercatorCentroid=void 0,this.config=e,this.selectionPoints=t,this.midPoints=n,this.coordinatePoints=r,this.readFeature=i,this.mutateFeature=a}reset(){this.lastBearing=void 0,this.selectedGeometry=void 0,this.selectedGeometryWebMercatorCentroid=void 0,this.selectedGeometryCentroid=void 0}rotate(e,t){this.selectedGeometry||=this.readFeature.getGeometry(t);let n=this.selectedGeometry;if(n.type!==`Polygon`&&n.type!==`LineString`)return;let r=[e.lng,e.lat],i,a={type:`Feature`,geometry:n,properties:{}};if(this.config.projection===`web-mercator`){this.selectedGeometryWebMercatorCentroid||=Bn(a);let t=U(e.lng,e.lat);if(i=Gt(this.selectedGeometryWebMercatorCentroid,t),i===0)return;if(!this.lastBearing)return void(this.lastBearing=i);zn(a,-(this.lastBearing-i))}else{if(this.config.projection!==`globe`)throw Error(`Unsupported projection`);if(this.selectedGeometryCentroid||=Rn({type:`Feature`,geometry:n,properties:{}}),i=En(this.selectedGeometryCentroid,r),!this.lastBearing)return void(this.lastBearing=i+180);(function(e,t){if(t===0||t===360||t===-360)return e;let n=Rn(e);(e.geometry.type===`Polygon`?e.geometry.coordinates[0]:e.geometry.coordinates).forEach(e=>{let r=En(n,e)+t,i=Dn(n,function(e,t){e[0]+=e[0]-t[0]>180?-360:t[0]-e[0]>180?360:0;let n=nt,r=t[1]*Math.PI/180,i=e[1]*Math.PI/180,a=i-r,o=Math.abs(e[0]-t[0])*Math.PI/180;o>Math.PI&&(o-=2*Math.PI);let s=Math.log(Math.tan(i/2+Math.PI/4)/Math.tan(r/2+Math.PI/4)),c=Math.abs(s)>1e-11?a/s:Math.cos(r);return Math.sqrt(a*a+c*c*o*o)*n}(n,e),r);e[0]=i[0],e[1]=i[1]})})(a,-(this.lastBearing-(i+180)))}let o=n.type===`Polygon`?n.coordinates[0]:n.coordinates;o.forEach(e=>{e[0]=H(e[0],this.coordinatePrecision),e[1]=H(e[1],this.coordinatePrecision)});let s={featureId:t,coordinateMutations:{type:kt,coordinates:n.type===`Polygon`?[o]:o},context:{updateType:I.Provisional}},c=null;if(a.geometry.type===`Polygon`)c=this.mutateFeature.updatePolygon(s);else{if(a.geometry.type!==`LineString`)return;c=this.mutateFeature.updateLineString(s)}if(!c)return!1;let l=c.geometry.coordinates;this.midPoints.updateAllInPlace({featureCoordinates:l}),this.selectionPoints.updateAllInPlace({featureCoordinates:l}),this.coordinatePoints.updateAllInPlace({featureId:t,featureCoordinates:l}),this.projection===`web-mercator`?this.lastBearing=i:this.projection===`globe`&&(this.lastBearing=i+180)}},Hn=class extends Ct{constructor(e,t){super(e),this.config=void 0,this.dragCoordinateResizeBehavior=void 0,this.config=e,this.dragCoordinateResizeBehavior=t}scale(e,t){if(!this.dragCoordinateResizeBehavior.isDragging()){let n=this.dragCoordinateResizeBehavior.getDraggableIndex(e,t);this.dragCoordinateResizeBehavior.startDragging(t,n)}this.dragCoordinateResizeBehavior.drag(e,`center-fixed`)}reset(){this.dragCoordinateResizeBehavior.stopDragging()}};function Un({coordinates:e,originX:t,originY:n,xScale:r,yScale:i}){r===1&&i===1||e.forEach(e=>{let{x:a,y:o}=U(e[0],e[1]),{lng:s,lat:c}=lt(t+(a-t)*r,n+(o-n)*i);e[0]=s,e[1]=c})}var Wn=class extends Ct{constructor(e,t,n,r,i,a,o){super(e),this.config=void 0,this.pixelDistance=void 0,this.selectionPoints=void 0,this.midPoints=void 0,this.coordinatePoints=void 0,this.readFeature=void 0,this.mutateFeature=void 0,this.minimumScale=1e-4,this.draggedCoordinate={id:null,index:-1},this.boundingBoxMaps={opposite:{0:4,1:5,2:6,3:7,4:0,5:1,6:2,7:3}},this.config=e,this.pixelDistance=t,this.selectionPoints=n,this.midPoints=r,this.coordinatePoints=i,this.readFeature=a,this.mutateFeature=o}getClosestCoordinate(e,t){let n={dist:1/0,index:-1,isFirstOrLastPolygonCoord:!1},r;if(t.type===`LineString`)r=t.coordinates;else{if(t.type!==`Polygon`)return n;r=t.coordinates[0]}for(let i=0;i<r.length;i++){let a=this.pixelDistance.measure(e,r[i]);if(a<this.pointerDistance&&a<n.dist){let e=t.type===`Polygon`&&(i===r.length-1||i===0);n.dist=a,n.index=e?0:i,n.isFirstOrLastPolygonCoord=e}}return n}isValidDragWebMercator(e,t,n){switch(e){case 0:if(t<=0||n>=0)return!1;break;case 1:if(n>=0)return!1;break;case 2:if(t>=0||n>=0)return!1;break;case 3:if(t>=0)return!1;break;case 4:if(t>=0||n<=0)return!1;break;case 5:if(n<=0)return!1;break;case 6:if(t<=0||n<=0)return!1;break;case 7:if(t<=0)return!1}return!0}getSelectedFeatureDataWebMercator(){if(!this.draggedCoordinate.id||this.draggedCoordinate.index===-1)return null;let e=this.getFeature(this.draggedCoordinate.id);if(!e)return null;let t=this.getNormalisedCoordinates(e.geometry);return{boundingBox:this.getBBoxWebMercator(t),feature:e,updatedCoords:t,selectedCoordinate:t[this.draggedCoordinate.index]}}centerWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{feature:n,boundingBox:r,updatedCoords:i,selectedCoordinate:a}=t,o=Bn(n);if(!o)return null;let s=U(a[0],a[1]),{closestBBoxIndex:c}=this.getIndexesWebMercator(r,s),l=U(e.lng,e.lat);return this.scaleWebMercator({closestBBoxIndex:c,updatedCoords:i,webMercatorCursor:l,webMercatorSelected:s,webMercatorOrigin:o}),i}centerFixedWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{feature:n,boundingBox:r,updatedCoords:i,selectedCoordinate:a}=t,o=Bn(n);if(!o)return null;let s=U(a[0],a[1]),{closestBBoxIndex:c}=this.getIndexesWebMercator(r,s),l=U(e.lng,e.lat);return this.scaleFixedWebMercator({closestBBoxIndex:c,updatedCoords:i,webMercatorCursor:l,webMercatorSelected:s,webMercatorOrigin:o}),i}scaleFixedWebMercator({closestBBoxIndex:e,webMercatorOrigin:t,webMercatorSelected:n,webMercatorCursor:r,updatedCoords:i}){if(!this.isValidDragWebMercator(e,t.x-r.x,t.y-r.y))return null;let a=Pt(t,r)/Pt(t,n);return a<0&&(a=this.minimumScale),Un({coordinates:i,originX:t.x,originY:t.y,xScale:a,yScale:a}),i}oppositeFixedWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{boundingBox:n,updatedCoords:r,selectedCoordinate:i}=t,a=U(i[0],i[1]),{oppositeBboxIndex:o,closestBBoxIndex:s}=this.getIndexesWebMercator(n,a),c={x:n[o][0],y:n[o][1]},l=U(e.lng,e.lat);return this.scaleFixedWebMercator({closestBBoxIndex:s,updatedCoords:r,webMercatorCursor:l,webMercatorSelected:a,webMercatorOrigin:c}),r}oppositeWebMercatorDrag(e){let t=this.getSelectedFeatureDataWebMercator();if(!t)return null;let{boundingBox:n,updatedCoords:r,selectedCoordinate:i}=t,a=U(i[0],i[1]),{oppositeBboxIndex:o,closestBBoxIndex:s}=this.getIndexesWebMercator(n,a),c={x:n[o][0],y:n[o][1]},l=U(e.lng,e.lat);return this.scaleWebMercator({closestBBoxIndex:s,updatedCoords:r,webMercatorCursor:l,webMercatorSelected:a,webMercatorOrigin:c}),r}scaleWebMercator({closestBBoxIndex:e,webMercatorOrigin:t,webMercatorSelected:n,webMercatorCursor:r,updatedCoords:i}){let a=t.x-r.x,o=t.y-r.y;if(!this.isValidDragWebMercator(e,a,o))return null;let s=1;a!==0&&e!==1&&e!==5&&(s=1-(t.x-n.x-a)/a);let c=1;return o!==0&&e!==3&&e!==7&&(c=1-(t.y-n.y-o)/o),this.validateScale(s,c)?(s<0&&(s=this.minimumScale),c<0&&(c=this.minimumScale),this.performWebMercatorScale(i,t.x,t.y,s,c),i):null}getFeature(e){if(this.draggedCoordinate.id===null)return null;let t=this.readFeature.getGeometry(e);return t.type!==`Polygon`&&t.type!==`LineString`?null:{id:e,type:`Feature`,geometry:t,properties:{}}}getNormalisedCoordinates(e){return e.type===`Polygon`?e.coordinates[0]:e.coordinates}validateScale(e,t){return!isNaN(e)&&t<2**53-1&&!isNaN(t)&&t<2**53-1}performWebMercatorScale(e,t,n,r,i){e.forEach(e=>{let{x:a,y:o}=U(e[0],e[1]),{lng:s,lat:c}=lt(t+(a-t)*r,n+(o-n)*i);e[0]=s,e[1]=c})}getBBoxWebMercator(e){let t=[1/0,1/0,-1/0,-1/0];(e=e.map(e=>{let{x:t,y:n}=U(e[0],e[1]);return[t,n]})).forEach(([e,n])=>{e<t[0]&&(t[0]=e),n<t[1]&&(t[1]=n),e>t[2]&&(t[2]=e),n>t[3]&&(t[3]=n)});let[n,r,i,a]=t;return[[n,a],[(n+i)/2,a],[i,a],[i,a+(r-a)/2],[i,r],[(n+i)/2,r],[n,r],[n,a+(r-a)/2]]}getIndexesWebMercator(e,t){let n,r=1/0;for(let i=0;i<e.length;i++){let a=Pt({x:t.x,y:t.y},{x:e[i][0],y:e[i][1]});a<r&&(n=i,r=a)}if(n===void 0)throw Error(`No closest coordinate found`);return{oppositeBboxIndex:this.boundingBoxMaps.opposite[n],closestBBoxIndex:n}}isDragging(){return this.draggedCoordinate.id!==null}startDragging(e,t){this.draggedCoordinate={id:e,index:t}}stopDragging(){this.draggedCoordinate={id:null,index:-1}}getDraggableIndex(e,t){let n=this.readFeature.getGeometry(t),r=this.getClosestCoordinate(e,n);return r.index===-1?-1:r.index}drag(e,t){if(!this.draggedCoordinate.id)return!1;let n=this.getFeature(this.draggedCoordinate.id);if(!n)return!1;let r=null;if(t===`center`?r=this.centerWebMercatorDrag(e):t===`opposite`?r=this.oppositeWebMercatorDrag(e):t===`center-fixed`?r=this.centerFixedWebMercatorDrag(e):t===`opposite-fixed`&&(r=this.oppositeFixedWebMercatorDrag(e)),!r)return!1;for(let e=0;e<r.length;e++){let t=r[e];if(t[0]=H(t[0],this.coordinatePrecision),t[1]=H(t[1],this.coordinatePrecision),!mt(t,this.coordinatePrecision))return!1}let i=n.id,a=null;if(n.geometry.type===`Polygon`?a=this.mutateFeature.updatePolygon({featureId:i,coordinateMutations:{type:kt,coordinates:[r]},context:{updateType:I.Provisional}}):n.geometry.type===`LineString`&&(a=this.mutateFeature.updateLineString({featureId:i,coordinateMutations:{type:kt,coordinates:r},context:{updateType:I.Provisional}})),!a)return!1;let o=a.geometry.coordinates;return this.midPoints.updateAllInPlace({featureCoordinates:o}),this.selectionPoints.updateAllInPlace({featureCoordinates:o}),this.coordinatePoints.updateAllInPlace({featureId:i,featureCoordinates:o}),!0}},Gn={deselect:`Escape`,delete:`Delete`,rotate:[`Control`,`r`],scale:[`Control`,`s`]},Kn={pointerOver:`move`,dragStart:`move`,dragEnd:`move`,insertMidpoint:`crosshair`},qn=class extends et{constructor(e){super(e,!0),this.mode=`select`,this.allowManualDeselection=!0,this.allowManualSelection=!0,this.dragEventThrottle=5,this.dragEventCount=0,this.selected=[],this.flags={},this.keyEvents=Gn,this.cursors=Kn,this.validations={},this.dragTarget={type:`none`},this.selectionPoints=void 0,this.midPoints=void 0,this.coordinateSnap=void 0,this.featuresAtMouseEvent=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.dragFeature=void 0,this.dragCoordinate=void 0,this.rotateFeature=void 0,this.scaleFeature=void 0,this.dragCoordinateResizeFeature=void 0,this.coordinatePoints=void 0,this.lineSnap=void 0,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){if(super.updateOptions(e),this.cursors=e&&e.cursors?F({},this.cursors,e.cursors):Kn,e?.keyEvents===null?this.keyEvents={deselect:null,delete:null,rotate:null,scale:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e?.dragEventThrottle!==void 0&&(this.dragEventThrottle=e.dragEventThrottle),e?.allowManualDeselection!==void 0&&(this.allowManualDeselection=e.allowManualDeselection),e?.allowManualSelection!==void 0&&(this.allowManualSelection=e.allowManualSelection),e!=null&&e.flags){this.flags=F({},this.flags,e.flags),this.validations={};for(let e in this.flags){let t=this.flags[e].feature;t&&t.validation&&(this.validations[e]=t.validation)}}}selectFeature(e){this.select(e,!1)}setSelecting(){if(this._state!==`started`)throw Error(`Mode must be started to move to selecting state`);this._state=`selecting`}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:(e,t)=>{let n=e.properties.mode;return this.validations&&this.validations[n]?this.validations[n](e,t):{valid:!0}}}),this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.featuresAtMouseEvent=new Fn(e,this.clickBoundingBox,this.pixelDistance),this.selectionPoints=new Mn(e,this.mutateFeature),this.coordinatePoints=new sn(e,this.readFeature,this.mutateFeature),this.midPoints=new jn(e,this.selectionPoints,this.coordinatePoints,this.mutateFeature,this.readFeature,this.pixelDistance),this.coordinateSnap=new Vt(e,this.pixelDistance,this.clickBoundingBox),this.lineSnap=new nn(e,this.pixelDistance,this.clickBoundingBox),this.rotateFeature=new Vn(e,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.dragFeature=new In(e,this.featuresAtMouseEvent,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.dragCoordinate=new Ln(e,this.pixelDistance,this.selectionPoints,this.midPoints,this.coordinatePoints,this.coordinateSnap,this.lineSnap,this.readFeature,this.mutateFeature),this.dragCoordinateResizeFeature=new Wn(e,this.pixelDistance,this.selectionPoints,this.midPoints,this.coordinatePoints,this.readFeature,this.mutateFeature),this.scaleFeature=new Hn(e,this.dragCoordinateResizeFeature)}deselectFeature(e){this.deselect(e)}deselect(e){this.selected.includes(e)&&(this.mutateFeature.setDeselected(this.selected),this.onDeselect(this.selected[0]),this.selected=[],this.selectionPoints.delete(),this.midPoints.delete(),this.dragTarget={type:`none`})}deleteSelected(){this.selected.length&&this.mutateFeature.deleteFeaturesIfPresent(this.selected),this.selected=[],this.dragTarget={type:`none`}}clearDragTargetAndCursor(){this.dragTarget={type:`none`},this.setCursor(`unset`)}getSelectedFlags(e){let t=this.readFeature.getProperties(e),n=this.flags[t.mode]?.feature,r=n?.coordinates;return{featureFlags:n,coordinatesFlags:r,hasDraggableFlags:n&&(n.draggable||r?.draggable||r?.resizable||typeof r?.midpoints==`object`&&r.midpoints.draggable)}}onRightClick(e){if(!this.selectionPoints.ids.length)return;let t,n=1/0;if(this.selectionPoints.ids.forEach(r=>{let i=this.readFeature.getGeometry(r),a=this.pixelDistance.measure(e,i.coordinates);a<this.pointerDistance&&a<n&&(n=a,t=this.readFeature.getProperties(r))}),!t)return;let r=t.selectionPointFeatureId,i=t.index,a=this.readFeature.getProperties(r),o=this.flags[a.mode];if(!(o&&o.feature&&o.feature.coordinates&&o.feature.coordinates.deletable))return;let s=this.readFeature.getGeometry(r),c;if(s.type===`Polygon`){if(c=s.coordinates[0],c.length<=4)return}else if(s.type!==`LineString`||(c=s.coordinates,c.length<=2))return;s.type!==`Polygon`||i!==0&&i!==c.length-1?c.splice(i,1):(c.shift(),c.pop(),c.push([c[0][0],c[0][1]]));let l=null;if(s.type===`Polygon`?l=this.mutateFeature.updatePolygon({featureId:r,coordinateMutations:{type:kt,coordinates:[c]},context:{updateType:I.Commit}}):s.type===`LineString`&&(l=this.mutateFeature.updateLineString({featureId:r,coordinateMutations:{type:kt,coordinates:c},context:{updateType:I.Commit}})),!l)return;let u=l.geometry.coordinates;this.mutateFeature.deleteFeaturesIfPresent([...this.midPoints.ids,...this.selectionPoints.ids]),a.coordinatePointIds&&this.coordinatePoints.createOrUpdate({featureId:r,featureCoordinates:u}),this.selectionPoints.create({featureCoordinates:u,featureId:r}),o&&o.feature&&o.feature.coordinates&&o.feature.coordinates.midpoints&&this.midPoints.create({featureCoordinates:u,featureId:r}),this.onFinish(r,{action:Ke,mode:this.mode})}select(e,t=!0){if(this.selected[0]===e)return;let{mode:n}=this.readFeature.getProperties(e),r=this.flags[n];if(!r||!r.feature)return;let i=this.selected[0];if(i){if(i===e)return;this.deselect(i)}t&&this.setCursor(this.cursors.pointerOver),this.selected=[e],this.mutateFeature.setSelected(e),this.onSelect(e);let{type:a,coordinates:o}=this.readFeature.getGeometry(e);a!==`LineString`&&a!==`Polygon`||o&&r&&r.feature.coordinates&&(this.selectionPoints.create({featureCoordinates:o,featureId:e}),r.feature.coordinates.midpoints&&this.midPoints.create({featureCoordinates:o,featureId:e}))}onLeftClick(e){let{clickedFeature:t}=this.featuresAtMouseEvent.find(e,this.selected.length>0),n=this.midPoints.getNearestMidPoint(e),r=this.selected[0];if(r){var i;let{featureFlags:t}=this.getSelectedFlags(r);if(t!=null&&(i=t.coordinates)!=null&&i.midpoints&&n){if(t.coordinates.draggable){let t=this.pixelDistance.measure(e,this.readFeature.getGeometry(n).coordinates),{dist:i}=this.dragCoordinate.getDraggable(e,r);if(i!==void 0&&t>i)return}this.midPoints.insert({featureId:r,midPointId:n}),this.onFinish(this.selected[0],{action:qe,mode:this.mode});return}}if(t!=null&&t.id)this.allowManualSelection&&this.select(t.id,!0);else if(this.selected.length&&this.allowManualDeselection)return void this.deselect(this.selected[0])}start(){this.setStarted(),this.setSelecting()}stop(){this.cleanUp(),this.setStarted(),this.setStopped()}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}canScale(e){return this.keyEvents.scale&&this.keyEvents.scale.every(t=>e.heldKeys.includes(t))}canRotate(e){return this.keyEvents.rotate&&this.keyEvents.rotate.every(t=>e.heldKeys.includes(t))}preventDefaultKeyEvent(e){let t=this.canRotate(e),n=this.canScale(e);(t||n)&&e.preventDefault()}onKeyDown(e){this.preventDefaultKeyEvent(e)}onKeyUp(e){if(this.preventDefaultKeyEvent(e),this.keyEvents.delete&&e.key===this.keyEvents.delete){if(!this.selected.length)return;let e=this.selected[0];this.onDeselect(this.selected[0]),this.coordinatePoints.deletePointsByFeatureIds([e]),this.deleteSelected(),this.selectionPoints.delete(),this.midPoints.delete()}else this.keyEvents.deselect&&e.key===this.keyEvents.deselect&&this.cleanUp()}cleanUp(){this.selected.length&&this.deselect(this.selected[0])}onDragStart(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragStart,e))return;let n=this.selected[0];if(!n)return;let{featureFlags:r,coordinatesFlags:i,hasDraggableFlags:a}=this.getSelectedFlags(n);if(!a)return;this.dragEventCount=0;let o=this.dragTarget.type!==`none`&&this.dragTarget.featureId===n?this.dragTarget:{type:`none`},s=o.type===`coordinate`?o.coordinateIndex:this.dragCoordinate.getDraggableIndex(e,n),c=o.type===`resize`?o.coordinateIndex:this.dragCoordinateResizeFeature.getDraggableIndex(e,n),l=i?.resizable&&c!==-1,u=i?.draggable&&s!==-1,d=i&&typeof i.midpoints==`object`&&i.midpoints.draggable,f=r?.draggable&&(o.type===`feature`||this.dragFeature.canDrag(e,n));if(l)return this.setCursor(this.cursors.dragStart),this.dragCoordinateResizeFeature.startDragging(n,c),void t(!1);if(u)return this.setCursor(this.cursors.dragStart),this.dragCoordinate.startDragging(n,s),void t(!1);if(d){let r=o.type===`midpoint`?o.midPointId:this.midPoints.getNearestMidPoint(e);if(this.selected.length&&r){this.midPoints.insert({featureId:n,midPointId:r}),this.onFinish(this.selected[0],{action:qe,mode:this.mode});let i=this.dragCoordinate.getDraggableIndex(e,n);this.dragCoordinate.startDragging(n,i),t(!1);return}}if(f)return this.setCursor(this.cursors.dragStart),this.dragFeature.startDragging(e,n),void t(!1);this.setCursor(`unset`)}onDrag(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDrag,e))return;let n=this.selected[0];if(!n)return;let r=this.readFeature.getProperties(n),i=this.flags[r.mode],a=!0===(i&&i.feature&&i.feature.selfIntersectable);if(this.dragEventCount++,this.dragEventCount%this.dragEventThrottle!=0){if(i&&i.feature&&i.feature.rotateable&&this.canRotate(e))return t(!1),void this.rotateFeature.rotate(e,n);if(i&&i.feature&&i.feature.scaleable&&this.canScale(e))return t(!1),void this.scaleFeature.scale(e,n);if(this.dragCoordinateResizeFeature.isDragging()&&i.feature&&i.feature.coordinates&&i.feature.coordinates.resizable){if(this.projection===`globe`)throw Error(`Globe is currently unsupported projection for resizable`);t(!1),this.dragCoordinateResizeFeature.drag(e,i.feature.coordinates.resizable);return}if(this.dragCoordinate.isDragging()){var o;let t=(o=i.feature)==null||(o=o.coordinates)==null?void 0:o.snappable,n={toCoordinate:!1};!0===t?n={toCoordinate:!0}:typeof t==`object`&&(n=t),this.dragCoordinate.drag(e,a,n);return}this.dragFeature.isDragging()?this.dragFeature.drag(e):t(!0)}}onDragEnd(e,t){this.allowPointerEvent(this.pointerEvents.onDragEnd,e)&&(this.setCursor(this.cursors.dragEnd),this.dragCoordinate.isDragging()?this.onFinish(this.selected[0],{mode:this.mode,action:`dragCoordinate`}):this.dragFeature.isDragging()?this.onFinish(this.selected[0],{mode:this.mode,action:`dragFeature`}):this.dragCoordinateResizeFeature.isDragging()&&this.onFinish(this.selected[0],{mode:this.mode,action:`dragCoordinateResize`}),this.dragCoordinate.stopDragging(),this.dragFeature.stopDragging(),this.dragCoordinateResizeFeature.stopDragging(),this.rotateFeature.reset(),this.scaleFeature.reset(),t(!0))}onMouseMove(e){let t=this.selected[0];if(!t)return void this.clearDragTargetAndCursor();if(this.dragFeature.isDragging()||this.dragCoordinate.isDragging()||this.dragCoordinateResizeFeature.isDragging())return;let{featureFlags:n}=this.getSelectedFlags(t);if(!n)return void this.clearDragTargetAndCursor();let r,i=n.coordinates;if(i!=null&&i.midpoints&&(r=this.midPoints.getNearestMidPoint(e),r&&(this.dragTarget={type:`midpoint`,featureId:t,midPointId:r},this.setCursor(this.cursors.insertMidpoint))),i&&i.draggable){let{index:n,dist:i}=this.dragCoordinate.getDraggable(e,t);if(n>-1){if(r&&this.pixelDistance.measure(e,this.readFeature.getGeometry(r).coordinates)<i)return;this.dragTarget={type:`coordinate`,featureId:t,coordinateIndex:n},this.setCursor(this.cursors.pointerOver);return}}if(i&&i.resizable){let n=this.dragCoordinateResizeFeature.getDraggableIndex(e,t);if(n>-1)return this.dragTarget={type:`resize`,featureId:t,coordinateIndex:n},void this.setCursor(this.cursors.pointerOver)}if(n.draggable&&this.dragFeature.canDrag(e,t)){if(r)return;this.dragTarget={type:`feature`,featureId:t},this.setCursor(this.cursors.pointerOver);return}r||this.clearDragTargetAndCursor()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});if(e.properties.mode===this.mode&&e.geometry.type===`Point`){if(e.properties[Ye.SELECTION_POINT])return t.pointColor=this.getHexColorStylingValue(this.styles.selectionPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.selectionPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.selectionPointOutlineColor,t.pointOutlineColor,e),t.pointWidth=this.getNumericStylingValue(this.styles.selectionPointWidth,t.pointWidth,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.selectionPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.selectionPointOutlineWidth,2,e),t.zIndex=30,t;if(e.properties[Ye.MID_POINT])return t.pointColor=this.getHexColorStylingValue(this.styles.midPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.midPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.midPointOutlineColor,t.pointOutlineColor,e),t.pointWidth=this.getNumericStylingValue(this.styles.midPointWidth,4,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.midPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.midPointOutlineWidth,2,e),t.zIndex=50,t}else if(e.properties[Ye.SELECTED]){if(e.geometry.type===`Point`&&e.properties[L.MARKER])return t.markerUrl=this.getUrlStylingValue(this.styles.selectedMarkerUrl,Je,e),t.markerHeight=this.getNumericStylingValue(this.styles.selectedMarkerHeight,40,e),t.markerWidth=this.getNumericStylingValue(this.styles.selectedMarkerWidth,32,e),t;if(e.geometry.type===`Polygon`)return t.polygonFillColor=this.getHexColorStylingValue(this.styles.selectedPolygonColor,t.polygonFillColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.selectedPolygonOutlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.selectedPolygonOutlineColor,t.polygonOutlineColor,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.selectedPolygonOutlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.selectedPolygonFillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe,t;if(e.geometry.type===`LineString`)return t.lineStringColor=this.getHexColorStylingValue(this.styles.selectedLineStringColor,t.lineStringColor,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.selectedLineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t;if(e.geometry.type===`Point`)return t.pointWidth=this.getNumericStylingValue(this.styles.selectedPointWidth,t.pointWidth,e),t.pointColor=this.getHexColorStylingValue(this.styles.selectedPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.selectedPointOpacity,1,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.selectedPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.selectedPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.selectedPointOutlineWidth,t.pointOutlineWidth,e),t.zIndex=Xe,t}return t}afterFeatureUpdated(e){if(this.selected.length&&e.id===this.selected[0]){var t,n;let r=this.flags[e.properties.mode];if(r==null||(t=r.feature)==null||!t.coordinates)return;let i=e.geometry.type,a=e.id;if(this.selectionPoints.delete(),this.midPoints.delete(),i!==`LineString`&&i!==`Polygon`)return;let o=e.geometry.coordinates;this.selectionPoints.create({featureCoordinates:o,featureId:a}),r!=null&&(n=r.feature)!=null&&(n=n.coordinates)!=null&&n.midpoints&&this.midPoints.create({featureCoordinates:o,featureId:a})}}},Jn=class extends V{constructor(...e){super(...e),this.type=Qe.Static,this.mode=`static`}start(){}stop(){}onKeyUp(){}onKeyDown(){}onClick(){}onDragStart(){}onDrag(){}onDragEnd(){}onMouseMove(){}cleanUp(){}styleFeature(){return F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0})}};function Yn(e,t,n,r,i){for(;r>n;){if(r-n>600){let a=r-n+1,o=t-n+1,s=Math.log(a),c=.5*Math.exp(2*s/3),l=.5*Math.sqrt(s*c*(a-c)/a)*(o-a/2<0?-1:1);Yn(e,t,Math.max(n,Math.floor(t-o*c/a+l)),Math.min(r,Math.floor(t+(a-o)*c/a+l)),i)}let a=e[t],o=n,s=r;for(Xn(e,n,t),i(e[r],a)>0&&Xn(e,n,r);o<s;){for(Xn(e,o,s),o++,s--;i(e[o],a)<0;)o++;for(;i(e[s],a)>0;)s--}i(e[n],a)===0?Xn(e,n,s):(s++,Xn(e,s,r)),s<=t&&(n=s+1),t<=s&&(r=s-1)}}function Xn(e,t,n){let r=e[t];e[t]=e[n],e[n]=r}function Zn(e,t){Qn(e,0,e.children.length,t,e)}function Qn(e,t,n,r,i){i||=sr([]),i.minX=1/0,i.minY=1/0,i.maxX=-1/0,i.maxY=-1/0;for(let a=t;a<n;a++){let t=e.children[a];$n(i,e.leaf?r(t):t)}return i}function $n(e,t){return e.minX=Math.min(e.minX,t.minX),e.minY=Math.min(e.minY,t.minY),e.maxX=Math.max(e.maxX,t.maxX),e.maxY=Math.max(e.maxY,t.maxY),e}function er(e,t){return e.minX-t.minX}function tr(e,t){return e.minY-t.minY}function nr(e){return(e.maxX-e.minX)*(e.maxY-e.minY)}function rr(e){return e.maxX-e.minX+(e.maxY-e.minY)}function ir(e,t){let n=Math.max(e.minX,t.minX),r=Math.max(e.minY,t.minY),i=Math.min(e.maxX,t.maxX),a=Math.min(e.maxY,t.maxY);return Math.max(0,i-n)*Math.max(0,a-r)}function ar(e,t){return e.minX<=t.minX&&e.minY<=t.minY&&t.maxX<=e.maxX&&t.maxY<=e.maxY}function or(e,t){return t.minX<=e.maxX&&t.minY<=e.maxY&&t.maxX>=e.minX&&t.maxY>=e.minY}function sr(e){return{children:e,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function cr(e,t,n,r,i){let a=[t,n];for(;a.length;){if((n=a.pop())-(t=a.pop())<=r)continue;let o=t+Math.ceil((n-t)/r/2)*r;Yn(e,o,t,n,i),a.push(t,o,o,n)}}var lr=class{constructor(e){this._maxEntries=void 0,this._minEntries=void 0,this.data=void 0,this._maxEntries=Math.max(4,e),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()}search(e){let t=this.data,n=[];if(!or(e,t))return n;let r=this.toBBox,i=[];for(;t;){for(let a=0;a<t.children.length;a++){let o=t.children[a],s=t.leaf?r(o):o;or(e,s)&&(t.leaf?n.push(o):ar(e,s)?this._all(o,n):i.push(o))}t=i.pop()}return n}collides(e){let t=this.data;if(or(e,t)){let n=[];for(;t;){for(let r=0;r<t.children.length;r++){let i=t.children[r],a=t.leaf?this.toBBox(i):i;if(or(e,a)){if(t.leaf||ar(e,a))return!0;n.push(i)}}t=n.pop()}}return!1}load(e){if(e.length<this._minEntries){for(let t=0;t<e.length;t++)this.insert(e[t]);return}let t=this._build(e.slice(),0,e.length-1,0);if(this.data.children.length)if(this.data.height===t.height)this._splitRoot(this.data,t);else{if(this.data.height<t.height){let e=this.data;this.data=t,t=e}this._insert(t,this.data.height-t.height-1,!0)}else this.data=t}insert(e){this._insert(e,this.data.height-1)}clear(){this.data=sr([])}remove(e){let t=this.data,n=this.toBBox(e),r=[],i=[],a,o,s=!1;for(;t||r.length;){if(t||(t=r.pop(),o=r[r.length-1],a=i.pop(),s=!0),t.leaf){let n=t.children.indexOf(e);n!==-1&&(t.children.splice(n,1),r.push(t),this._condense(r))}s||t.leaf||!ar(t,n)?o?(a++,t=o.children[a],s=!1):t=null:(r.push(t),i.push(a),a=0,o=t,t=t.children[0])}}toBBox(e){return e}compareMinX(e,t){return e.minX-t.minX}compareMinY(e,t){return e.minY-t.minY}_all(e,t){let n=[];for(;e;)e.leaf?t.push(...e.children):n.push(...e.children),e=n.pop();return t}_build(e,t,n,r){let i=n-t+1,a,o=this._maxEntries;if(i<=o)return a=sr(e.slice(t,n+1)),Zn(a,this.toBBox),a;r||(r=Math.ceil(Math.log(i)/Math.log(o)),o=Math.ceil(i/o**(r-1))),a=sr([]),a.leaf=!1,a.height=r;let s=Math.ceil(i/o),c=s*Math.ceil(Math.sqrt(o));cr(e,t,n,c,this.compareMinX);for(let i=t;i<=n;i+=c){let t=Math.min(i+c-1,n);cr(e,i,t,s,this.compareMinY);for(let n=i;n<=t;n+=s){let i=Math.min(n+s-1,t);a.children.push(this._build(e,n,i,r-1))}}return Zn(a,this.toBBox),a}_chooseSubtree(e,t,n,r){for(;r.push(t),!t.leaf&&r.length-1!==n;){let n,r=1/0,o=1/0;for(let s=0;s<t.children.length;s++){let c=t.children[s],l=nr(c),u=(i=e,a=c,(Math.max(a.maxX,i.maxX)-Math.min(a.minX,i.minX))*(Math.max(a.maxY,i.maxY)-Math.min(a.minY,i.minY))-l);u<o?(o=u,r=l<r?l:r,n=c):u===o&&l<r&&(r=l,n=c)}t=n||t.children[0]}var i,a;return t}_insert(e,t,n){let r=n?e:this.toBBox(e),i=[],a=this._chooseSubtree(r,this.data,t,i);for(a.children.push(e),$n(a,r);t>=0&&i[t].children.length>this._maxEntries;)this._split(i,t),t--;this._adjustParentBBoxes(r,i,t)}_split(e,t){let n=e[t],r=n.children.length,i=this._minEntries;this._chooseSplitAxis(n,i,r);let a=this._chooseSplitIndex(n,i,r),o=sr(n.children.splice(a,n.children.length-a));o.height=n.height,o.leaf=n.leaf,Zn(n,this.toBBox),Zn(o,this.toBBox),t?e[t-1].children.push(o):this._splitRoot(n,o)}_splitRoot(e,t){this.data=sr([e,t]),this.data.height=e.height+1,this.data.leaf=!1,Zn(this.data,this.toBBox)}_chooseSplitIndex(e,t,n){let r,i=1/0,a=1/0;for(let o=t;o<=n-t;o++){let t=Qn(e,0,o,this.toBBox),s=Qn(e,o,n,this.toBBox),c=ir(t,s),l=nr(t)+nr(s);c<i?(i=c,r=o,a=l<a?l:a):c===i&&l<a&&(a=l,r=o)}return r||n-t}_chooseSplitAxis(e,t,n){let r=e.leaf?this.compareMinX:er,i=e.leaf?this.compareMinY:tr;this._allDistMargin(e,t,n,r)<this._allDistMargin(e,t,n,i)&&e.children.sort(r)}_allDistMargin(e,t,n,r){e.children.sort(r);let i=this.toBBox,a=Qn(e,0,t,i),o=Qn(e,n-t,n,i),s=rr(a)+rr(o);for(let r=t;r<n-t;r++){let t=e.children[r];$n(a,e.leaf?i(t):t),s+=rr(a)}for(let r=n-t-1;r>=t;r--){let t=e.children[r];$n(o,e.leaf?i(t):t),s+=rr(o)}return s}_adjustParentBBoxes(e,t,n){for(let r=n;r>=0;r--)$n(t[r],e)}_condense(e){for(let t,n=e.length-1;n>=0;n--)e[n].children.length===0?n>0?(t=e[n-1].children,t.splice(t.indexOf(e[n]),1)):this.clear():Zn(e[n],this.toBBox)}},ur=class{constructor(e){this.tree=void 0,this.idToNode=void 0,this.nodeToId=void 0,this.tree=new lr(e&&e.maxEntries?e.maxEntries:9),this.idToNode=new Map,this.nodeToId=new Map}setMaps(e,t){this.idToNode.set(e.id,t),this.nodeToId.set(t,e.id)}toBBox(e){let t=[],n=[],r;if(e.geometry.type===`Polygon`)r=e.geometry.coordinates[0];else if(e.geometry.type===`LineString`)r=e.geometry.coordinates;else{if(e.geometry.type!==`Point`)throw Error(`Not a valid feature to turn into a bounding box`);r=[e.geometry.coordinates]}for(let e=0;e<r.length;e++)n.push(r[e][1]),t.push(r[e][0]);let i=Math.min(...n),a=Math.max(...n);return{minX:Math.min(...t),minY:i,maxX:Math.max(...t),maxY:a}}insert(e){if(this.idToNode.get(String(e.id)))throw Error(`Feature already exists`);let t=this.toBBox(e);this.setMaps(e,t),this.tree.insert(t)}load(e){let t=[],n=new Set;e.forEach(e=>{let r=this.toBBox(e);if(this.setMaps(e,r),n.has(String(e.id)))throw Error(`Duplicate feature ID found ${e.id}`);n.add(String(e.id)),t.push(r)}),this.tree.load(t)}update(e){this.remove(e.id);let t=this.toBBox(e);this.setMaps(e,t),this.tree.insert(t)}remove(e){let t=this.idToNode.get(e);if(!t)throw Error(`${e} not inserted into the spatial index`);this.tree.remove(t)}clear(){this.tree.clear()}search(e){return this.tree.search(this.toBBox(e)).map(e=>this.nodeToId.get(e))}collides(e){return this.tree.collides(this.toBBox(e))}},dr={getId:()=>`xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx`.replace(/[xy]/g,function(e){let t=16*Math.random()|0;return(e==`x`?t:3&t|8).toString(16)}),isValidId:e=>typeof e==`string`&&e.length===36},fr={target:`geometry`},pr={target:`properties`},mr=class{constructor(e){this.idStrategy=void 0,this.tracked=void 0,this.spatialIndex=void 0,this.store=void 0,this._onChange=()=>{},this.store={},this.spatialIndex=new ur,this.tracked=!e||!1!==e.tracked,this.idStrategy=e&&e.idStrategy?e.idStrategy:dr}clone(e){return JSON.parse(JSON.stringify(e))}getId(){return this.idStrategy.getId()}has(e){return!!this.store[e]}load(e,t,n,r){if(e.length===0)return[];let i=this.clone(e),a=[],o=[];i=i.filter(e=>{e.id??=this.idStrategy.getId();let n=e.id;if(t){let r=t(e);if(!r.valid)return a.push({id:n,valid:!1,reason:r.reason}),!1}if(this.tracked){if(e.properties.createdAt){if(!B(e.properties.createdAt))return a.push({id:e.id,valid:!1,reason:`createdAt is not a valid numeric timestamp`}),!1}else e.properties.createdAt=+new Date;if(e.properties.updatedAt){if(!B(e.properties.updatedAt))return a.push({id:e.id,valid:!1,reason:`updatedAt is not a valid numeric timestamp`}),!1}else e.properties.updatedAt=+new Date}return this.has(n)?(a.push({id:n,valid:!1,reason:`Feature already exists with this id: ${n}`}),!1):(this.store[n]=e,o.push(e),a.push({id:n,valid:!0}),!0)}),this.spatialIndex.load(i);let s=o.map(({id:e})=>e);return s.length>0&&(this._onChange(s,`create`,r),n&&o.forEach(e=>{n(e)})),a}search(e,t){let n=this.spatialIndex.search(e).map(e=>this.store[e]);return this.clone(t?n.filter(t):n)}registerOnChange(e){this._onChange=(t,n,r)=>{e(t,n,r)}}getGeometryCopy(e){let t=this.store[e];if(!t)throw Error(`No feature with this id (${e}), can not get geometry copy`);return this.clone(t.geometry)}getPropertiesCopy(e){let t=this.store[e];if(!t)throw Error(`No feature with this id (${e}), can not get properties copy`);return this.clone(t.properties)}updateProperty(e,t){let n=new Set;e.forEach(({id:e,property:t,value:r})=>{let i=this.store[e];if(!i)throw Error(`No feature with this (${e}), can not update geometry`);i.properties[t]!==r&&(n.add(e),r===void 0?delete i.properties[t]:i.properties[t]=r,this.tracked&&(i.properties.updatedAt=+new Date))}),this._onChange&&n.size>0&&this._onChange(Array.from(n),`update`,t?F({},t,pr):pr)}updateGeometry(e,t){let n=new Set;e.forEach(({id:e,geometry:t})=>{n.add(e);let r=this.store[e];if(!r)throw Error(`No feature with this (${e}), can not update geometry`);r.geometry=this.clone(t),this.spatialIndex.update(r),this.tracked&&(r.properties.updatedAt=+new Date)}),this._onChange&&n.size>0&&this._onChange(Array.from(n),`update`,t?F({},t,fr):fr)}create(e,t){let n=[];return e.forEach(({geometry:e,properties:t})=>{let r,i=F({},t);this.tracked&&(r=+new Date,t?(i.createdAt=typeof t.createdAt==`number`?t.createdAt:r,i.updatedAt=typeof t.updatedAt==`number`?t.updatedAt:r):i={createdAt:r,updatedAt:r});let a=this.getId(),o={id:a,type:`Feature`,geometry:e,properties:i};this.store[a]=o,this.spatialIndex.insert(o),n.push(a)}),this._onChange&&this._onChange([...n],`create`,t),n}delete(e,t){e.forEach(e=>{if(!this.store[e])throw Error(`No feature with id ${e}, can not delete`);delete this.store[e],this.spatialIndex.remove(e)}),this._onChange&&this._onChange([...e],`delete`,t)}copy(e){return this.clone(this.store[e])}copyAll(){return this.clone(Object.keys(this.store).map(e=>this.store[e]))}copyAllWhere(e){return this.clone(Object.keys(this.store).map(e=>this.store[e]).filter(t=>t.properties&&e(t.properties)))}clear(e){let t=Object.keys(this.store);this.store={},this.spatialIndex.clear(),this._onChange(t,`delete`,e)}size(){return Object.keys(this.store).length}};Math.PI/180;var hr=`Feature is not a Polygon or LineString`,gr=`Feature intersects itself`,_r=e=>e.geometry.type!==`Polygon`&&e.geometry.type!==`LineString`?{valid:!1,reason:hr}:ft(e)?{valid:!1,reason:gr}:{valid:!0};function vr(e,t,n){let r=Gt(e,t),i=Gt(t,n)-r;return i<0&&(i+=360),180-Math.abs(i-90-90)}var yr={cancel:`Escape`,finish:`Enter`},br={start:`crosshair`,close:`pointer`},xr=class extends V{constructor(e){super(e,!0),this.mode=`angled-rectangle`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=yr,this.cursors=br,this.mouseMove=!1,this.mutateFeature=void 0,this.readFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents))}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentId===void 0||this.currentCoordinate===0)return;let t=[];if(this.currentCoordinate===1)t=this.getUpdateForSecondCoordinate(e);else{if(this.currentCoordinate!==2)return;t=this.getNewSecondAndThirdCoordinates(e)}this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:t,context:{updateType:I.Provisional}})}getUpdateForSecondCoordinate(e){return[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}]}getNewSecondAndThirdCoordinates(e){if(!this.currentId)throw Error(`No current feature being drawn`);let t=this.readFeature.getCoordinate(this.currentId,0),n=this.readFeature.getCoordinate(this.currentId,1),r=On(t,n,this.coordinatePrecision,this.project,this.unproject),i=U(t[0],t[1]),a=U(r[0],r[1]),o=U(n[0],n[1]),s=U(e.lng,e.lat),c=Pt(s,i)<Pt(s,o),l=vr(i,a,s),u=c?90-l:vr(i,a,s)-90,d=Pt(a,s),f=Math.cos(rt(u))*d,p=Gt(i,o)+(function(e,t,n){let r=(n.x-t.x)*(e.y-t.y)-(n.y-t.y)*(e.x-t.x);return r>1e-10?`left`:r<-1e-10?`right`:`left`}(i,o,s)===`right`?-90:90),m=Ut(i,f,p),h=Ut(o,f,p),g=lt(m.x,m.y),_=lt(h.x,h.y);return[{type:Dt,index:2,coordinate:[H(_.lng,this.coordinatePrecision),H(_.lat,this.coordinatePrecision)]},{type:Dt,index:3,coordinate:[H(g.lng,this.coordinatePrecision),H(g.lat,this.coordinatePrecision)]}]}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0){let{id:t}=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.currentId=t,this.currentCoordinate++,this.setDrawing()}else if(this.currentCoordinate===1&&this.currentId){let t=this.readFeature.getCoordinate(this.currentId,0);if(W([e.lng,e.lat],t)||!this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Et,index:1,coordinate:[e.lng,e.lat]}],context:{updateType:I.Commit}}))return;this.currentCoordinate++}else this.currentCoordinate===2&&this.currentId&&this.close()}onKeyUp(e){if(e.key===this.keyEvents.cancel)this.cleanUp();else if(e.key===this.keyEvents.finish){if(this.currentCoordinate<2)return void this.cleanUp();this.close()}}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&e.geometry.type===`Polygon`&&(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}};function Sr(e,t,n){return(t.x-e.x)*(n.y-e.y)-(t.y-e.y)*(n.x-e.x)<=0}var Cr={cancel:`Escape`,finish:`Enter`},wr={start:`crosshair`,close:`pointer`},Tr=class extends V{constructor(e){super(e,!0),this.mode=`sector`,this.currentCoordinate=0,this.currentId=void 0,this.keyEvents=Cr,this.direction=void 0,this.arcPoints=64,this.cursors=wr,this.mouseMove=!1,this.readFeature=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.arcPoints&&(this.arcPoints=e.arcPoints)}close(){if(this.currentId===void 0||!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},coordinateMutations:{coordinates:this.readFeature.getGeometry(this.currentId).coordinates,type:kt},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.currentCoordinate=0,this.currentId=void 0,this.direction=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}getSectorCoordinates(e){let t=this.readFeature.getCoordinates(this.currentId),n=t[0],r=t[1],i=[e.lng,e.lat],a=U(n[0],n[1]),o=U(r[0],r[1]),s=U(i[0],i[1]);this.direction===void 0&&(this.direction=Sr(a,o,s)?`clockwise`:`anticlockwise`);let c=Pt(a,o),l=Gt(a,o),u=Gt(a,s),d=this.arcPoints,f=[n],p=Kt(l),m=Kt(u),h;this.direction===`anticlockwise`?(h=m-p,h<0&&(h+=360)):(h=p-m,h<0&&(h+=360));let g=(this.direction===`anticlockwise`?1:-1)*h/d;f.push(r);for(let e=0;e<=d;e++){let t=Ut(a,c,p+e*g),{lng:n,lat:r}=lt(t.x,t.y),i=[H(n,this.coordinatePrecision),H(r,this.coordinatePrecision)];i[0]!==f[f.length-1][0]&&i[1]!==f[f.length-1][1]&&f.push(i)}return f.push(n),f}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentId===void 0||this.currentCoordinate===0)return;let t;if(this.currentCoordinate===1)t=[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}];else{if(this.currentCoordinate!==2)return;{let n=this.getSectorCoordinates(e);if(!n)return;t={type:kt,coordinates:[n]}}}this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:t,context:{updateType:I.Provisional}})}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0)this.currentId=this.mutateFeature.createPolygon({coordinates:[[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}})?.id,this.currentCoordinate++,this.setDrawing();else if(this.currentCoordinate===1&&this.currentId){if(this.readFeature.coordinateAtIndexIsIdentical({featureId:this.currentId,index:0,newCoordinate:[e.lng,e.lat]})||!this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:[{type:Dt,index:1,coordinate:[e.lng,e.lat]},{type:Dt,index:2,coordinate:[e.lng,e.lat]}],context:{updateType:I.Provisional}}))return;this.currentCoordinate++}else this.currentCoordinate===2&&this.currentId&&this.close()}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.direction=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e)}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&e.geometry.type===`Polygon`&&(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.currentId=void 0,this.direction=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}},Er={cancel:`Escape`,finish:`Enter`},Dr={start:`crosshair`,close:`pointer`},Or=class extends V{constructor(e){super(e,!0),this.mode=`sensor`,this.currentCoordinate=0,this.currentId=void 0,this.currentInitialArcId=void 0,this.currentStartingPointId=void 0,this.keyEvents=Er,this.direction=void 0,this.arcPoints=64,this.cursors=Dr,this.mouseMove=!1,this.readFeature=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.arcPoints&&(this.arcPoints=e.arcPoints)}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.mouseMove=!0,this.setCursor(this.cursors.start),this.currentInitialArcId!==void 0&&this.currentStartingPointId!==void 0&&this.currentCoordinate!==0){if(this.currentCoordinate===2){let t=this.getUpdatedLineStringCoordinates(e);if(!t)return;this.mutateFeature.updateLineString({featureId:this.currentInitialArcId,coordinateMutations:{type:kt,coordinates:t},context:{updateType:I.Provisional}})}else if(this.currentCoordinate===3){let t=this.getUpdatedPolygonCoordinates(e);if(!t)return;if(this.currentId)this.mutateFeature.updatePolygon({featureId:this.currentId,coordinateMutations:{type:kt,coordinates:[t]},context:{updateType:I.Provisional}});else{let e=this.mutateFeature.createPolygon({coordinates:t,properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});if(!e)return;this.currentId=e.id}}}}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e))if(this.currentCoordinate>0&&!this.mouseMove&&this.onMouseMove(e),this.mouseMove=!1,this.currentCoordinate===0){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode}});if(!t)return;this.currentStartingPointId=t.id,this.currentCoordinate++,this.setDrawing()}else if(this.currentCoordinate===1&&this.currentStartingPointId){let t=this.mutateFeature.createLineString({coordinates:[[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode}});if(!t)return;this.currentInitialArcId=t.id,this.currentCoordinate++}else this.currentCoordinate===2&&this.currentStartingPointId?this.currentCoordinate++:this.currentCoordinate===3&&this.currentStartingPointId&&this.close()}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&this.close()}onKeyDown(){}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){this.mutateFeature.deleteFeatureIfPresent(this.currentStartingPointId),this.mutateFeature.deleteFeatureIfPresent(this.currentInitialArcId),this.mutateFeature.deleteFeatureIfPresent(this.currentId),this.currentStartingPointId=void 0,this.direction=void 0,this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.properties.mode===this.mode&&(e.geometry.type===`Polygon`?(t.polygonFillColor=this.getHexColorStylingValue(this.styles.fillColor,t.polygonFillColor,e),t.polygonOutlineColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.polygonOutlineWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.polygonOutlineOpacity=this.getNumericStylingValue(this.styles.outlineOpacity,1,e),t.polygonFillOpacity=this.getNumericStylingValue(this.styles.fillOpacity,t.polygonFillOpacity,e),t.zIndex=Xe):e.geometry.type===`LineString`?(t.lineStringColor=this.getHexColorStylingValue(this.styles.outlineColor,t.polygonOutlineColor,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.outlineWidth,t.polygonOutlineWidth,e),t.zIndex=Xe):e.geometry.type===`Point`&&(t.pointColor=this.getHexColorStylingValue(this.styles.centerPointColor,t.pointColor,e),t.pointOpacity=this.getNumericStylingValue(this.styles.centerPointOpacity,1,e),t.pointWidth=this.getNumericStylingValue(this.styles.centerPointWidth,t.pointWidth,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.centerPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.centerPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.centerPointOutlineWidth,t.pointOutlineWidth,e),t.zIndex=20)),t}validateFeature(e){return this.validateModeFeature(e,e=>St(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.mutateFeature.deleteFeatureIfPresent(this.currentStartingPointId),this.mutateFeature.deleteFeatureIfPresent(this.currentInitialArcId),this.currentStartingPointId=void 0,this.direction=void 0,this.currentId=void 0,this.currentCoordinate=0,this.state===`drawing`&&this.setStarted())}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate})}close(){if(this.currentStartingPointId===void 0)return;let e=this.currentStartingPointId,t=this.currentInitialArcId;if(this.currentId&&!this.mutateFeature.updatePolygon({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},coordinateMutations:{coordinates:this.readFeature.getGeometry(this.currentId).coordinates,type:kt},context:{updateType:I.Finish,action:We}}))return;let n=this.currentId;this.mutateFeature.deleteFeatureIfPresent(e),this.mutateFeature.deleteFeatureIfPresent(t),this.currentCoordinate=0,this.currentStartingPointId=void 0,this.currentInitialArcId=void 0,this.currentId=void 0,this.direction=void 0,this.state===`drawing`&&this.setStarted(),n&&this.onFinish(n,{mode:this.mode,action:We})}getUpdatedPolygonCoordinates(e){if(this.currentInitialArcId===void 0||this.currentStartingPointId===void 0||this.currentCoordinate<3)return;let t=this.readFeature.getCoordinates(this.currentInitialArcId);if(t.length<2||!this.direction)return;let n=this.readFeature.getGeometry(this.currentStartingPointId).coordinates,r=t[0],i=t[t.length-1],a=U(e.lng,e.lat),o=U(r[0],r[1]),s=U(i[0],i[1]),c=U(n[0],n[1]),l=Pt(c,o),u=Pt(c,a)<l?o:a,d=Gt(c,a),f=Gt(c,o),p=Gt(c,s),m=Kt(f),h=Kt(p),g=Kt(d);if(this.notInSector({normalizedCursor:g,normalizedStart:m,normalizedEnd:h,direction:this.direction}))return;let _=this.getDeltaBearing(this.direction,m,h),v=this.arcPoints,y=(this.direction===`anticlockwise`?1:-1)*_/v,b=Pt(c,u),x=[];for(let e=0;e<=v;e++){let n=Ut(c,b,m+e*y),{lng:r,lat:i}=lt(n.x,n.y),a=[H(r,this.coordinatePrecision),H(i,this.coordinatePrecision)];a[0]!==t[t.length-1][0]&&a[1]!==t[t.length-1][1]&&x.unshift(a)}return t.push(...x),t.push(t[0]),t}getUpdatedLineStringCoordinates(e){if(this.currentInitialArcId===void 0||this.currentStartingPointId===void 0||this.currentCoordinate<2)return;let t=this.readFeature.getGeometry(this.currentInitialArcId).coordinates,n=this.readFeature.getGeometry(this.currentStartingPointId).coordinates,r=t[0],i=[e.lng,e.lat],a=U(r[0],r[1]),o=U(i[0],i[1]),s=U(n[0],n[1]),c=Pt(s,a);this.direction===void 0&&(this.direction=Sr(s,a,o)?`clockwise`:`anticlockwise`);let l=Gt(s,a),u=Gt(s,o),d=this.arcPoints,f=[r],p=Kt(l),m=Kt(u),h;this.direction===`anticlockwise`?(h=m-p,h<0&&(h+=360)):(h=p-m,h<0&&(h+=360));let g=(this.direction===`anticlockwise`?1:-1)*h/d;for(let e=0;e<=d;e++){let t=Ut(s,c,p+e*g),{lng:n,lat:r}=lt(t.x,t.y),i=[H(n,this.coordinatePrecision),H(r,this.coordinatePrecision)];i[0]!==f[f.length-1][0]&&i[1]!==f[f.length-1][1]&&f.push(i)}return f}getDeltaBearing(e,t,n){let r;return e===`anticlockwise`?(r=n-t,r<0&&(r+=360)):(r=t-n,r<0&&(r+=360)),r}notInSector({normalizedCursor:e,normalizedStart:t,normalizedEnd:n,direction:r}){return r===`clockwise`?t<=n?e>=t&&e<=n:e>=t||e<=n:t>=n?e<=t&&e>=n:e<=t||e>=n}},kr=class{constructor({name:e,callback:t,unregister:n,register:r}){this.name=void 0,this.callback=void 0,this.registered=!1,this.register=void 0,this.unregister=void 0,this.name=e,this.register=()=>{this.registered||(this.registered=!0,r(t))},this.unregister=()=>{this.register&&(this.registered=!1,n(t))},this.callback=t}},Ar={__proto__:null,GeoJSONStore:mr,TerraDrawBaseDrawMode:V,TerraDrawBaseSelectMode:et,TerraDrawBaseAdapter:class{constructor(e){this._nextKeyUpIsContextMenu=!1,this._lastPointerDownEventTarget=void 0,this._ignoreMismatchedPointerEvents=!1,this._minPixelDragDistance=void 0,this._minPixelDragDistanceDrawing=void 0,this._minPixelDragDistanceSelecting=void 0,this._lastDrawEvent=void 0,this._coordinatePrecision=void 0,this._heldKeys=new Set,this._listeners=[],this._dragState=`not-dragging`,this._currentModeCallbacks=void 0,this._ignoreMismatchedPointerEvents=typeof e.ignoreMismatchedPointerEvents==`boolean`&&e.ignoreMismatchedPointerEvents,this._minPixelDragDistance=typeof e.minPixelDragDistance==`number`?e.minPixelDragDistance:1,this._minPixelDragDistanceSelecting=typeof e.minPixelDragDistanceSelecting==`number`?e.minPixelDragDistanceSelecting:1,this._minPixelDragDistanceDrawing=typeof e.minPixelDragDistanceDrawing==`number`?e.minPixelDragDistanceDrawing:8,this._coordinatePrecision=typeof e.coordinatePrecision==`number`?e.coordinatePrecision:9}getButton(e){return e.button===-1?`neither`:e.button===0?`left`:e.button===1?`middle`:e.button===2?`right`:`neither`}getMapElementXYPosition(e){let{left:t,top:n}=this.getMapEventElement(e.type).getBoundingClientRect();return{containerX:e.clientX-t,containerY:e.clientY-n}}getDrawEventFromEvent(e,t=!1){let n=this.getLngLatFromEvent(e);if(!n)return null;let{lng:r,lat:i}=n,{containerX:a,containerY:o}=this.getMapElementXYPosition(e),s=this.getButton(e),c=Array.from(this._heldKeys);return{lng:H(r,this._coordinatePrecision),lat:H(i,this._coordinatePrecision),containerX:a,containerY:o,button:s,heldKeys:c,isContextMenu:t}}register(e){this._currentModeCallbacks=e,this._listeners=this.getAdapterListeners(),this._listeners.forEach(e=>{e.register()})}getCoordinatePrecision(){return this._coordinatePrecision}getAdapterListeners(){return[new kr({name:`pointerdown`,callback:e=>{if(!this._currentModeCallbacks||!e.isPrimary)return;let t=this.getDrawEventFromEvent(e);t&&(this._dragState=`pre-dragging`,this._lastDrawEvent=t,this._lastPointerDownEventTarget=e.target?e.target:void 0)},register:e=>{this.getMapEventElement(`pointerdown`).addEventListener(`pointerdown`,e)},unregister:e=>{this.getMapEventElement(`pointerdown`).removeEventListener(`pointerdown`,e)}}),new kr({name:`pointermove`,callback:e=>{if(!this._currentModeCallbacks||!e.isPrimary)return;e.preventDefault();let t=this.getDrawEventFromEvent(e);if(t)if(this._dragState===`not-dragging`)this._currentModeCallbacks.onMouseMove(t),this._lastDrawEvent=t;else if(this._dragState===`pre-dragging`){if(!this._lastDrawEvent)return;let e={x:this._lastDrawEvent.containerX,y:this._lastDrawEvent.containerY},n={x:t.containerX,y:t.containerY},r=this._currentModeCallbacks.getState(),i=Pt(e,n),a=!1;if(a=r===`drawing`?i<this._minPixelDragDistanceDrawing:r===`selecting`?i<this._minPixelDragDistanceSelecting:i<this._minPixelDragDistance,a)return;this._nextKeyUpIsContextMenu=!1,this._dragState=`dragging`,this._currentModeCallbacks.onDragStart(t,e=>{this.setDraggability.bind(this)(e)})}else this._dragState===`dragging`&&this._currentModeCallbacks.onDrag(t,e=>{this.setDraggability.bind(this)(e)})},register:e=>{this.getMapEventElement(`pointermove`).addEventListener(`pointermove`,e)},unregister:e=>{this.getMapEventElement(`pointermove`).removeEventListener(`pointermove`,e)}}),new kr({name:`contextmenu`,callback:e=>{this._currentModeCallbacks&&(e.preventDefault(),this._nextKeyUpIsContextMenu=!0)},register:e=>{this.getMapEventElement(`contextmenu`).addEventListener(`contextmenu`,e)},unregister:e=>{this.getMapEventElement(`contextmenu`).removeEventListener(`contextmenu`,e)}}),new kr({name:`pointerup`,callback:e=>{if(!this._currentModeCallbacks||e.target!==this.getMapEventElement(`pointerup`)||this._ignoreMismatchedPointerEvents&&this._lastPointerDownEventTarget!==e.target||(this._lastPointerDownEventTarget=void 0,!e.isPrimary))return;let t=this.getDrawEventFromEvent(e);t&&(this._dragState===`dragging`?this._currentModeCallbacks.onDragEnd(t,e=>{this.setDraggability.bind(this)(e)}):this._dragState!==`not-dragging`&&this._dragState!==`pre-dragging`||(this._nextKeyUpIsContextMenu&&=(t.isContextMenu=!0,!1),this._currentModeCallbacks.onClick(t)),this._dragState=`not-dragging`,this.setDraggability(!0))},register:e=>{this.getMapEventElement(`pointerup`).addEventListener(`pointerup`,e)},unregister:e=>{this.getMapEventElement(`pointerup`).removeEventListener(`pointerup`,e)}}),new kr({name:`keyup`,callback:e=>{this._currentModeCallbacks&&(this._heldKeys.delete(e.key),this._currentModeCallbacks.onKeyUp({key:e.key,heldKeys:Array.from(this._heldKeys),preventDefault:()=>e.preventDefault()}))},register:e=>{this.getMapEventElement(`keyup`).addEventListener(`keyup`,e)},unregister:e=>{this.getMapEventElement(`keyup`).removeEventListener(`keyup`,e)}}),new kr({name:`keydown`,callback:e=>{this._currentModeCallbacks&&(this._heldKeys.add(e.key),this._currentModeCallbacks.onKeyDown({key:e.key,heldKeys:Array.from(this._heldKeys),preventDefault:()=>e.preventDefault()}))},register:e=>{this.getMapEventElement(`keydown`).addEventListener(`keydown`,e)},unregister:e=>{this.getMapEventElement(`keydown`).removeEventListener(`keydown`,e)}})]}unregister(){this._listeners.forEach(e=>{e.unregister()}),this.clear(),this._currentModeCallbacks=void 0,this._lastDrawEvent=void 0,this._lastPointerDownEventTarget=void 0,this._nextKeyUpIsContextMenu=!1}},getDefaultStyling:()=>({polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0}),SELECT_PROPERTIES:Ye},jr={cancel:`Escape`,finish:`Enter`},Mr={start:`crosshair`,close:`pointer`},Nr=class extends V{constructor(e){super(e,!0),this.mode=`freehand-linestring`,this.canClose=!1,this.currentId=void 0,this.minDistance=20,this.keyEvents=jr,this.cursors=Mr,this.preventNewFeature=!1,this.mutateFeature=void 0,this.readFeature=void 0,this.pixelDistance=void 0,this.closingPoints=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.minDistance&&(this.minDistance=e.minDistance),e?.keyEvents===null?this.keyEvents={cancel:null,finish:null}:e!=null&&e.keyEvents&&(this.keyEvents=F({},this.keyEvents,e.keyEvents)),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors))}close(){if(this.currentId===void 0||!this.mutateFeature.updateLineString({featureId:this.currentId,propertyMutations:{[L.CURRENTLY_DRAWING]:void 0},context:{updateType:I.Finish,action:We}}))return;let e=this.currentId;this.closingPoints.delete(),this.canClose=!1,this.currentId=void 0,this.state===`drawing`&&this.setStarted(),this.onFinish(e,{mode:this.mode,action:We})}start(){this.setStarted(),this.setCursor(this.cursors.start)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onMouseMove(e){if(this.currentId===void 0||!1===this.canClose)return void this.setCursor(this.cursors.start);let[t,n]=this.readFeature.getCoordinate(this.currentId,-2),{x:r,y:i}=this.project(t,n),a=Pt({x:r,y:i},{x:e.containerX,y:e.containerY}),[o,s]=this.readFeature.getCoordinate(this.currentId,-1),{x:c,y:l}=this.project(o,s),u=Pt({x:c,y:l},{x:e.containerX,y:e.containerY});if(this.setCursor(u<this.pointerDistance?this.cursors.close:this.cursors.start),a<this.minDistance)return;let d=this.mutateFeature.updateLineString({featureId:this.currentId,coordinateMutations:[{type:Et,index:-1,coordinate:[e.lng,e.lat]}],context:{updateType:I.Provisional}});d&&this.closingPoints.update(d.geometry.coordinates)}onClick(e){if(e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)){if(this.preventNewFeature)return;if(!1===this.canClose){let{id:t,geometry:n}=this.mutateFeature.createLineString({coordinates:[[e.lng,e.lat],[e.lng,e.lat]],properties:{mode:this.mode,[L.CURRENTLY_DRAWING]:!0}});this.closingPoints.create(n.coordinates),this.currentId=t,this.canClose=!0,this.state!==`drawing`&&this.setDrawing();return}this.close()}}onKeyDown(){}onKeyUp(e){e.key===this.keyEvents.cancel?this.cleanUp():e.key===this.keyEvents.finish&&!0===this.canClose&&this.close()}onDragStart(){}onDrag(){}onDragEnd(){}cleanUp(){let e=this.currentId;this.currentId=void 0,this.canClose=!1,this.state===`drawing`&&this.setStarted(),this.mutateFeature.deleteFeatureIfPresent(e),this.closingPoints.delete()}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`LineString`&&e.properties.mode===this.mode?(t.lineStringColor=this.getHexColorStylingValue(this.styles.lineStringColor,t.lineStringColor,e),t.lineStringOpacity=this.getNumericStylingValue(this.styles.lineStringOpacity,t.lineStringOpacity===void 0?1:t.lineStringOpacity,e),t.lineStringWidth=this.getNumericStylingValue(this.styles.lineStringWidth,t.lineStringWidth,e),t.zIndex=Xe,t):e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode?(t.pointWidth=this.getNumericStylingValue(this.styles.closingPointWidth,t.pointWidth,e),t.pointOpacity=this.getNumericStylingValue(this.styles.closingPointOpacity,1,e),t.pointColor=this.getHexColorStylingValue(this.styles.closingPointColor,t.pointColor,e),t.pointOutlineColor=this.getHexColorStylingValue(this.styles.closingPointOutlineColor,t.pointOutlineColor,e),t.pointOutlineOpacity=this.getNumericStylingValue(this.styles.closingPointOutlineOpacity,1,e),t.pointOutlineWidth=this.getNumericStylingValue(this.styles.closingPointOutlineWidth,2,e),t.zIndex=50,t):t}validateFeature(e){return this.validateModeFeature(e,e=>Zt(e,this.coordinatePrecision))}afterFeatureUpdated(e){this.currentId===e.id&&(this.closingPoints.delete(),this.canClose=!1,this.currentId=void 0)}registerBehaviors(e){this.readFeature=new Ft(e),this.mutateFeature=new At(e,{validate:this.validate}),this.pixelDistance=new Bt(e),this.closingPoints=new on(e,this.pixelDistance,this.mutateFeature,this.readFeature)}};function Pr(e){if(e===null||typeof e==`boolean`||typeof e==`string`)return!0;if(e===void 0)return!1;if(typeof e==`number`)return Number.isFinite(e);if(typeof e==`bigint`||typeof e==`symbol`||typeof e==`function`||e instanceof RegExp||e instanceof Map||e instanceof Set||e instanceof Date)return!1;if(typeof e==`object`&&e&&!Array.isArray(e)){let t=Object.getPrototypeOf(e);if(t!==Object.prototype&&t!==null)return!1}if(ArrayBuffer.isView(e)&&!(e instanceof DataView))return!1;if(Array.isArray(e)){for(let t of e)if(!Pr(t))return!1}return typeof e==`object`&&Object.keys(e).every(t=>typeof t==`string`&&Pr(e[t]))}var Fr={create:`crosshair`,dragStart:`grabbing`,dragEnd:`crosshair`},Ir=class extends V{constructor(e){super(e,!0),this.mode=`marker`,this.cursors=Fr,this.editable=!1,this.editedFeatureId=void 0,this.pixelDistance=void 0,this.clickBoundingBox=void 0,this.pointSearch=void 0,this.mutateFeature=void 0,this.updateOptions(e)}updateOptions(e){super.updateOptions(e),e!=null&&e.cursors&&(this.cursors=F({},this.cursors,e.cursors)),e!=null&&e.editable&&(this.editable=e.editable)}start(){this.setStarted(),this.setCursor(this.cursors.create)}stop(){this.cleanUp(),this.setStopped(),this.setCursor(`unset`)}onClick(e){e.button===`right`&&this.allowPointerEvent(this.pointerEvents.rightClick,e)||e.isContextMenu&&this.allowPointerEvent(this.pointerEvents.contextMenu,e)?this.onRightClick(e):e.button===`left`&&this.allowPointerEvent(this.pointerEvents.leftClick,e)&&this.onLeftClick(e)}onMouseMove(){}onKeyDown(){}onKeyUp(){}cleanUp(){this.editedFeatureId=void 0}onDragStart(e,t){this.allowPointerEvent(this.pointerEvents.onDragStart,e)&&(this.editable&&(this.editedFeatureId=this.pointSearch.getNearestPointFeature(e)?.id),this.editedFeatureId&&(this.setCursor(this.cursors.dragStart),t(!1)))}onDrag(e,t){this.allowPointerEvent(this.pointerEvents.onDrag,e)&&this.editedFeatureId!==void 0&&this.mutateFeature.updatePoint({featureId:this.editedFeatureId,coordinateMutations:{type:kt,coordinates:[e.lng,e.lat]},propertyMutations:{[L.EDITED]:!0},context:{updateType:I.Provisional}})}onDragEnd(e,t){if(!this.allowPointerEvent(this.pointerEvents.onDragEnd,e)||this.editedFeatureId===void 0||!this.mutateFeature.updatePoint({featureId:this.editedFeatureId,propertyMutations:{mode:this.mode,[L.EDITED]:!1},context:{updateType:I.Finish,action:`edit`}}))return;let n=this.editedFeatureId;this.setCursor(this.cursors.dragEnd),this.editedFeatureId=void 0,t(!0),this.onFinish(n,{mode:this.mode,action:We})}registerBehaviors(e){this.pixelDistance=new Bt(e),this.clickBoundingBox=new zt(e),this.pointSearch=new gn(e,this.pixelDistance,this.clickBoundingBox),this.mutateFeature=new At(e,{validate:this.validate})}styleFeature(e){let t=F({},{polygonFillColor:`#3f97e0`,polygonOutlineColor:`#3f97e0`,polygonOutlineWidth:4,polygonOutlineOpacity:1,polygonFillOpacity:.3,pointColor:`#3f97e0`,pointOpacity:1,pointOutlineColor:`#ffffff`,pointOutlineOpacity:1,pointOutlineWidth:0,pointWidth:6,lineStringColor:`#3f97e0`,lineStringWidth:4,lineStringOpacity:1,zIndex:0,markerUrl:void 0,markerHeight:void 0,markerWidth:void 0});return e.type===`Feature`&&e.geometry.type===`Point`&&e.properties.mode===this.mode&&(t.zIndex=30,t.markerHeight=this.getNumericStylingValue(this.styles?.markerHeight,40,e),t.markerWidth=this.getNumericStylingValue(this.styles?.markerWidth,32,e),t.markerUrl=this.getUrlStylingValue(this.styles?.markerUrl,Je,e)),t}validateFeature(e){return this.validateModeFeature(e,e=>hn(e,this.coordinatePrecision))}onLeftClick(e){let t=this.mutateFeature.createPoint({coordinates:[e.lng,e.lat],properties:{mode:this.mode,[L.MARKER]:!0},context:{updateType:I.Finish,action:We}});t&&this.onFinish(t.id,{mode:this.mode,action:We})}onRightClick(e){if(!this.editable)return;let t=this.pointSearch.getNearestPointFeature(e);t&&this.mutateFeature.deleteFeatureIfPresent(t.id)}afterFeatureUpdated(e){this.editedFeatureId===e.id&&(this.editedFeatureId=void 0,this.setCursor(this.cursors.create))}},Lr=[{key:`z`,heldKeys:[`meta`]},{key:`z`,heldKeys:[`control`]}],Rr=[{key:`z`,heldKeys:[`meta`,`shift`]},{key:`z`,heldKeys:[`control`,`shift`]},{key:`y`,heldKeys:[`control`]}],zr=(e,t)=>{let n=e.key.toLowerCase(),r=new Set(e.heldKeys.map(e=>e.toLowerCase()).filter(e=>e!==n));if(t.key.toLowerCase()!==n)return!1;let i=new Set(t.heldKeys.map(e=>e.toLowerCase()));if(r.size!==i.size)return!1;for(let e of i)if(!r.has(e))return!1;return!0},Br=class{constructor(e){this.undoKeyboardShortcuts=void 0,this.redoKeyboardShortcuts=void 0,this.undoKeyboardShortcuts=e?.undo??Lr,this.redoKeyboardShortcuts=e?.redo??Rr}isUndoKeyboardShortcut(e){return this.undoKeyboardShortcuts.some(t=>zr(e,t))}isRedoKeyboardShortcut(e){return this.redoKeyboardShortcuts.some(t=>zr(e,t))}};function Vr(e){return e!==void 0&&Number.isFinite(e)?Math.max(0,Math.floor(e)):1/0}var Hr=`undo`,Ur=`redo`,Wr=`push`,Gr=`mode`,Kr=`session`,qr=class{constructor(e){this.getModeState=void 0,this.getModeHistorySizes=void 0,this.undoMode=void 0,this.redoMode=void 0,this.clearModeHistory=void 0,this.onHistoryChange=void 0,this.maxStackSize=void 0,this.lastHistorySizes={undoSize:0,redoSize:0},this.maxStackSize=Vr(e?.maxStackSize)}getMaxStackSize(){return this.maxStackSize}register(e){this.getModeState=e.getModeState,this.getModeHistorySizes=e.getModeHistorySizes,this.undoMode=e.undoMode,this.redoMode=e.redoMode,this.clearModeHistory=e.clearModeHistory,this.onHistoryChange=e.onHistoryChange}inDrawingState(){return!!this.getModeState&&this.getModeState()===`drawing`}canUndo(){if(!this.inDrawingState())return!1;let{undoSize:e}=this.getHistorySizes();return e>0}canRedo(){if(!this.inDrawingState())return!1;let{redoSize:e}=this.getHistorySizes();return e>0}undo(){return!(!this.canUndo()||!this.undoMode||(this.undoMode(),this.emitHistoryChange(Hr),0))}redo(){return!(!this.canRedo()||!this.redoMode||(this.redoMode(),this.emitHistoryChange(Ur),0))}clearHistory(){this.clearModeHistory&&this.clearModeHistory(),this.lastHistorySizes={undoSize:0,redoSize:0}}getHistorySizes(){return this.getModeHistorySizes?this.getModeHistorySizes():{undoSize:0,redoSize:0}}undoSize(){return this.getHistorySizes().undoSize}redoSize(){return this.getHistorySizes().redoSize}emitPushIfHistoryChangedFromLastSnapshot(){if(!this.inDrawingState())return;let e=this.getHistorySizes();e.undoSize===this.lastHistorySizes.undoSize&&e.redoSize===this.lastHistorySizes.redoSize||this.emitHistoryChange(Wr)}emitPushIfHistoryChanged(e){if(!this.inDrawingState())return;let t=this.getHistorySizes();t.undoSize===e.undoSize&&t.redoSize===e.redoSize||this.emitHistoryChange(Wr)}emitHistoryChange(e){if(!this.onHistoryChange)return;let{undoSize:t,redoSize:n}=this.getHistorySizes();this.lastHistorySizes={undoSize:t,redoSize:n},this.onHistoryChange({cause:e,stack:Gr,undoStackSize:t,redoStackSize:n})}},Y=class{constructor(e){this.draw=void 0,this.onHistoryChange=void 0,this.maxStackSize=void 0,this.historyById={},this.undoStack=[],this.ignoreProgrammaticCreate={},this.ignoreProgrammaticDelete={},this.deletedFeatureIds={},this.redoStack=[],this.emitStackChange=e=>{this.onHistoryChange&&this.onHistoryChange({cause:e,stack:Kr,undoStackSize:this.undoStack.length,redoStackSize:this.redoStack.length})},this.handleChange=(e,t,n)=>{if(!this.draw||this.isDrawing()||this.maxStackSize===0||t!==`delete`&&t!==`create`)return;if(t===`create`){if(n===void 0||!(`origin`in n)||n.origin!==`api`)return;let t=!1,r=Array.isArray(e)?e:[e],i=[];for(let e of r){if(this.ignoreProgrammaticCreate[e]){delete this.ignoreProgrammaticCreate[e],delete this.deletedFeatureIds[e];continue}let n=String(e),r=this.draw.getSnapshotFeature(e);r&&(this.deletedFeatureIds[e]&&(this.historyById[n]=[],delete this.deletedFeatureIds[e]),this.historyById[n]||(this.historyById[n]=[]),this.historyById[n].push(r),i.push({id:e,toIndex:this.historyById[n].length-1,snapshot:r}),t=!0)}if(i.length>1)this.pushUndoStackEntry({id:i[0].id,toIndex:i[0].toIndex,action:`batch-create`,metadata:{entries:i}});else if(i.length===1){let e=i[0];this.pushUndoStackEntry({id:e.id,toIndex:e.toIndex,action:`single`})}t&&(this.redoStack.length=0,this.emitStackChange(Wr));return}let r=!1,i=Array.isArray(e)?e:[e],a=[];for(let e of i){let t=String(e);if(this.ignoreProgrammaticDelete[e]){delete this.ignoreProgrammaticDelete[e];continue}if(!this.historyById[t])continue;let n=this.historyById[t].length-1;if(n>=0){let i=this.historyById[t][n];if(!i)continue;a.push({id:e,toIndex:n,snapshot:i}),this.deletedFeatureIds[e]=!0,r=!0}}if(a.length>1)this.pushUndoStackEntry({id:a[0].id,toIndex:a[0].toIndex,action:`batch-delete`,metadata:{entries:a}});else if(a.length===1){let e=a[0];this.pushUndoStackEntry({id:e.id,toIndex:e.toIndex,action:`single`})}r&&(this.redoStack.length=0,this.emitStackChange(Wr))},this.handleFinish=e=>{if(!this.draw||this.maxStackSize===0)return;let t=Array.isArray(e)?e:[e],n=!1;for(let e of t){if(e==null)continue;let t=String(e),r=this.draw.getSnapshotFeature(e);r&&(this.historyById[t]||(this.historyById[t]=[]),this.historyById[t].push(r),n||=(this.redoStack.length=0,!0),this.pushUndoStackEntry({id:e,toIndex:this.historyById[t].length-1,action:`single`}),this.emitStackChange(Wr))}},this.maxStackSize=Vr(e?.maxStackSize)}register(e){this.draw===e.draw?this.onHistoryChange=e.onHistoryChange:(this.draw&&(this.draw.off(`change`,this.handleChange),this.draw.off(`finish`,this.handleFinish)),this.draw=e.draw,this.draw.on(`change`,this.handleChange),this.draw.on(`finish`,this.handleFinish),this.onHistoryChange=e.onHistoryChange)}pushUndoStackEntry(e){this.maxStackSize!==0&&(this.undoStack.push(e),this.undoStack.length>this.maxStackSize&&this.undoStack.shift())}pushRedoStackEntry(e){this.maxStackSize!==0&&(this.redoStack.push(e),this.redoStack.length>this.maxStackSize&&this.redoStack.shift())}isDrawing(){return!!this.draw&&this.draw.getModeState()===`drawing`}canUndo(){return!(!this.draw||this.isDrawing())&&this.undoStack.length>0}canRedo(){return!(!this.draw||this.isDrawing())&&this.redoStack.length>0}undo(){if(!this.canUndo()||!this.draw)return!1;let e=this.undoStack.pop();if(!e)return this.emitStackChange(Hr),!1;if(e.action===`batch-create`){let t=e.metadata?.entries||[];if(t.length===0)return this.emitStackChange(Hr),!1;let n=t.map(e=>e.id);return n.forEach(e=>{this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0}),this.draw.removeFeatures(n),this.pushRedoStackEntry({id:t[0].id,toIndex:t[0].toIndex,action:`batch-create`,metadata:{entries:t}}),this.emitStackChange(Hr),!0}if(e.action===`batch-delete`){let t=e.metadata?.entries||[];if(t.length===0)return this.emitStackChange(Hr),!1;let n=t.map(e=>e.snapshot).filter(e=>e!==void 0);return n.length>0&&(t.forEach(e=>{this.ignoreProgrammaticCreate[e.id]=!0,delete this.deletedFeatureIds[e.id]}),this.draw.addFeatures(n)),this.pushRedoStackEntry({id:t[0].id,toIndex:t[0].toIndex,action:`batch-delete`,metadata:{entries:t}}),this.emitStackChange(Hr),!0}let t=e.id,n=e.toIndex,r=String(t),i=this.historyById[r];if(!i||i.length===0)return this.emitStackChange(Hr),!1;let a=Math.min(n,i.length-1);if(!this.draw.hasFeature(t)){let e=i[a];return e?(this.ignoreProgrammaticCreate[t]=!0,delete this.deletedFeatureIds[t],this.draw.addFeatures([e]),this.pushRedoStackEntry({id:t,toIndex:a,action:`delete`,snapshot:e}),this.emitStackChange(Hr),!0):(this.emitStackChange(Hr),!1)}if(a<=0)return this.pushRedoStackEntry({id:t,toIndex:0,action:`create`}),this.ignoreProgrammaticDelete[t]=!0,this.deletedFeatureIds[t]=!0,this.draw.removeFeatures([t]),this.undoStack=this.undoStack.filter(e=>e.id!==t),this.emitStackChange(Hr),!0;let o=i[a],s=i[a-1];return o&&this.pushRedoStackEntry({id:t,toIndex:a,snapshot:o,action:`update`}),this.draw.updateFeatureGeometry(t,s.geometry),i.length=a,this.emitStackChange(Hr),!0}redo(){if(!this.canRedo()||!this.draw)return!1;let{id:e,toIndex:t,snapshot:n,action:r,metadata:i}=this.redoStack.pop();if(r===`batch-create`){let e=i?.entries||[];if(e.length===0)return this.emitStackChange(Ur),!1;let t=e.map(e=>e.snapshot).filter(e=>e!==void 0);return t.length>0&&(e.forEach(e=>{this.ignoreProgrammaticCreate[e.id]=!0}),this.draw.addFeatures(t)),this.pushUndoStackEntry({id:e[0].id,toIndex:e[0].toIndex,action:`batch-create`,metadata:{entries:e}}),this.emitStackChange(Ur),!0}if(r===`batch-delete`){let e=i?.entries||[];if(e.length===0)return this.emitStackChange(Ur),!1;let t=e.map(e=>e.id);return t.forEach(e=>{this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0}),this.draw.removeFeatures(t),this.pushUndoStackEntry({id:e[0].id,toIndex:e[0].toIndex,action:`batch-delete`,metadata:{entries:e}}),this.emitStackChange(Ur),!0}let a=String(e),o=this.historyById[a]||(this.historyById[a]=[]);if(r===`delete`)return this.ignoreProgrammaticDelete[e]=!0,this.deletedFeatureIds[e]=!0,this.draw.removeFeatures([e]),this.pushUndoStackEntry({id:e,toIndex:t,action:`single`}),this.emitStackChange(Ur),!0;if(t<=0){let t=o[0];return!!t&&(this.ignoreProgrammaticCreate[e]=!0,this.draw.addFeatures([t]),this.pushUndoStackEntry({id:e,toIndex:0,action:`single`}),this.emitStackChange(Ur),!0)}let s=n||o[t];return!!s&&(o.length===t?o.push(s):(o[t]=s,o.length=t+1),this.draw.updateFeatureGeometry(e,s.geometry),this.pushUndoStackEntry({id:e,toIndex:t,action:`single`}),this.emitStackChange(Ur),!0)}clearHistory(){let e={};if(this.draw&&!this.isDrawing()){let t=this.draw.getSnapshot();for(let n of t)e[String(n.id)]=[n]}this.historyById=e,this.undoStack=[],this.ignoreProgrammaticCreate={},this.ignoreProgrammaticDelete={},this.deletedFeatureIds={},this.redoStack=[]}undoSize(){return this.undoStack.length}redoSize(){return this.redoStack.length}},Jr=class{constructor(e){this.modeLevel=void 0,this.sessionLevel=void 0,this.shouldPreferMode=void 0,this.onHistoryChange=void 0,this.shouldEmitHistoryChange=void 0,this.modeLevel=e.modeLevel,this.sessionLevel=e.sessionLevel,this.shouldPreferMode=e.shouldPreferMode,this.onHistoryChange=e.onHistoryChange,this.shouldEmitHistoryChange=e.shouldEmitHistoryChange??(()=>!0)}emitStackHistoryChange(e){this.shouldEmitHistoryChange()&&this.onHistoryChange&&this.onHistoryChange({cause:e.cause,stack:e.stack,undoSize:e.undoStackSize,redoSize:e.redoStackSize})}hasSessionUndo(){return!!(this.sessionLevel&&this.sessionLevel.canUndo())}hasSessionRedo(){return!!(this.sessionLevel&&this.sessionLevel.canRedo())}activeStackForUndo(){var e,t;return this.shouldPreferMode()&&(e=this.modeLevel)!=null&&e.canUndo()?Gr:this.hasSessionUndo()?Kr:(t=this.modeLevel)!=null&&t.canUndo()?Gr:void 0}activeStackForRedo(){var e,t;return this.shouldPreferMode()&&(e=this.modeLevel)!=null&&e.canRedo()?Gr:this.hasSessionRedo()?Kr:(t=this.modeLevel)!=null&&t.canRedo()?Gr:void 0}canUndo(){return this.activeStackForUndo()!==void 0}canRedo(){return this.activeStackForRedo()!==void 0}undo(){let e=this.activeStackForUndo();return!!e&&(e===Gr?!!this.modeLevel&&this.modeLevel.undo():!(!this.sessionLevel||!this.sessionLevel.canUndo())&&this.sessionLevel.undo())}redo(){let e=this.activeStackForRedo();return!!e&&(e===Gr?!!this.modeLevel&&this.modeLevel.redo():!(!this.sessionLevel||!this.sessionLevel.canRedo())&&this.sessionLevel.redo())}clearHistory(){this.modeLevel&&this.modeLevel.clearHistory(),this.sessionLevel&&this.sessionLevel.clearHistory()}emitPushAfterFinish(){this.sessionLevel?this.emitStackHistoryChange({cause:Wr,undoStackSize:this.sessionLevel.undoSize(),redoStackSize:this.sessionLevel.redoSize(),stack:Kr}):this.modeLevel&&this.emitStackHistoryChange({cause:Wr,undoStackSize:this.modeLevel.undoSize(),redoStackSize:this.modeLevel.redoSize(),stack:Gr})}},Yr=class{constructor(e){var t,n,r,i;this._modes=void 0,this._mode=void 0,this._adapter=void 0,this._enabled=!1,this._store=void 0,this._eventListeners=void 0,this._instanceSelectModes=void 0,this.sessionUndoRedoEnabled=!1,this.keyboardShortcutsMatcher=void 0,this.drawingUndoRedo=void 0,this.sessionUndoRedo=void 0,this.undoRedoCoordinator=void 0,this._adapter=e.adapter,this._instanceSelectModes=[];let a=e==null||(t=e.undoRedo)==null?void 0:t.modeLevel;a&&(this.drawingUndoRedo=a);let o=e==null||(n=e.undoRedo)==null?void 0:n.keyboardShortcuts;o&&(this.keyboardShortcutsMatcher=o),this.sessionUndoRedoEnabled=!!(!(e==null||(r=e.undoRedo)==null)&&r.sessionLevel);let s=e==null||(i=e.undoRedo)==null?void 0:i.sessionLevel;this._mode=new Jn;let c=new Set,l=e.modes.reduce((e,t)=>{if(c.has(t.mode))throw Error(`There is already a ${t.mode} mode provided`);return c.add(t.mode),e[t.mode]=t,e},{}),u=Object.keys(l);if(u.length===0)throw Error(`No modes provided`);u.forEach(e=>{l[e].type===Qe.Select&&this._instanceSelectModes.push(e)}),this._modes=F({},l,{static:this._mode}),this._eventListeners={change:[],select:[],deselect:[],finish:[],ready:[],history:[]},this._store=new mr({tracked:!!e.tracked,idStrategy:e.idStrategy?e.idStrategy:void 0});let d=e=>{let t=[];return{changed:t,unchanged:this._store.copyAll().filter(n=>!e.includes(n.id)||(t.push(n),!1))}},f=(e,t)=>{this._enabled&&(this._eventListeners.finish.forEach(n=>{n(e,t)}),this.emitHistoryChangeAfterFinish())},p=(e,t,n)=>{if(!this._enabled)return;this._eventListeners.change.forEach(r=>{r(e,t,n)}),this.emitDrawingPushIfHistoryChangedFromLastSnapshot();let{changed:r,unchanged:i}=d(e);t===`create`?this._adapter.render({created:r,deletedIds:[],unchanged:i,updated:[]},this.getModeStyles()):t===`update`?this._adapter.render({created:[],deletedIds:[],unchanged:i,updated:r},this.getModeStyles()):t===`delete`?this._adapter.render({created:[],deletedIds:e,unchanged:i,updated:[]},this.getModeStyles()):t===`styling`&&this._adapter.render({created:[],deletedIds:[],unchanged:i,updated:[]},this.getModeStyles())},m=e=>{if(!this._enabled)return;this._eventListeners.select.forEach(t=>{t(e)});let{changed:t,unchanged:n}=d([e]);this._adapter.render({created:[],deletedIds:[],unchanged:n,updated:t},this.getModeStyles())},h=e=>{if(!this._enabled)return;this._eventListeners.deselect.forEach(t=>{t(e)});let{changed:t,unchanged:n}=d([e]);t&&this._adapter.render({created:[],deletedIds:[],unchanged:n,updated:t},this.getModeStyles())};Object.keys(this._modes).forEach(e=>{var t;this._modes[e].register({mode:e,store:this._store,setCursor:this._adapter.setCursor.bind(this._adapter),project:this._adapter.project.bind(this._adapter),unproject:this._adapter.unproject.bind(this._adapter),setDoubleClickToZoom:this._adapter.setDoubleClickToZoom.bind(this._adapter),onChange:p,onSelect:m,onDeselect:h,onFinish:f,coordinatePrecision:this._adapter.getCoordinatePrecision(),undoRedoMaxStackSize:(t=this.drawingUndoRedo)==null||t.getMaxStackSize==null?void 0:t.getMaxStackSize()})}),this.sessionUndoRedoEnabled&&s&&(this.sessionUndoRedo=s,s.register({draw:this,onHistoryChange:e=>{var t;(t=this.undoRedoCoordinator)==null||t.emitStackHistoryChange(e)}})),this.drawingUndoRedo&&this.drawingUndoRedo.register({getModeState:()=>this.getModeState(),getModeHistorySizes:()=>this.getDrawingHistorySizes(),undoMode:()=>{this._mode.undo&&this._mode.undo()},redoMode:()=>{this._mode.redo&&this._mode.redo()},clearModeHistory:()=>{let e=this._mode;e.clearHistory&&e.clearHistory()},onHistoryChange:e=>{var t;(t=this.undoRedoCoordinator)==null||t.emitStackHistoryChange(e)}}),this.undoRedoCoordinator=new Jr({modeLevel:this.drawingUndoRedo,sessionLevel:this.sessionUndoRedo,shouldPreferMode:()=>this.getModeState()===`drawing`,onHistoryChange:e=>{this._eventListeners.history.forEach(t=>{t(e)})},shouldEmitHistoryChange:()=>this._enabled})}checkEnabled(){if(!this._enabled)throw Error(`Terra Draw is not enabled`)}handleUndoRedoKeyboardShortcut(e){if(!this.drawingUndoRedo&&!this.sessionUndoRedoEnabled||!this.keyboardShortcutsMatcher)return!1;let t=this.keyboardShortcutsMatcher.isUndoKeyboardShortcut(e),n=this.keyboardShortcutsMatcher.isRedoKeyboardShortcut(e);if(t){if(!this.canUndo())return!1;let t=this.undo();return t&&e.preventDefault(),t}if(n){if(!this.canRedo())return!1;let t=this.redo();return t&&e.preventDefault(),t}return!1}getDrawingHistorySizes(){return{undoSize:this._mode.undoSize&&typeof this._mode.undoSize==`function`?this._mode.undoSize():0,redoSize:this._mode.redoSize&&typeof this._mode.redoSize==`function`?this._mode.redoSize():0}}emitDrawingPushIfHistoryChangedFromLastSnapshot(){this.drawingUndoRedo&&this.drawingUndoRedo.emitPushIfHistoryChangedFromLastSnapshot()}emitDrawingPushIfHistoryChanged(e){this.drawingUndoRedo&&this.drawingUndoRedo.emitPushIfHistoryChanged(e)}emitHistoryChangeAfterFinish(){var e;(e=this.undoRedoCoordinator)==null||e.emitPushAfterFinish()}getModeStyles(){let e={},t=this._instanceSelectModes.includes(this._mode.mode)?this._mode.mode:void 0;return Object.keys(this._modes).forEach(n=>{e[n]=e=>t&&e.properties[Ye.SELECTED]?this._modes[t].styleFeature.bind(this._modes[t])(e):this._modes[n].styleFeature.bind(this._modes[n])(e)}),e}featuresAtLocation({lng:e,lat:t},n){let r=n&&n.pointerDistance!==void 0?n.pointerDistance:30,i=!n||n.ignoreSelectFeatures===void 0||n.ignoreSelectFeatures,a=!(!n||n.ignoreCoordinatePoints===void 0)&&n.ignoreCoordinatePoints,o=!(!n||n.ignoreCurrentlyDrawing===void 0)&&n.ignoreCurrentlyDrawing,s=!(!n||n.ignoreClosingPoints===void 0)&&n.ignoreClosingPoints,c=!(!n||n.ignoreSnappingPoints===void 0)&&n.ignoreSnappingPoints,l=this._adapter.unproject.bind(this._adapter),u=this._adapter.project.bind(this._adapter),d=u(e,t),f=Rt({unproject:l,point:d,pointerDistance:r});return this._store.search(f).filter(l=>{if(i&&(l.properties[Ye.MID_POINT]||l.properties[Ye.SELECTION_POINT])||a&&l.properties[L.COORDINATE_POINT]||s&&l.properties[L.CLOSING_POINT]||o&&l.properties[L.CURRENTLY_DRAWING]||c&&l.properties[L.SNAPPING_POINT])return!1;if(l.geometry.type===`Point`){let e=l.geometry.coordinates;return Pt(d,u(e[0],e[1]))<r}if(l.geometry.type===`LineString`){let e=l.geometry.coordinates;for(let t=0;t<e.length-1;t++){let n=e[t],i=e[t+1];if(Pn(d,u(n[0],n[1]),u(i[0],i[1]))<r)return!0}return!1}if(Nn([e,t],l.geometry.coordinates))return!0;if(n!=null&&n.includePolygonsWithinPointerDistance){let e=l.geometry.coordinates;for(let t of e)for(let e=0;e<t.length-1;e++){let n=t[e],i=t[e+1];if(Pn(d,u(n[0],n[1]),u(i[0],i[1]))<r)return!0}}return!1}).map(r=>{if(n==null||!n.addClosestCoordinateInfoToProperties)return r;let i;if(r.geometry.type===`Polygon`)i=r.geometry.coordinates[0].slice(0,-1);else{if(r.geometry.type!==`LineString`)return r;i=r.geometry.coordinates}let a,o=-1,s=1/0;for(let e=0;e<i.length;e++){let t=i[e],n=Pt(u(t[0],t[1]),d);n<s&&(o=e,s=n,a=t)}return r.properties.closestCoordinateIndexToEvent=o,r.properties.closestCoordinatePixelDistanceToEvent=s,r.properties.closestCoordinateDistanceKmToEvent=tt(a,[e,t]),r})}getSelectModeOrThrow(e=void 0){let t=this.getSelectMode({switchToSelectMode:!0,selectMode:e});if(!t)throw Error(`No select mode defined in instance`);return t}getSelectMode({switchToSelectMode:e,selectMode:t}){this.checkEnabled();let n=this.getMode();if(this._instanceSelectModes.length===0)return null;if(t!==void 0&&!this._instanceSelectModes.includes(t))throw Error(`No select mode with this name present: ${t}`);let r;return r=t===void 0?this._instanceSelectModes.includes(n)?n:this._instanceSelectModes[0]:t,e&&n!==r&&this.setMode(r),this._modes[r]}isGuidanceFeature(e){return!!(e.properties[Ye.MID_POINT]||e.properties[Ye.SELECTION_POINT]||e.properties[L.COORDINATE_POINT]||e.properties[L.SNAPPING_POINT])}setModeStyles(e,t){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._modes[e].styles=t}updateModeOptions(e,t){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._modes[e].updateOptions(t)}getSnapshot(){return this._store.copyAll()}getSnapshotFeature(e){if(this._store.has(e))return this._store.copy(e)}clear(){this.checkEnabled(),this._adapter.clear()}get enabled(){return this._enabled}set enabled(e){throw Error(`Enabled is read only`)}getMode(){return this._mode.mode}getModeState(){return this._mode.state}setMode(e){if(this.checkEnabled(),!this._modes[e])throw Error(`No mode with this name present`);this._mode.stop(),this._mode=this._modes[e],this._mode.start()}removeFeatures(e){this.checkEnabled();let t=[],n=[],r;e.forEach(e=>{if(!this._store.has(e))throw Error(`No feature with id ${e}, can not delete`);let i=this._store.getPropertiesCopy(e);i[Ye.SELECTED]&&this.deselectFeature(e),i[L.CURRENTLY_DRAWING]&&this._modes[i.mode]?r=i.mode:(i[L.COORDINATE_POINT_IDS]&&t.push(...i[L.COORDINATE_POINT_IDS]),n.push(e))}),this._store.delete([...n,...t],{origin:`api`}),r&&this._modes[r]&&this._modes[r].cleanUp()&&this._modes[r].cleanUp()}selectFeature(e,t){this.getSelectModeOrThrow(t).selectFeature(e)}deselectFeature(e){this.getSelectModeOrThrow().deselectFeature(e)}getFeatureId(){return this._store.getId()}hasFeature(e){return this._store.has(e)}checkIsReservedProperty(e){return![...Object.values(Ye),...Object.values(L)].includes(e)}updateFeatureProperties(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);let r=n.properties.mode;if(!this._modes[r])throw Error(`No mode with name ${r} present in instance`);let i=Object.entries(t);i.forEach(([e,t])=>{if(!this.checkIsReservedProperty(e))throw Error(`You are trying to update a reserved property name: ${e}. Please choose another name.`);if(t!==void 0&&!Pr(t))throw Error(`Invalid JSON value provided for property ${e}`)}),this._store.updateProperty(i.map(([e,t])=>({id:n.id,property:e,value:t})),{origin:`api`})}updateFeatureGeometry(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);if(!(n&&t&&t.type&&t.coordinates))throw Error(`Invalid geometry provided`);if(t.type!==n.geometry.type)throw Error(`Geometry type mismatch: expected ${n.geometry.type}, got ${t.type}`);let r=n.properties.mode,i=this._modes[r];if(!i)throw Error(`No mode with name ${r} present in instance`);let a=F({},n,{geometry:t}),o=i.validateFeature(a);if(!o.valid)throw Error(`Feature validation failed: ${o.reason||`Unknown reason`}`);if(this._store.updateGeometry([{id:n.id,geometry:t}],{origin:`api`}),i.afterFeatureUpdated){i.afterFeatureUpdated(a);let e=a.properties[Ye.SELECTED],t=this.getSelectMode({switchToSelectMode:!1});t&&e&&t.afterFeatureUpdated(a)}}transformFeatureGeometry(e,t){if(!this._store.has(e))throw Error(`No feature with id ${e} present in store`);let n=this._store.copy(e);if(this.isGuidanceFeature(n))throw Error(`Guidance features are not allowed to be updated directly.`);let r=n.properties.mode,i=this._modes[r];if(!i)throw Error(`No mode with name ${r} present in instance`);let a;if(n.geometry.type===`Polygon`)a=n.geometry.coordinates[0];else{if(n.geometry.type!==`LineString`)throw Error(`Feature geometry type ${n.geometry.type} is not supported for transformation`);a=n.geometry.coordinates}if(t.projection!=`web-mercator`)throw Error(`Projection ${t.projection} is not currently supported for transformation`);if(t.type===`scale`){let{x:e,y:n}=U(t.origin[0],t.origin[1]);Un({coordinates:a,originX:e,originY:n,xScale:t.options.xScale||1,yScale:t.options.yScale||1})}else t.type===`rotate`&&(n=zn(n,t.options.angle||0),a=n.geometry.type===`Polygon`?n.geometry.coordinates[0]:n.geometry.coordinates);if(a=a.map(e=>[H(e[0],this._adapter.getCoordinatePrecision()),H(e[1],this._adapter.getCoordinatePrecision())]),n.geometry.coordinates=n.geometry.type===`Polygon`?[a]:a,this._store.updateGeometry([{id:n.id,geometry:n.geometry}],{origin:`api`}),i.afterFeatureUpdated){i.afterFeatureUpdated(n);let e=n.properties[Ye.SELECTED],t=this.getSelectMode({switchToSelectMode:!1});t&&e&&t.afterFeatureUpdated(n)}}undo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.undo()}canUndo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.canUndo()}canRedo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.canRedo()}redo(){return this.checkEnabled(),!!this.undoRedoCoordinator&&this.undoRedoCoordinator.redo()}clearUndoRedoHistory(){this.checkEnabled(),this.undoRedoCoordinator&&this.undoRedoCoordinator.clearHistory()}addFeatures(e){return this.checkEnabled(),e.length===0?[]:this._store.load(e,e=>{if(z(e)){let t=e.properties.mode,n=this._modes[t];if(!n)return{id:e.id,valid:!1,reason:`${t} mode is not in the list of instantiated modes`};let r=n.validateFeature.bind(n)(e);return{id:e.id,valid:r.valid,reason:r.reason?r.reason:r.valid?void 0:`Feature is invalid`}}return{id:e.id,valid:!1,reason:`Mode property does not exist`}},e=>{if(z(e)){let t=this._modes[e.properties.mode];t&&t.afterFeatureAdded&&t.afterFeatureAdded(e)}},{origin:`api`})}start(){this._enabled||(this._enabled=!0,this._adapter.register({onReady:()=>{this._eventListeners.ready.forEach(e=>{e()})},getState:()=>this._mode.state,onClick:e=>{let t=this.drawingUndoRedo?this.drawingUndoRedo.getHistorySizes():{undoSize:0,redoSize:0};this._mode.onClick(e),this.emitDrawingPushIfHistoryChanged(t)},onMouseMove:e=>{this._mode.onMouseMove(e)},onKeyDown:e=>{this.handleUndoRedoKeyboardShortcut(e)||this._mode.onKeyDown(e)},onKeyUp:e=>{let t=this.drawingUndoRedo?this.drawingUndoRedo.getHistorySizes():{undoSize:0,redoSize:0};this._mode.onKeyUp(e),this.emitDrawingPushIfHistoryChanged(t)},onDragStart:(e,t)=>{this._mode.onDragStart(e,t)},onDrag:(e,t)=>{this._mode.onDrag(e,t)},onDragEnd:(e,t)=>{this._mode.onDragEnd(e,t)},onClear:()=>{this._mode.cleanUp(),this._store.clear({origin:`api`})}}))}getFeaturesAtLngLat(e,t){let{lng:n,lat:r}=e;return this.featuresAtLocation({lng:n,lat:r},t)}getFeaturesAtPointerEvent(e,t){let n=this._adapter.getLngLatFromEvent.bind(this._adapter)(e);return n===null?[]:this.featuresAtLocation(n,t)}stop(){this._enabled&&(this._enabled=!1,this._adapter.unregister())}on(e,t){let n=this._eventListeners[e];n.includes(t)||n.push(t)}off(e,t){let n=this._eventListeners[e];n.includes(t)&&n.splice(n.indexOf(t),1)}},Xr=class extends Ar.TerraDrawBaseAdapter{constructor(e){super(e),this._renderBeforeLayerId=void 0,this._prefixId=void 0,this._initialDragPan=void 0,this._initialDragRotate=void 0,this._nextRender=void 0,this._map=void 0,this._container=void 0,this.changedIds={deletion:!1,points:!1,linestrings:!1,polygons:!1,styling:!1},this._map=e.map,this._container=this._map.getContainer(),this._initialDragRotate=this._map.dragRotate.isEnabled(),this._initialDragPan=this._map.dragPan.isEnabled(),this._renderBeforeLayerId=e.renderBelowLayerId,this._prefixId=e.prefixId||`td`}hashCode(e){let t=0;for(let n=0;n<e.length;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return Math.abs(t)}resizeImage(e,t,n,r){let i=new Image;i.crossOrigin=`anonymous`,i.onload=()=>{let e=document.createElement(`canvas`);e.width=t,e.height=n;let a=e.getContext(`2d`);if(!a)throw Error(`Could not get canvas context`);a.drawImage(i,0,0,t,n),r(e.toDataURL())},i.src=e}_addGeoJSONSource(e,t){this._map.addSource(e,{type:`geojson`,data:{type:`FeatureCollection`,features:t},tolerance:0})}_addFillLayer(e){return this._map.addLayer({id:e,source:e,type:`fill`,layout:{"fill-sort-key":[`get`,`zIndex`]},paint:{"fill-color":[`get`,`polygonFillColor`],"fill-opacity":[`get`,`polygonFillOpacity`]}})}_addFillOutlineLayer(e){return this._map.addLayer({id:e+`-outline`,source:e,type:`line`,layout:{"line-sort-key":[`get`,`zIndex`]},paint:{"line-width":[`get`,`polygonOutlineWidth`],"line-color":[`get`,`polygonOutlineColor`],"line-opacity":[`get`,`polygonOutlineOpacity`]}})}_addLineLayer(e){return this._map.addLayer({id:e,source:e,type:`line`,layout:{"line-sort-key":[`get`,`zIndex`]},paint:{"line-width":[`get`,`lineStringWidth`],"line-color":[`get`,`lineStringColor`],"line-opacity":[`get`,`lineStringOpacity`]}})}_addPointLayer(e){return this._map.addLayer({id:e,source:e,type:`circle`,layout:{"circle-sort-key":[`get`,`zIndex`]},paint:{"circle-stroke-color":[`get`,`pointOutlineColor`],"circle-stroke-width":[`get`,`pointOutlineWidth`],"circle-stroke-opacity":[`get`,`pointOutlineOpacity`],"circle-radius":[`get`,`pointWidth`],"circle-color":[`get`,`pointColor`],"circle-opacity":[`get`,`pointOpacity`]}})}_addMarkerLayer(e){return this._map.addLayer({id:e+`-marker`,source:e,type:`symbol`,filter:[`has`,`markerId`],layout:{"icon-image":[`image`,[`get`,`markerId`]],"icon-anchor":`bottom`,"icon-allow-overlap":!0}})}_addLayer(e,t){t===`Point`&&(this._addPointLayer(e),this._addMarkerLayer(e)),t===`LineString`&&this._addLineLayer(e),t===`Polygon`&&(this._addFillLayer(e),this._addFillOutlineLayer(e))}_addGeoJSONLayer(e,t){let n=`${this._prefixId}-${e.toLowerCase()}`;return this._addGeoJSONSource(n,t),this._addLayer(n,e),n}_setGeoJSONLayerData(e,t){let n=`${this._prefixId}-${e.toLowerCase()}`;return this._map.getSource(n).setData({type:`FeatureCollection`,features:t}),n}updateChangedIds(e){[...e.updated,...e.created].forEach(e=>{e.geometry.type===`Point`?this.changedIds.points=!0:e.geometry.type===`LineString`?this.changedIds.linestrings=!0:e.geometry.type===`Polygon`&&(this.changedIds.polygons=!0)}),e.deletedIds.length>0&&(this.changedIds.deletion=!0),e.created.length===0&&e.updated.length===0&&e.deletedIds.length===0&&(this.changedIds.styling=!0)}getLngLatFromEvent(e){let{left:t,top:n}=this._container.getBoundingClientRect();return this.unproject(e.clientX-t,e.clientY-n)}getMapEventElement(){return this._map.getCanvas()}setDraggability(e){e?(this._initialDragRotate&&this._map.dragRotate.enable(),this._initialDragPan&&this._map.dragPan.enable()):(this._initialDragRotate&&this._map.dragRotate.disable(),this._initialDragPan&&this._map.dragPan.disable())}project(e,t){let{x:n,y:r}=this._map.project({lng:e,lat:t});return{x:n,y:r}}unproject(e,t){let{lng:n,lat:r}=this._map.unproject({x:e,y:t});return{lng:n,lat:r}}setCursor(e){let t=this._map.getCanvas();e===`unset`?t.style.removeProperty(`cursor`):t.style.cursor=e}setDoubleClickToZoom(e){e?this._map.doubleClickZoom.enable():this._map.doubleClickZoom.disable()}render(e,t){this.updateChangedIds(e),this._nextRender&&cancelAnimationFrame(this._nextRender),this._nextRender=requestAnimationFrame(()=>{if(!this._currentModeCallbacks)return;let n=[...e.created,...e.updated,...e.unchanged],r=[],i=[],a=[];for(let e=0;e<n.length;e++){let o=n[e],{properties:s}=o,c=t[s.mode](o);if(s.zIndex=c.zIndex,s.zIndex=c.zIndex,o.geometry.type===`Point`){s.pointColor=c.pointColor,s.pointOutlineColor=c.pointOutlineColor,s.pointOutlineWidth=c.pointOutlineWidth;let e=c.pointOutlineOpacity;s.pointOutlineOpacity=e===void 0?1:e,s.pointWidth=c.pointWidth;let t=c.pointOpacity;if(s.pointOpacity=t===void 0?1:t,c.markerUrl&&c.markerWidth&&c.markerHeight){let e=`marker-${this.hashCode(c.markerUrl)}`;this._map.hasImage(e)||this.resizeImage(c.markerUrl,c.markerWidth,c.markerHeight,t=>{this._map.loadImage(t).then(t=>{this._map.hasImage(e)||this._map.addImage(e,t.data)})}),s.markerId=e,s.pointWidth=0}r.push(o)}else if(o.geometry.type===`LineString`){s.lineStringColor=c.lineStringColor,s.lineStringWidth=c.lineStringWidth;let e=c.lineStringOpacity;s.lineStringOpacity=e===void 0?1:e,i.push(o)}else if(o.geometry.type===`Polygon`){let e=c.polygonOutlineOpacity;s.polygonFillColor=c.polygonFillColor,s.polygonFillOpacity=c.polygonFillOpacity,s.polygonOutlineOpacity=e===void 0?1:e,s.polygonOutlineColor=c.polygonOutlineColor,s.polygonOutlineWidth=c.polygonOutlineWidth,a.push(o)}}let o=this.changedIds.deletion||this.changedIds.styling,s=o||this.changedIds.linestrings,c=o||this.changedIds.polygons;(o||this.changedIds.points)&&this._setGeoJSONLayerData(`Point`,r),s&&this._setGeoJSONLayerData(`LineString`,i),c&&this._setGeoJSONLayerData(`Polygon`,a),this.changedIds={points:!1,linestrings:!1,polygons:!1,deletion:!1,styling:!1}})}clear(){this._currentModeCallbacks&&(this._currentModeCallbacks.onClear(),this._nextRender&&=(cancelAnimationFrame(this._nextRender),void 0),this._setGeoJSONLayerData(`Point`,[]),this._setGeoJSONLayerData(`LineString`,[]),this._setGeoJSONLayerData(`Polygon`,[]))}getCoordinatePrecision(){return super.getCoordinatePrecision()}unregister(){super.unregister(),this.changedIds={points:!1,linestrings:!1,polygons:!1,deletion:!1,styling:!1},this._map.removeLayer(`${this._prefixId}-point`),this._map.removeLayer(`${this._prefixId}-point-marker`),this._map.removeSource(`${this._prefixId}-point`),this._map.removeLayer(`${this._prefixId}-linestring`),this._map.removeSource(`${this._prefixId}-linestring`),this._map.removeLayer(`${this._prefixId}-polygon`),this._map.removeLayer(`${this._prefixId}-polygon-outline`),this._map.removeSource(`${this._prefixId}-polygon`)}register(e){var t;super.register(e);let n=this._addGeoJSONLayer(`Polygon`,[]),r=this._addGeoJSONLayer(`LineString`,[]),i=this._addGeoJSONLayer(`Point`,[]);var a;this._renderBeforeLayerId&&(this._map.moveLayer(i,this._renderBeforeLayerId),this._map.moveLayer(r,i),this._map.moveLayer(`${n}-outline`,r),this._map.moveLayer(n,`${n}-outline`)),(t=this._currentModeCallbacks)!=null&&t.onReady&&((a=this._currentModeCallbacks)==null||a.onReady())}},Zr={modes:[`render`,`point`,`marker`,`linestring`,`polygon`,`rectangle`,`angled-rectangle`,`sensor`,`sector`,`circle`,`freehand`,`freehand-linestring`,`select`,`delete-selection`,`delete`,`undo`,`redo`,`download`],open:!1},Qr={modes:[`render`,`point`,`marker`,`linestring`,`polygon`,`rectangle`,`angled-rectangle`,`sensor`,`sector`,`circle`,`freehand`,`freehand-linestring`,`select`,`delete-selection`,`delete`,`undo`,`redo`,`download`],open:!1,modeOptions:{point:new vn({editable:!0,styles:{pointColor:`#FFFFFF`,pointWidth:5,pointOutlineColor:`#666666`,pointOutlineWidth:1}}),marker:new Ir({editable:!0,styles:{markerUrl:`data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20inkscape:version='1.0%20(4035a4fb49,%202020-05-01)'%20sodipodi:docname='poi.svg'%20id='svg4460'%20height='100'%20width='100'%20version='1.1'%3e%3csodipodi:namedview%20inkscape:document-rotation='0'%20inkscape:current-layer='svg4460'%20inkscape:window-maximized='1'%20inkscape:window-y='-8'%20inkscape:window-x='-8'%20inkscape:cy='70.031285'%20inkscape:cx='-78.460726'%20inkscape:zoom='2.02'%20showgrid='false'%20id='namedview11'%20inkscape:window-height='1017'%20inkscape:window-width='1920'%20inkscape:pageshadow='2'%20inkscape:pageopacity='0'%20guidetolerance='10'%20gridtolerance='10'%20objecttolerance='10'%20borderopacity='1'%20bordercolor='%23666666'%20pagecolor='%23ffffff'%20/%3e%3cdefs%20id='defs4462'%20/%3e%3cmetadata%20id='metadata4465'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cpath%20d='M%2050.001528,3.3861402e-7%20C%2030.763177,3.3861402e-7%2015,15.718144%2015,34.901534%20c%200,7.432782%202.373565,14.339962%206.391689,20.019029%20l%2024.338528,42.073163%20c%203.40849,4.452814%205.674917,3.607154%208.509014,-0.23458%20L%2081.083105,51.075788%20C%2081.625418,50.0948%2082.050328,49.050173%2082.421327,47.983517%2084.078241,43.936622%2085.000002,39.521943%2085,34.901534%2085,15.718144%2069.23988,3.3861402e-7%2050.001528,3.3861402e-7%20Z%20m%200,16.35400066138598%20c%2010.359296,0%2018.597616,8.21783%2018.597618,18.547533%200,10.329703%20-8.238322,18.544487%20-18.597618,18.544487%20-10.359299,0%20-18.600672,-8.214784%20-18.600672,-18.544487%200,-10.329703%208.241373,-18.547533%2018.600672,-18.547533%20z'%20style='fill:rgb(95,%2099,%20104);stroke-width:4.26019'%20id='path4135'%20/%3e%3c/svg%3e`,markerWidth:27,markerHeight:27}}),linestring:new dn({editable:!0,styles:{lineStringColor:`#666666`,lineStringWidth:2,closingPointColor:`#FFFFFF`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),polygon:new xn({editable:!0,styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,closingPointColor:`#FAFAFA`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),rectangle:new wn({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),"angled-rectangle":new xr({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),circle:new Nt({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),freehand:new Lt({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,closingPointColor:`#FAFAFA`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),"freehand-linestring":new Nr({styles:{lineStringColor:`#666666`,lineStringWidth:2,closingPointColor:`#FFFFFF`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),sensor:new Or({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2,centerPointColor:`#FAFAFA`,centerPointWidth:3,centerPointOutlineColor:`#666666`,centerPointOutlineWidth:1}}),sector:new Tr({styles:{fillColor:`#EDEFF0`,fillOpacity:.7,outlineColor:`#666666`,outlineWidth:2}}),select:new qn({flags:{point:{feature:{draggable:!1}},marker:{feature:{draggable:!1}},polygon:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},linestring:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},freehand:{feature:{draggable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},"freehand-linestring":{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},circle:{feature:{draggable:!0,coordinates:{resizable:`center`,deletable:!1,midpoints:!1}}},rectangle:{feature:{draggable:!0,rotateable:!0,coordinates:{resizable:`opposite`,deletable:!1,midpoints:!1}}},"angled-rectangle":{feature:{draggable:!0,rotateable:!0,coordinates:{resizable:`opposite`,deletable:!1,midpoints:!1}}},sensor:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}},sector:{feature:{draggable:!0,rotateable:!0,scaleable:!0,coordinates:{midpoints:!0,draggable:!0,deletable:!0}}}}})},pointLayerLabelSpec:{id:`{prefix}-point-label`,type:`symbol`,source:`{prefix}-point`,filter:[`all`,[`==`,`$type`,`Point`],[`any`,[`==`,`mode`,`point`],[`==`,`mode`,`marker`]]],layout:{"text-field":[`case`,[`all`,[`has`,`elevation`],[`>`,[`get`,`elevation`],0]],[`concat`,`Alt. `,[`to-string`,[`floor`,[`get`,`elevation`]]],` `,[`get`,`elevationUnit`]],``],"symbol-placement":`point`,"text-size":[`interpolate`,[`linear`],[`zoom`],5,10,10,12,13,14,14,16,18,18],"text-overlap":`always`,"text-variable-anchor":[`left`,`right`,`top`,`bottom`],"text-radial-offset":.5,"text-justify":`center`,"text-letter-spacing":.05},paint:{"text-halo-color":`#F7F7F7`,"text-halo-width":2,"text-color":`#232E3D`}},lineLayerLabelSpec:{id:`{prefix}-line-label`,type:`symbol`,source:`{prefix}-line-source`,filter:[`==`,`$type`,`Point`],layout:{"text-field":[`concat`,[`to-string`,[`get`,`distance`]],` `,[`get`,`unit`],[`case`,[`==`,[`get`,`total`],0],``,[`concat`,`
757
757
  (`,[`to-string`,[`get`,`total`]],` `,[`get`,`totalUnit`],`)`]],[`case`,[`all`,[`has`,`elevation`],[`>`,[`get`,`elevation`],0]],[`concat`,`
758
758
  Alt. `,[`to-string`,[`floor`,[`get`,`elevation`]]],` `,[`get`,`elevationUnit`]],``]],"symbol-placement":`point`,"text-size":[`interpolate`,[`linear`],[`zoom`],5,10,10,12,13,14,14,16,18,18],"text-overlap":`always`,"text-variable-anchor":[`left`,`right`,`top`,`bottom`],"text-radial-offset":.5,"text-justify":`center`,"text-letter-spacing":.05},paint:{"text-halo-color":`#F7F7F7`,"text-halo-width":2,"text-color":`#232E3D`}},routingLineLayerNodeSpec:{id:`{prefix}-line-node`,type:`circle`,source:`{prefix}-line-source`,filter:[`==`,`$type`,`Point`],layout:{},paint:{"circle-radius":3,"circle-color":`#FFFFFF`,"circle-stroke-color":`#000000`,"circle-stroke-width":1}},polygonLayerSpec:{id:`{prefix}-polygon-label`,type:`symbol`,source:`{prefix}-polygon-source`,filter:[`==`,`$type`,`Point`],layout:{"text-field":[`concat`,[`to-string`,[`get`,`area`]],` `,[`get`,`unit`]],"symbol-placement":`point`,"text-size":[`interpolate`,[`linear`],[`zoom`],5,10,10,12,13,14,14,16,18,18],"text-overlap":`always`,"text-letter-spacing":.05},paint:{"text-halo-color":`#F7F7F7`,"text-halo-width":2,"text-color":`#232E3D`}},computeElevation:!1,terrainSource:{url:`https://tiles.mapterhorn.com/{z}/{x}/{y}.webp`,encoding:`terrarium`,tileSize:512,minzoom:0,maxzoom:12,tms:!1},measureUnitType:`metric`,distancePrecision:2,distanceUnit:void 0,areaPrecision:2,areaUnit:void 0,measureUnitSymbols:JSON.parse(JSON.stringify({kilometer:`km`,meter:`m`,centimeter:`cm`,mile:`mi`,foot:`ft`,inch:`in`,"square meters":`m²`,"square kilometers":`km²`,ares:`a`,hectares:`ha`,"square feet":`ft²`,"square yards":`yd²`,acres:`acres`,"square miles":`mi²`})),elevationCacheConfig:{enabled:!0,maxSize:1e3,ttl:3600*1e3,precision:9},adapterOptions:{prefixId:`td-measure`}},$r={modes:[`render`,`routing`,`time-isochrone`,`distance-isochrone`,`select`,`delete-selection`,`delete`,`download`,`settings`],open:!1,modeOptions:{"time-isochrone":new vn({modeName:`time-isochrone`,editable:!1,styles:{pointColor:`#FFFFFF`,pointWidth:5,pointOutlineColor:`#666666`,pointOutlineWidth:1}}),"distance-isochrone":new vn({modeName:`distance-isochrone`,editable:!1,styles:{pointColor:`#FFFFFF`,pointWidth:5,pointOutlineColor:`#666666`,pointOutlineWidth:1}}),routing:new dn({modeName:`routing`,editable:!1,styles:{lineStringColor:`#FF0000`,lineStringWidth:2,closingPointColor:`#FF0000`,closingPointWidth:3,closingPointOutlineColor:`#666666`,closingPointOutlineWidth:1}}),select:new qn({flags:{"time-isochrone":{feature:{draggable:!1}},"distance-isochrone":{feature:{draggable:!1}},routing:{feature:{draggable:!1,rotateable:!1,scaleable:!1,coordinates:{midpoints:!1,draggable:!1,deletable:!1}}}}}),settings:new Tn({modeName:`settings`,styles:{}})},valhallaOptions:{url:``,routingOptions:{costingModel:`auto`,distanceUnit:`kilometers`},isochroneOptions:{timeCostingModel:`auto`,distanceCostingModel:`auto`,contours:[{time:3,distance:1,color:`#ff0000`},{time:5,distance:2,color:`#ffff00`},{time:10,distance:3,color:`#0000ff`},{time:15,distance:4,color:`#ff00ff`}]}},adapterOptions:{prefixId:`td-valhalla`},routingLineLayerNodeLabelSpec:{id:`{prefix}-routing-node-label`,type:`symbol`,source:`{prefix}-routing-source`,filter:[`==`,`$type`,`Point`],layout:{"text-field":[`case`,[`all`,[`has`,`distance`],[`has`,`distance_unit`],[`has`,`time`]],[`concat`,[`to-string`,[`get`,`text`]],`
759
759
  `,[`to-string`,[`/`,[`round`,[`*`,[`get`,`distance`],10]],10]],[`to-string`,[`get`,`distance_unit`]],`