draw-libre 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<section >
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# DrawLibre
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -122,7 +122,7 @@ map.on(mdl:add, (event: PointAddEvent) => {
|
|
|
122
122
|
|
|
123
123
|
Available events:
|
|
124
124
|
|
|
125
|
-
- `mdl:
|
|
125
|
+
- `mdl:rightclickremove` (PointRightClickRemoveEvent) -- Fired when a point is removed by right-clicking on it.
|
|
126
126
|
- `mdl:pointenter` (PointEnterEvent) -- Fired when the cursor enters a point
|
|
127
127
|
- `mdl:pointleave` (PointLeaveEvent) -- Fired when the cursor leaves a point
|
|
128
128
|
- `mdl:moveend` (PointMoveEvent) -- Fired when a point is moved
|
package/dist/index.d.ts
CHANGED
|
@@ -166,13 +166,13 @@ interface SaveEvent {
|
|
|
166
166
|
target: CustomMap;
|
|
167
167
|
type: "mdl:save";
|
|
168
168
|
}
|
|
169
|
-
interface
|
|
169
|
+
interface PointRightClickRemoveEvent {
|
|
170
170
|
id: Uuid;
|
|
171
171
|
total: number;
|
|
172
172
|
timestamp: number;
|
|
173
173
|
target: CustomMap;
|
|
174
174
|
coordinates: LatLng;
|
|
175
|
-
type: "mdl:
|
|
175
|
+
type: "mdl:rightclickremove";
|
|
176
176
|
}
|
|
177
177
|
interface PointAddEvent {
|
|
178
178
|
id: Uuid;
|
|
@@ -284,4 +284,4 @@ declare class DrawLibre implements IControl {
|
|
|
284
284
|
removeAllSteps: () => void;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
export { type ModeChangeEvent, type PointAddEvent, type
|
|
287
|
+
export { type ModeChangeEvent, type PointAddEvent, type PointEnterEvent, type PointLeaveEvent, type PointMoveEvent, type PointRightClickRemoveEvent, type RemoveAllEvent, type RequiredDrawOptions, type SaveEvent, type UndoEvent, DrawLibre as default };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
var p=class n{static docStyle=typeof window<"u"&&window.document&&window.document.documentElement.style;static transformProp=n.testProp(["transform","WebkitTransform"]);static testProp(e){if(!n.docStyle)return e[0];for(let t=0;t<e.length;t++)if(e[t]in n.docStyle)return e[t];return e[0]}static create(e,t,i){let o=window.document.createElement(e);return t!==void 0&&(o.className=t),i&&i.appendChild(o),o}static remove(e){e.parentNode&&e.parentNode.removeChild(e);}static setTransform(e,t){n.transformProp&&e.style&&(e.style[n.transformProp]=t);}static manageEventListener(e,t,i,o,r={}){if(!t)return;let a=e==="add"?"addEventListener":"removeEventListener";"passive"in r?t[a](i,o,r):t[a](i,o,r.capture);}static mouseButton(e){return e.button}static addClassName(e,t){e.classList.contains(t)||e.classList.add(t);}static removeClassName(e,t){e.classList.contains(t)&&e.classList.remove(t);}};var H=class{#e;#t;#o;_undoButton;_deleteButton;_saveButton;_container;_updatePositionCallback;constructor(e){this.#e=e,this._container=void 0,this.#t=!0,this.#o=void 0,this.#r();}#i(){this.#o&&(this.#o.className="dashboard-container",this.#o.style.position="absolute",this.#o.style.zIndex="1000000",this.#o.style.pointerEvents="auto",this.#o.style.display=this.#t?"none":"block");}#r=()=>{let{store:e}=this.#e;this.createPanel(),this.#o=document.createElement("div"),this.#i(),this._container&&this.#o.appendChild(this._container),document.body.appendChild(this.#o),e.tail?.val&&this.setPanelLocation({lat:e.tail?.val?.lat,lng:e.tail?.val?.lng});};setPanelLocation=e=>{if(!this.#o)return;this.#t&&this.showPanel();let t=this.#e.map.project(e);this.#n(t),this.#s(e);};#n=e=>{if(this.#t||!this.#o)return;let i=this.#e.map.getContainer().getBoundingClientRect(),o=i.left+e.x,r=i.top+e.y,a=36;this.#o.style.left=`${o-a}px`,this.#o.style.top=`${r-a}px`;};#s(e){this.#l(),this._updatePositionCallback=()=>{this.#t||!this.#o||this.#n(this.#e.map.project(e));},this.#e.map.on("move",this._updatePositionCallback),this.#e.map.on("zoom",this._updatePositionCallback);}#l(){this._updatePositionCallback&&(this.#e.map.off("move",this._updatePositionCallback),this.#e.map.off("zoom",this._updatePositionCallback),this._updatePositionCallback=void 0);}showPanel=()=>{this.#t&&this.#o&&(this.#t=!1,this.#o.style.display="block",this.#o.style.transition="opacity 0.2s",this.#o.style.opacity="1");};hidePanel=()=>{!this.#t&&this.#o&&(this.#t=!0,this.#o.style.display="none");};removePanel=()=>{this._updatePositionCallback&&(this.#e.map.off("move",this._updatePositionCallback),this.#e.map.off("zoom",this._updatePositionCallback),this._updatePositionCallback=void 0),this.#o&&(document.body.removeChild(this.#o),this.#o=void 0),this._container&&(p.remove(this._container),this._container=void 0);};#a=(e,t,i,o)=>{let r=p.create("button",`panel-button panel-button-${i}`,o);return r.setAttribute("data-type",e),r.setAttribute("aria-label",t),p.create("span",`icon ${e} icon-${i}`,r),r};createPanel=()=>{let{options:e}=this.#e,{locale:t}=e,{undo:i,delete:o,save:r}=e.panel.buttons,a=e.panel.size,l=p.create("div","dashboard");i.visible&&(this._undoButton=this.#a("undo",t.undo,a,l)),o.visible&&(this._deleteButton=this.#a("delete",t.delete,a,l)),r.visible&&(this._saveButton=this.#a("save",t.save,a,l)),this._container=l;}};var ce={type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:[]}}]};var s={LineDynamicLayer:"mdl-line-dynamic-layer",LineLayer:"mdl-line-layer",LineLayerTransparent:"mdl-line-layer-transparent",LineLayerBreak:"mdl-line-break-layer",PolygonLayer:"mdl-polygon-layer",PointsLayer:"mdl-points-layer",SinglePointLayer:"mdl-single-point-layer",FirstPointLayer:"mdl-first-point-layer",AuxiliaryPointLayer:"mdl-auxiliary-point-layer"},d={UnifiedSource:"mdl-unified-source",LineDynamicSource:"mdl-line-dynamic-source",LineSourceBreak:"mdl-line-source-break",SinglePointSource:"mdl-single-point-source"},T={large:6.5,default:5.5},U={large:"#FF6464",default:"#666666"},w={"circle-radius":T.default,"circle-color":"#FEFFFE","circle-stroke-color":U.default,"circle-stroke-width":3},B={"circle-radius":T.default-1.5,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":2},k={"circle-radius":T.large,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":3},R={"fill-color":"grey","fill-opacity":.4},D={"line-width":3,"line-color":"grey","line-opacity":.7},A={"circle-radius":T.default,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":3},_={"line-width":3,"line-color":"#FF6464","line-dasharray":[3,3]},q=n=>[{id:s.SinglePointLayer,source:d.SinglePointSource,type:"circle",paint:n.layersPaint.onLinePoint,layout:{visibility:"none"}},{id:s.PolygonLayer,source:d.UnifiedSource,type:"fill",paint:n.layersPaint.polygon,layout:{visibility:"none"},filter:["==","$type","Polygon"]},{id:s.LineDynamicLayer,source:d.LineDynamicSource,type:"line",paint:n.layersPaint.line,layout:{visibility:"none"}},{id:s.LineLayer,source:d.UnifiedSource,type:"line",paint:n.layersPaint.line,layout:{visibility:"visible"},filter:["==","$type","LineString"]},{id:s.LineLayerTransparent,source:d.UnifiedSource,type:"line",paint:{"line-width":4,"line-color":"transparent"},filter:["==","$type","LineString"]},{id:s.LineLayerBreak,source:d.LineSourceBreak,type:"line",paint:n.layersPaint.breakLine,layout:{visibility:"none"}},{id:s.PointsLayer,source:d.UnifiedSource,type:"circle",paint:n.layersPaint.points,filter:["all",["==","$type","Point"],["==","isFirst",!1],["==","isAuxiliary",!1]]},{id:s.FirstPointLayer,source:d.UnifiedSource,type:"circle",paint:n.layersPaint.firstPoint,filter:["==",["get","isFirst"],!0],layout:{visibility:"none"}},{id:s.AuxiliaryPointLayer,source:d.UnifiedSource,type:"circle",paint:n.layersPaint.auxiliaryPoint,filter:["==",["get","isAuxiliary"],!0]}];var m=class{static isFeatureTriggered(e,t){return e.target.queryRenderedFeatures(e.point,{layers:t}).some(o=>t.includes(o.layer.id))}static getPixelCoordinates=(e,t)=>{let{lat:i,lng:o}=t;return e.project([o,i])};static queryPointId=(e,t)=>e.queryRenderedFeatures(t,{layers:[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer,s.SinglePointLayer]})?.[0]?.properties.id;static queryPoint=(e,t)=>e.queryRenderedFeatures(t,{layers:[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer,s.SinglePointLayer]})?.[0]},b=class{static#e(e){let t=[],i=e.head,o=new Set;for(;i!==null;){if(o.has(i.val?.id)){e.head&&e.head.val&&t.push([e.head.val.lng,e.head.val.lat]);break}o.add(i.val?.id),i.val&&t.push([i.val.lng,i.val.lat]),i=i.next;}return t}static getLine(e,t){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:[e,t]}}]}}static getAllLines(e){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:e}}]}}static getPolygon(e){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"Polygon",coordinates:[e]}}]}}static getPoints(e){let t=e.head,i=[],o=new Set;for(;t!==null&&!o.has(t.val?.id);){if(t.val){let r=t.val,a=t.val.id===e.head?.val?.id;i.push({type:"Feature",properties:{id:r.id,lat:r.lat,lng:r.lng,isFirst:a,isAuxiliary:r.isAuxiliary},geometry:{type:"Point",coordinates:[r.lng,r.lat]}});}o.add(t.val?.id),t=t.next;}return {type:"FeatureCollection",features:i}}static getUnifiedFeatures(e){let t=this.getPoints(e).features,i=this.#e(e),o=this.getAllLines(i).features,r=this.getPolygon(i).features;return {type:"FeatureCollection",features:[...t,...o,...r]}}},u=class n{static getGeometryIndex=(e,t)=>{let i=e.head,o=0,r=new Set;for(;i!==null&&!r.has(i.val?.id);){if(i.val?.id===t)return o;r.add(i.val?.id),o++,i=i.next;}return -1};static distance=(e,t)=>Math.sqrt((e.x-t.x)**2+(e.y-t.y)**2);static checkIfPointIsOnLine=(e,t,i)=>{let r=this.distance(e,t),a=this.distance(e,i),l=this.distance(i,t);return Math.abs(a+l-r)<.1};static isClosedGeometry=(e,t)=>t.pointGeneration==="auto"?e.tail?.next?.val?.id===e.head?.val?.id&&e.tail?.next!==null:e.tail?.next===e.head;static breakGeometry=(e,t,i)=>{e.head&&(t.pointGeneration==="auto"?(i.val?.isAuxiliary?(e.head=i.next,e.head.prev=null,e.tail=i.prev,e.tail.next=null):(e.head=i.next?.next,e.head.prev=null,e.tail=i,e.tail.next=null),e.size=e.size-1):(e.head=i.next,e.head.prev=null,e.tail=i,e.tail.next=null));};static closeGeometry=(e,t)=>{e.tail&&e.head&&(e.tail.next=e.head,e.head.prev=e.tail),t.setClosedGeometry(!0);};static canCloseGeometry=(e,t)=>(t.pointGeneration==="auto"?e.size>3:e.size>2)&&!this.isClosedGeometry(e,t);static canBreakClosedGeometry=(e,t)=>t.pointGeneration==="auto"?e.size<=3:e.size<=2;static switchToLineModeIfCan=e=>{let{store:t,map:i,mode:o,options:r}=e,a=t.tail?.next===t.head;n.canBreakClosedGeometry(t,r)&&a&&(r.pointGeneration==="auto"?t.tail?.val?.isAuxiliary?(t.head&&(t.head.next=t.tail,t.head.prev=null),t.tail&&t.tail.prev&&t.head&&(t.tail=t.tail.prev,t.tail.prev=t.head.next,t.tail.next=null),t.head?.next&&(t.head.next.next=t.tail,t.head.next.prev=t.head)):(t.head&&(t.head.prev=null),t.tail&&t.head&&(t.tail.prev=t.head.next,t.tail.next=null)):t.tail&&(t.tail.next=null),o.reset());}},E=()=>{if("crypto"in window&&"randomUUID"in window.crypto)return window.crypto.randomUUID();function n(){return "0123456789abcdef"[Math.floor(Math.random()*16)]}function e(o){let r="";for(let a=0;a<o;a++)r+=n();return r}function t(o){let r=o===0,a=o===4;return r?8:a?12:4}let i=[];for(let o=0;o<5;o++)i.push(e(t(o)));return i.join("-")},S=(n,e)=>{let t,i=!0;function o(){i&&t&&(n(...t),t=null,i=!1,setTimeout(()=>{i=!0,o();},e));}return function(...r){t=r,o();}},C=(n,e)=>{let t;return function(...i){clearTimeout(t),t=window.setTimeout(()=>{n(...i);},e);}};var I=class{#e;#t;constructor(e){this.#e=e,this.#t=b.getUnifiedFeatures(this.#e.store),this.#o(),this.render();}#o(){this.#s(),this.#l(),this.#a(s.LineLayer,s.SinglePointLayer),this.#a(s.LineLayerTransparent,s.SinglePointLayer),this.#a(s.LineLayerTransparent,s.FirstPointLayer),this.#a(s.LineLayerTransparent,s.PointsLayer),this.#a(s.PolygonLayer,s.LineLayer),this.#i();}#i=()=>{let{store:e}=this.#e;e.addObserver(this.#n);};#r=()=>{let{store:e}=this.#e;e.removeObserver(this.#n);};#n=C(e=>{if(e.type==="STORE_MUTATED"||e.type==="STORE_DETACHED"){let{map:t,mode:i,options:o,store:r}=this.#e;i.getMode()==="polygon"&&u.isClosedGeometry(r,o)?t.setLayoutProperty(s.PolygonLayer,"visibility","visible"):t.setLayoutProperty(s.PolygonLayer,"visibility","none");}},10);#s=()=>{let{map:e}=this.#e;for(let t of Object.values(d))e.getSource(t)||e.addSource(t,{type:"geojson",data:{type:"FeatureCollection",features:[]},promoteId:"id"});};#l=()=>{let{map:e,options:t}=this.#e,i=q(t);for(let o of i)e.getLayer(o.id)||e.addLayer(o);};#a=(e,t)=>{let{map:i}=this.#e,o=i.getLayer(e),r=i.getLayer(t);o&&r&&i.moveLayer(e,t);};#p=()=>{let{map:e}=this.#e;for(let t of Object.values(d))e.getSource(t)&&e.removeSource(t);};#u=()=>{let{map:e}=this.#e;for(let t of Object.values(s))e.getLayer(t)&&e.removeLayer(t);};removeTiles=()=>{this.#u(),this.#p(),this.#r();};updateLine(e,t){let{mode:i}=this.#e,o=this.#t.features.at(-2)?.geometry.coordinates;o&&(o[e]=[t.lng,t.lat],i.getClosedGeometry()&&e===0&&(o[o.length-1]=[t.lng,t.lat]));}updatePolygon(e,t){let{mode:i}=this.#e,o=this.#t.features.at(-1)?.geometry.coordinates[0];o&&(o[e]=[t.lng,t.lat],i.getClosedGeometry()&&e===0&&(o[o.length-1]=[t.lng,t.lat]));}updatePoint(e,t){let i=this.#t?.features?.[e];i?.geometry?.coordinates&&(i.geometry.coordinates=[t.lng,t.lat]);}renderOnMouseMove=(e,t,i)=>{let{mode:o,options:r,store:a}=this.#e,l=e===0?a.size-1:e-1;this.updatePoint(e,t),i&&i.prev&&this.updatePoint(l,i.prev),i&&i.next&&this.updatePoint(e+1,i.next),this.updateLine(e,t),i&&i.prev&&this.updateLine(l,i.prev),i&&i.next&&this.updateLine(e+1,i.next),r.modes.polygon.visible&&o.isPolygon()&&(this.updatePolygon(e,t),i&&i.prev&&this.updatePolygon(l,i.prev),i&&i.next&&this.updatePolygon(e+1,i.next));let M=this.#e.map.getSource(d.UnifiedSource);M&&M.setData(this.#t);};render(){this.#t=b.getUnifiedFeatures(this.#e.store);let e=this.#e.map.getSource(d.UnifiedSource);e&&e.setData(this.#t);}resetGeometries=()=>{let e=this.#e.map.getSource(d.UnifiedSource);e&&e.setData({type:"FeatureCollection",features:[]});}};var Pe=8,Me=8,x=class{_container;_label;constructor(){this._container=void 0;}create=e=>{let t=p.create("div","popup-container",document.body),i=p.create("span",`popup-text popup-text-${e.placement}`,t);return i.textContent=e.label,this._container=t,this._label=i,this};#e=()=>{!this._label?.classList.value.includes("popup-text-active")&&this._label?.classList.add("popup-text-active");};#t=()=>this._label?{width:this._label.clientWidth,height:this._label.clientHeight}:{width:0,height:0};#o=e=>{let{bottom:t,left:i}=e.target.getBoundingClientRect(),{width:o,height:r}=this.#t();return {x:i-Me-o,y:t-r-2}};#i=e=>{let{bottom:t,left:i,right:o}=e.target.getBoundingClientRect(),{width:r}=this.#t();return {x:(o-i)/2+i-r/2,y:t+Pe}};getPosition=(e,t)=>t==="left"?this.#o(e):this.#i(e);setPosition=e=>{let{x:t,y:i}=e;this._container&&(this._container.style.left=`${t}px`,this._container.style.top=`${i}px`),this.#e();};remove=()=>{this._container&&p.remove(this._container);}};var f={AUTO:"auto",DEFAULT:"default",POINTER:"pointer",CROSSHAIR:"crosshair",MOVE:"move",HELP:"help",GRAB:"grab",GRABBING:"grabbing"};var z=(n,e)=>{for(let[t,i]of Object.entries(e))p.manageEventListener("add",n,t,i);},V=(n,e)=>{for(let[t,i]of Object.entries(e))p.manageEventListener("remove",n,t,i);},de=(n,e)=>{let t=e.locale.line,i=e.locale.polygon,o=e.locale.break;return {line:t,polygon:i,break:o}[n]};var y={DOUBLECLICK:"mdl:doubleclick",POINTENTER:"mdl:pointenter",POINTLEAVE:"mdl:pointleave",MOVEEND:"mdl:moveend",ADD:"mdl:add",UNDO:"mdl:undo",REMOVEALL:"mdl:removeall",SAVE:"mdl:save",BREAK:"mdl:break",MODECHANGED:"mdl:modechanged"},me=768,c={pointGeneration:"manual",panel:{size:"medium",buttons:{undo:{visible:!0},delete:{visible:!0},save:{visible:!0,clearOnSave:!0}}},modes:{initial:null,line:{visible:!0,closeGeometry:!0},polygon:{visible:!0},breakGeometry:{visible:!0}},layersPaint:{onLinePoint:k,firstPoint:w,points:A,line:D,polygon:R,breakLine:_},initial:null,dynamicLine:!0,locale:{save:"Save",delete:"Delete all",undo:"Undo",line:"Line",polygon:"Polygon",break:"Split",closeLine:"Close the line",createPolygon:"Create a polygon"}};var h=class{static addPoint(e,t,i){t.fire(y.ADD,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now(),mode:{geometry:i.getMode(),closedGeometry:i.getClosedGeometry()}});}static movePoint(e,t){t.fire(y.MOVEEND,{id:e.id,start_coordinates:{lat:e.start.lat,lng:e.start.lng},end_coordinates:{lat:e.end.lat,lng:e.end.lng},total:e.total,timestamp:Date.now()});}static pointDoubleClick(e,t){t.fire(y.DOUBLECLICK,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static enterPoint(e,t){t.fire(y.POINTENTER,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static leavePoint(e,t){t.fire(y.POINTLEAVE,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static undoPoint(e,t,i){t.fire(y.UNDO,{originalEvent:i,id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static modeChanged(e,t){e.fire(y.MODECHANGED,{mode:t});}static removeAllPoints(e,t){e.fire(y.REMOVEALL,{originalEvent:t});}static onSaveClick(e,t,i){let{map:o,mode:r}=e;o.fire(y.SAVE,{originalEvent:i,timestamp:Date.now(),steps:t,mode:{geometry:r.getMode(),closedGeometry:r.getClosedGeometry()}});}static onLineBreak(e){e.fire(y.BREAK);}};var Y=class{#e;constructor(e){this.#e=e,this.#t();}#t=()=>{this.#e.mode.addObserver(this.#a);};removeConsumers=()=>{this.#e.mode.removeObserver(this.#a);};#o=()=>{let{_line:e,_polygon:t,_break:i}=this.#e.control;e?.classList.remove("control-button-active"),t?.classList.remove("control-button-active"),i?.classList.remove("control-button-active");};#i=e=>{this.#o(),e.classList.add("control-button-active");};#r=e=>{let{data:t}=e,{_line:i,_polygon:o,_break:r}=this.#e.control,{mode:a}=this.#e;if(h.modeChanged(this.#e.map,t),!(!i||!o||!r)){switch(t){case"line":this.#i(i);break;case"polygon":this.#i(o);break;}t?a.getClosedGeometry()&&this.#s(r):this.#n(r);}};#n=e=>{e.setAttribute("disabled","true"),e.setAttribute("aria-disabled","true");};#s=e=>{e.removeAttribute("disabled"),e.removeAttribute("aria-disabled");};#l=e=>{let{data:t}=e,{_break:i,_line:o,_polygon:r}=this.#e.control,{mode:a}=this.#e;t?(i&&this.#s(i),a.getMode()==="polygon"&&o&&this.#n(o),a.getMode()==="line"&&r&&this.#n(r)):(i&&this.#n(i),a.getMode()==="polygon"&&o&&this.#s(o),a.getMode()==="line"&&r&&this.#s(r));};#a=e=>{let{type:t,data:i}=e;if(t==="MODE_CHANGED"&&this.#r(e),t==="CLOSED_GEOMETRY_CHANGED"&&this.#l(e),t==="BREAK_CHANGED"&&i){let{_break:o}=this.#e.control;this.#i(o),h.modeChanged(this.#e.map,"break");}}};var j=class{#e;#t;#o;constructor(e){this.#e=e,this.#o=new Y(e),this.#t=new x,this.#i();}#i(){let{control:e}=this.#e;if(e){let t={mouseenter:this.onButtonEnter,mouseleave:this.onButtonLeave};e._line&&z(e._line,{...t,click:this.onLineClick}),e._polygon&&z(e._polygon,{...t,click:this.onPolygonClick}),e._break&&z(e._break,{...t,click:this.onBreakClick});}}#r(){let{control:e}=this.#e;if(e){let t={mouseenter:this.onButtonEnter,mouseleave:this.onButtonLeave};e._line&&V(e._line,{...t,click:this.onLineClick}),e._polygon&&V(e._polygon,{...t,click:this.onPolygonClick}),e._break&&V(e._break,{...t,click:this.onBreakClick});}}remove(){this.#o.removeConsumers(),this.#r(),this.#t.remove();}onButtonEnter=e=>{let{options:t}=this.#e,i=e.target.getAttribute("data-type");if(i){let o=de(i,t),r="left";this.#t.create({label:o,placement:r}).setPosition(this.#t.getPosition(e,r));}};onButtonLeave=()=>{this.#t.remove();};#n=()=>{let{control:e}=this.#e;e._line?.classList.remove("control-button-active"),e._polygon?.classList.remove("control-button-active"),e._break?.classList.remove("control-button-active");};#s=()=>{let{map:e,mode:t}=this.#e;t.getMode()||e.fire("mode:initialize");};onLineClick=()=>{let{map:e,mode:t,tiles:i,control:o}=this.#e;this.#s(),this.#n(),t.getMode()==="line"&&!t.getBreak()?(t.setMode(null),e.fire("mode:remove"),i.resetGeometries()):(o._line?.classList.add("control-button-active"),t.setMode("line"),i.render());};onPolygonClick=()=>{let{map:e,mode:t,tiles:i,control:o}=this.#e;this.#s(),this.#n(),t.getMode()==="polygon"&&!t.getBreak()?(t.setMode(null),e.fire("mode:remove"),i.resetGeometries()):(o._polygon?.classList.add("control-button-active"),t.setMode("polygon"),i.render());};onBreakClick=()=>{let{map:e,mode:t,control:i}=this.#e;t.getBreak()&&(t.setMode(null),e.fire("mode:remove")),this.#n(),i._break?.classList.add("control-button-active"),t.setBreak(!0),e.getCanvasContainer().style.cursor=f.POINTER;}};var v={getMidpoint(n,e){return {lat:(n.lat+e.lat)/2,lng:(n.lng+e.lng)/2}},createAuxiliaryPoint(n,e){let t=v.getMidpoint(n,e);return {lat:t.lat,lng:t.lng,isAuxiliary:!0,id:E()}},addPointToMap(n,e){let{store:t}=e,i={...n.lngLat,isAuxiliary:!1,id:E()};return t.push(i),i}},g={setFirstPointVisible(n){n.setLayoutProperty(s.FirstPointLayer,"visibility","visible");},setFirstPointHidden(n){n.setLayoutProperty(s.FirstPointLayer,"visibility","none");},setSinglePointVisible(n){n.target.setLayoutProperty(s.SinglePointLayer,"visibility","visible");},setSinglePointHidden(n){let e=n.target;setTimeout(()=>{e.setLayoutProperty(s.SinglePointLayer,"visibility","none");},33);}},ae={default(n){n.setFilter(s.PointsLayer,["all",["==","$type","Point"],["==","isFirst",!1],["==","isAuxiliary",!1]]);},closedGeometry(n){n.setFilter(s.PointsLayer,["all",["==","$type","Point"],["==","isAuxiliary",!1]]);}};var O=class{observers;constructor(){this.observers=new Set;}addObserver(e){this.observers.add(e);}removeObserver(e){this.observers.delete(e);}unsubscribe(){this.observers.clear();}notify(e){this.observers.forEach(t=>t(e));}};var N={EMPTY_INITIAL_STATE:"You passed an empty initial array in the options. Please either remove the 'initial' property or include at least one element in the array.",MISSING_IDS:"You set 'generateId' to false but did not provide IDs for all steps. Please ensure all steps have IDs or set 'generateId' to true.",NOT_ENOUGH_POINTS_TO_CLOSE:"At least three points are required to close a polygon or a line. Please add more points or set 'closeGeometry' to false.",FIRST_LAST_POINT_NOT_EQUAL:"The first and last points of a polygon or a closed linestring must be the same. Please ensure the first and last points are equal or set 'closeGeometry' to false."};var J=class{val;prev;next;constructor(e=null,t=null,i=null){this.val=e,this.prev=i,this.next=t;}},G=class extends O{head;tail;size;map;constructor(e){super();let t=P.initStore(e);this.map=t?t.map:new Map,this.head=t?t.head:null,this.tail=t?t.tail:null,this.size=t?t.size:0;}push(e){let t=new J(e);this.head?this.tail&&(t.prev=this.tail,this.tail.next=t,this.tail=t):this.head=this.tail=t,this.map.set(e.id,t),this.size++,this.pingConsumers();}insert(e,t){if(!t)return;let i=new J(e);i.prev=t,i.next=t.next,this.tail===t&&this.head===t.next&&(this.tail=i),t.next&&(t.next.prev=i),t.next=i,this.map.set(e.id,i),this.size++,this.pingConsumers();}findStepById(e){let t=this.map.get(e);return t?t.val:null}findNodeById(e){let t=this.map.get(e);return t||null}removeNodeById(e){let t=this.map.get(e);return t?(this.size===1?(this.head=null,this.tail=null):(t.prev&&(t.prev.next=t.next),t.next&&(t.next.prev=t.prev),t===this.head&&(this.head=t.next,this.head?.prev&&this.tail&&(this.tail.next=this.head)),t===this.tail&&(this.tail=t.prev,this.head&&this.tail?.next&&(this.head.prev=this.tail))),this.map.delete(e),this.size--,this.pingConsumers(),t):null}reset(){this.head=null,this.tail=null,this.size=0,this.map.clear(),this.pingConsumers();}pingConsumers=()=>{this.notify({type:"STORE_MUTATED",data:{head:this.head,tail:this.tail,size:this.size}});}},P=class n{static isLastPoint=(e,t,i)=>t.pointGeneration==="auto"&&e.tail?.next===e.head?e.tail?.prev?.val?.id===i:e.tail?.val?.id===i;static initStore(e){if(!e?.initial)return null;if(e&&e.initial&&!e.initial.steps.length)throw new Error(N.EMPTY_INITIAL_STATE);return e&&e.initial.steps?n.fromArray(e.initial,e.pointGeneration):null}static#e=e=>e.map((t,i)=>({...t,isAuxiliary:!1,isFirst:i===0,id:E()}));static buildStepSequence(e,t,i){let o=new G,r=t?e.slice(0,-1):e;return r.forEach((a,l)=>{if(o.push(a),i==="auto"){if(r[l+1]){let M=v.createAuxiliaryPoint(a,r[l+1]);o.push(M);}else if(t){let M=v.createAuxiliaryPoint(a,r[0]);o.push(M);}}}),o}static fromArray(e,t){let{steps:i,closeGeometry:o,generateId:r}=e,a=r?this.#e(i):i,l=this.buildStepSequence(a,o,t);return o&&l.tail&&l.head&&(l.tail.next=l.head,l.head.prev=l.tail),l}static toArray(e){if(!e)return [];let t=new Set,i=[],o=e;for(;o!==null&&!t.has(o);)t.add(o),i.push(o.val),o=o.next;return i}};var K=class{#e;#t;constructor(e){this.#e=e,this.#t=new x;}initConsumers(){this.#e.store.addObserver(this.#o),this.#e.mode?.addObserver(this.#i);}removeConsumers(){this.#e.store.removeObserver(this.#o),this.#e.mode?.removeObserver(this.#i);}#o=e=>{if(e.type==="STORE_MUTATED"){let{data:t}=e;if(t.size===0)this.#e.panel.hidePanel();else {let i=Object.assign({},t);for(;i.tail;)if(i.tail?.val?.isAuxiliary)i.tail=i.tail?.prev;else {i.tail?.val&&this.#e.panel.setPanelLocation({lat:i.tail.val.lat,lng:i.tail.val.lng});break}}}};#i=e=>{let{store:t}=this.#e,{type:i,data:o}=e;i==="MODE_CHANGED"&&!o&&this.#e.panel.hidePanel(),i==="MODE_CHANGED"&&o&&t.tail?.val&&this.#e.panel.setPanelLocation({lat:t.tail?.val?.lat,lng:t.tail?.val?.lng});};initEvents(){let{panel:e}=this.#e;e._undoButton&&(p.manageEventListener("add",e._undoButton,"click",this.#l),p.manageEventListener("add",e._undoButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._undoButton,"mouseleave",this.onMouseLeave)),e._deleteButton&&(p.manageEventListener("add",e._deleteButton,"click",this.#n),p.manageEventListener("add",e._deleteButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._deleteButton,"mouseleave",this.onMouseLeave)),e._saveButton&&(p.manageEventListener("add",e._saveButton,"click",this.onSaveClick),p.manageEventListener("add",e._saveButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._saveButton,"mouseleave",this.onMouseLeave));}removeEvents(){let{panel:e}=this.#e;e._undoButton&&(p.manageEventListener("remove",e._undoButton,"click",this.#l),p.manageEventListener("remove",e._undoButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._undoButton,"mouseleave",this.onMouseLeave)),e._deleteButton&&(p.manageEventListener("remove",e._deleteButton,"click",this.#n),p.manageEventListener("remove",e._deleteButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._deleteButton,"mouseleave",this.onMouseLeave)),e._saveButton&&(p.manageEventListener("remove",e._saveButton,"click",this.onSaveClick),p.manageEventListener("remove",e._saveButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._saveButton,"mouseleave",this.onMouseLeave));}#r=e=>{let{options:t}=this.#e;return {undo:t.locale.undo,delete:t.locale.delete,save:t.locale.save}[e]};onMouseEnter=e=>{let t=e.target.getAttribute("data-type");if(t){let i=this.#r(t);this.#t.create({label:i,placement:"bottom"}).setPosition(this.#t.getPosition(e,"bottom"));}};onMouseLeave=()=>{this.#t.remove();};#n=e=>{let{tiles:t,mode:i,panel:o,store:r,map:a}=this.#e;r.reset(),o.hidePanel(),i.reset(),this.#t.remove(),t.resetGeometries(),h.removeAllPoints(a,e);};#s=()=>{let{store:e,options:t}=this.#e;if(e.removeNodeById(e.tail?.val?.id),t.pointGeneration==="auto"&&(e.removeNodeById(e.tail?.val?.id),e.tail?.val?.isAuxiliary)){if(e.removeNodeById(e.tail?.val?.id),!u.canBreakClosedGeometry(e,t)){let i=v.createAuxiliaryPoint(e.tail.val,e.head?.val);e.push(i);}e.tail.next=e.head;}};#l=e=>{let{store:t,map:i,tiles:o,options:r}=this.#e;t.size==1&&t.reset(),this.#s(),u.switchToLineModeIfCan(this.#e),this.#t.remove();let a={...t.tail?.val,total:t.size};h.undoPoint(a,i,e),o.render();};onSaveClick=e=>{let{store:t,options:i}=this.#e;h.onSaveClick(this.#e,P.toArray(t.head),e),this.#t.remove(),i.panel.buttons.save.clearOnSave&&this.#n(e);}};var le=(n,e)=>{let t=e.head,i=new Set;for(;t!==null&&!i.has(t);){if(t?.next?.val&&t?.val){let o=n.target,r=m.getPixelCoordinates(o,t.val),a=m.getPixelCoordinates(o,t.next.val),l=m.getPixelCoordinates(o,n.lngLat);if(u.checkIfPointIsOnLine(r,a,l))return t}i.add(t),t=t.next;}return null},he=(n,e)=>{let t=le(n,e);if(t){let i={...n.lngLat,isAuxiliary:!1,id:E()};return e.insert(i,t),i}return null},ye=(n,e)=>{let{store:t,tiles:i}=e;t.tail?.val&&(g.setSinglePointHidden(n),i.render());},ve=n=>m.isFeatureTriggered(n,[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer]);var fe=15,$=class{props;#e;#t;constructor(e){this.props=e,this.#e=null,this.#t=S(this.#n,fe);}initBreakEvents=()=>{let{map:e}=this.props;e.on("click",s.LineLayerTransparent,this.#o),e.on("mouseenter",s.LineLayerTransparent,this.#t),e.on("mousemove",s.LineLayerTransparent,this.#t),e.on("mouseleave",s.LineLayerTransparent,this.#s);};removeBreakEvents=()=>{let{map:e}=this.props;e.off("click",s.LineLayerTransparent,this.#o),e.off("mouseenter",s.LineLayerTransparent,this.#t),e.off("mousemove",s.LineLayerTransparent,this.#t),e.off("mouseleave",s.LineLayerTransparent,this.#s);};hideBreakLine=()=>{let{map:e}=this.props;e.getLayoutProperty(s.LineLayerBreak,"visibility")!=="none"&&e.setLayoutProperty(s.LineLayerBreak,"visibility","none");};showBreakLine=()=>{let{map:e}=this.props;e.getLayoutProperty(s.LineLayerBreak,"visibility")!=="visible"&&e.setLayoutProperty(s.LineLayerBreak,"visibility","visible");};#o=()=>{let{store:e,mode:t,map:i,tiles:o,options:r}=this.props;this.#e&&(u.breakGeometry(e,r,this.#e),this.#s(),t.reset(),o.render(),e.notify({type:"STORE_DETACHED",data:null}),h.onLineBreak(i));};#i=e=>{let t=null,i=null;return e?.val?.isAuxiliary?(t=[e?.prev?.val?.lng,e?.prev?.val?.lat],i=[e?.next?.val?.lng,e?.next?.val?.lat]):(t=[e?.val?.lng,e?.val?.lat],i=[e?.next?.next?.val?.lng,e?.next?.next?.val?.lat]),{current:t,next:i}};#r=e=>{let{options:t}=this.props;if(t.pointGeneration==="manual"){let i=[e?.val?.lng,e?.val?.lat],o=[e?.next?.val?.lng,e?.next?.val?.lat];return {current:i,next:o}}return this.#i(e)};#n=e=>{let{map:t,store:i}=this.props,o=le(e,i);o?.val?.id!==this.#e?.val?.id&&(this.#e=o);let r=t.getSource(d.LineSourceBreak),{current:a,next:l}=this.#r(this.#e),L=b.getLine(a,l);L&&(r.setData(L),this.showBreakLine());};#s=()=>{setTimeout(()=>{this.hideBreakLine();},fe+10);}};var be=10,Z=class{#e;#t;#o;#i;#r;#n;#s;constructor(e){this.#e=e,this.#t=e.options.dynamicLine,this.#o=null,this.#i=null,this.#l(),this.#n=S(this.#h,be),this.#s=C(this.#p,10);}#l(){this.#e.store.addObserver(this.#u),this.#e.mode.addObserver(this.#c),this.#e.mouseEvents.addObserver(this.#a);}removeLine=()=>{this.hideDynamicLine();};removeConsumers=()=>{this.#e.store.removeObserver(this.#u),this.#e.mode.removeObserver(this.#c),this.#e.mouseEvents.removeObserver(this.#a);};#a=e=>{let{mode:t}=this.#e;if(!t.getClosedGeometry()&&(e.type==="lastPointMouseClick"&&e.data?(this.hideDynamicLine(),this.#t=!1):e.type==="lastPointMouseClick"&&!e.data&&(this.#t=!0),!!this.#t&&((e.type==="pointMouseEnter"||e.type==="lineMouseEnter")&&e.data&&this.hideDynamicLine(),(e.type==="pointMouseLeave"||e.type==="lineMouseLeave")&&e.data))){let{store:i}=this.#e;this.#o=i.tail?.val,this.#i=i.tail?.val,this.showDynamicLine();}};#p=e=>{let{store:t,options:i}=this.#e;e?.tail?.val&&!u.isClosedGeometry(t,i)&&(this.#o=t.tail?.val,this.showDynamicLine());};#u=e=>{e.type==="STORE_MUTATED"&&(this.#s(e.data),e.data.size||this.hideDynamicLine());};#c=e=>{let{store:t}=this.#e,i=e.data;e.type==="CLOSED_GEOMETRY_CHANGED"&&(i&&this.hideDynamicLine(),!i&&t?.tail?.val&&(this.#o=t?.tail?.val,this.showDynamicLine()));};initDynamicEvents=()=>{let{map:e}=this.#e;e.on("click",this.#y),e.on("mousemove",this.#n),e.on(y.REMOVEALL,this.hideDynamicLine),e.on(y.UNDO,this.#m),e.on(y.DOUBLECLICK,this.#f);};removeEvents=()=>{let{map:e}=this.#e;e.off("click",this.#y),e.off("mousemove",this.#n),e.off(y.REMOVEALL,this.hideDynamicLine),e.off(y.UNDO,this.#m),e.off(y.DOUBLECLICK,this.#f);};hideDynamicLine=()=>{let{map:e}=this.#e;this.#o=null,this.#i=null,this.#r=null,e.off("mousemove",this.#n);let t=e.getSource(d.LineDynamicSource);t&&t.setData(ce),e.setLayoutProperty(s.LineDynamicLayer,"visibility","none");};showDynamicLine=()=>{let{map:e,store:t}=this.#e;if(t.size){let i=[this.#o?.lng,this.#o?.lat],o=[this.#i?.lng,this.#i?.lat];this.#r=b.getLine(i,o),e.setLayoutProperty(s.LineDynamicLayer,"visibility","visible"),this.#i&&this.#d({lng:this.#i?.lng,lat:this.#i?.lat});}e.on("mousemove",this.#n);};#d=e=>{if(!this.#r)return;let{map:t}=this.#e;this.#r.features[0].geometry.coordinates[1]=[e.lng,e.lat];let i=t.getSource(d.LineDynamicSource);i&&i.setData(this.#r);};#h=e=>{this.#d(e.lngLat);};#y=e=>{let{mode:t}=this.#e,i=m.isFeatureTriggered(e,[s.LineLayerTransparent,s.LineLayer]);i&&t.getBreak()&&(this.#i={lng:e.lngLat.lng,lat:e.lngLat.lat}),!i&&this.hideDynamicLine();};#m=e=>{let{store:t,options:i}=this.#e;if(!u.isClosedGeometry(t,i)){let o=e.target.unproject({x:e.originalEvent.x,y:e.originalEvent.y});this.#i={lng:o.lng,lat:o.lat},this.#o=t.tail?.val,this.showDynamicLine();}t.size===0&&this.hideDynamicLine();};#f=e=>{let{store:t,mode:i,options:o}=this.#e;i.getClosedGeometry()||(this.#i={lng:e.coordinates.lng,lat:e.coordinates.lat},this.#o=t.tail?.val,this.showDynamicLine()),t.size===0&&this.hideDynamicLine();}};var Ce=22,W=class{props;#e;#t;constructor(e){this.props=e,this.#e=!1,this.#t=null;}initEvents(){let{map:e}=this.props;e.on("click",s.LineLayerTransparent,this.#o),e.on("mousemove",s.LineLayerTransparent,this.#r),e.on("mouseenter",s.LineLayerTransparent,this.#n),e.on("mouseleave",s.LineLayerTransparent,this.#s);}removeEvents(){let{map:e}=this.props;e.off("click",s.LineLayerTransparent,this.#o),e.off("mousemove",s.LineLayerTransparent,this.#r),e.off("mouseenter",s.LineLayerTransparent,this.#n),e.off("mouseleave",s.LineLayerTransparent,this.#s);}#o=e=>{let{store:t,map:i,mode:o}=this.props;if(ve(e))return;let r=he(e,t);r&&(ye(e,this.props),h.addPoint({...r,total:t.size},i,o));};#i=e=>{if(g.setSinglePointVisible(e),e.target.getLayer(s.SinglePointLayer)){let i=e.target.getSource(d.SinglePointSource);i&&i.setData({type:"Feature",geometry:{type:"Point",coordinates:[e.lngLat.lng,e.lngLat.lat]},properties:{}});}};#r=S(e=>{if(m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer]))return;let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||(this.#t=e,!this.#e&&(this.#e=!0,requestAnimationFrame(()=>{this.#t&&(this.#i(this.#t),this.#e=!1);})));},Ce);#n=e=>{let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer])||(t.lineMouseEnter=!0,g.setSinglePointVisible(e));};#s=e=>{let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||(t.lineMouseLeave=!0,g.setSinglePointHidden(e));}};var X=class{props;#e;#t;#o;#i;constructor(e){this.props=e,this.#e=new $(e),this.#t=e.options.pointGeneration==="manual"?new W(e):null,this.#o=null,this.#i="default";}init(){this.#r(),this.#n(),this.#s();}#r=()=>{window.innerWidth<=me||this.props.options.dynamicLine&&(this.#o=new Z(this.props));};#n(){!this.props.mode.getBreak()&&(this.#t?.initEvents(),this.props.options.dynamicLine&&this.#o?.initDynamicEvents());}#s(){this.props.mode.addObserver(this.#u),this.props.mouseEvents.addObserver(this.#p);}remove(){this.#l(),this.#a();}#l(){this.props.mode.removeObserver(this.#u),this.props.mouseEvents.removeObserver(this.#p),this.props.options.dynamicLine&&this.#o?.removeConsumers();}#a(){this.#e.removeBreakEvents(),this.#t?.removeEvents(),this.props.options.dynamicLine&&(this.#o?.removeEvents(),this.#o?.removeLine());}#p=e=>{let{type:t,data:i}=e,{mode:o}=this.props;if(!(!i||!o.getBreak()))switch(t){case"pointMouseDown":this.#e.removeBreakEvents(),this.#e.hideBreakLine();break;case"pointMouseUp":this.#e.initBreakEvents();break;}};#u=e=>{let{type:t,data:i}=e;t==="MODE_CHANGED"&&this.#i==="break"&&(this.#e.removeBreakEvents(),this.#t?.initEvents(),this.#i="default"),t==="BREAK_CHANGED"&&i&&this.#i==="default"&&(this.#t?.removeEvents(),this.#e.initBreakEvents(),this.#i="break");}};var Se=n=>{n.setPaintProperty(s.FirstPointLayer,"circle-radius",T.large),n.setPaintProperty(s.FirstPointLayer,"circle-stroke-color",U.large);},xe=n=>{n.setPaintProperty(s.FirstPointLayer,"circle-radius",T.default),n.setPaintProperty(s.FirstPointLayer,"circle-stroke-color",U.default);},pe=(n,e)=>{e==="large"?Se(n):xe(n);},Le=n=>{n.getLayer(s.LineLayerTransparent)&&n.removeLayer(s.LineLayerTransparent);},Ee=(n,e)=>{if(n.getLayer(s.LineLayerTransparent))return;let i=q(e).find(o=>o.id===s.LineLayerTransparent);i&&n.addLayer(i);};var Q=class{#e;#t;#o;#i;constructor(e,t){this.#t=e,this.#e=!1,this.#i=t,this.#o=new x,this.initLayer();}#r=()=>{let{mode:e,store:t}=this.#t;e.addObserver(this.#a),t.addObserver(this.#p);};#n=()=>{let{mode:e,store:t}=this.#t;e.removeObserver(this.#a),t.removeObserver(this.#p);};initLayer(){let{map:e}=this.#t;e.setLayoutProperty(s.FirstPointLayer,"visibility","visible");}#s=()=>{let{map:e}=this.#t;e.on("mouseenter",s.FirstPointLayer,this.#i.onPointMouseEnter),e.on("mouseleave",s.FirstPointLayer,this.#i.onPointMouseLeave),e.on("mousedown",s.FirstPointLayer,this.#i.onPointMouseDown),e.on("mouseup",s.FirstPointLayer,this.#i.onPointMouseUp),e.on("touchend",s.FirstPointLayer,this.#i.onPointMouseUp),e.on("touchstart",s.FirstPointLayer,this.#i.onPointMouseDown);};initEvents(){let{map:e}=this.#t;e.on("click",s.FirstPointLayer,this.#u),e.on("mouseenter",s.FirstPointLayer,this.#m),e.on("mouseleave",s.FirstPointLayer,this.#h),e.on("mouseup",s.FirstPointLayer,this.#d),e.on("mousedown",s.FirstPointLayer,this.#c),this.#s(),this.#r();}#l=()=>{let{map:e}=this.#t;e.off("mouseenter",s.FirstPointLayer,this.#i.onPointMouseEnter),e.off("mouseleave",s.FirstPointLayer,this.#i.onPointMouseLeave),e.off("mousedown",s.FirstPointLayer,this.#i.onPointMouseDown),e.off("mouseup",s.FirstPointLayer,this.#i.onPointMouseUp),e.off("touchend",s.FirstPointLayer,this.#i.onPointMouseUp),e.off("touchstart",s.FirstPointLayer,this.#i.onPointMouseDown);};removeEvents(){let{map:e}=this.#t;e.off("click",s.FirstPointLayer,this.#u),e.off("mouseenter",s.FirstPointLayer,this.#m),e.off("mouseleave",s.FirstPointLayer,this.#h),e.off("mouseup",s.FirstPointLayer,this.#d),this.#l(),this.#n();}#a=e=>{let{map:t,options:i}=this.#t,{type:o,data:r}=e;o==="MODE_CHANGED"&&(r==="line"&&!i.modes.line.closeGeometry?(g.setFirstPointHidden(t),ae.closedGeometry(t)):(g.setFirstPointVisible(t),ae.default(t)));};#p=C(e=>{let{map:t,store:i,options:o}=this.#t,{type:r}=e;(r==="STORE_MUTATED"||r==="STORE_DETACHED")&&(u.canCloseGeometry(i,o)?pe(t,"large"):pe(t,"default"));},10);#u=()=>{let{store:e,map:t,mode:i,tiles:o,options:r}=this.#t;if(u.canCloseGeometry(e,r)){let a=Object.assign({},e.head?.val,{id:E(),total:e.size});if(r.pointGeneration==="auto"&&e.tail?.val){let l=v.createAuxiliaryPoint(e.tail?.val,a);e.push(l);}u.closeGeometry(e,i),h.addPoint(a,t,i),o.render();}};#c=()=>{this.#e=!0,this.#o.remove();};#d=()=>{this.#e=!1;};#h=()=>{let{mouseEvents:e}=this.#t;this.#e||(e.firstPointMouseLeave=!0,this.#o.remove());};#y=()=>{let{mode:e,options:t}=this.#t;return e.getMode()==="line"&&t.modes.line.closeGeometry?t.locale.closeLine:e.getMode()==="polygon"?t.locale.createPolygon:""};#m=e=>{let{mode:t,mouseEvents:i,store:o,options:r}=this.#t;if(i.firstPointMouseEnter=!0,!(t.getClosedGeometry()||this.#e)&&u.canCloseGeometry(o,r)){let{x:a,y:l}=e.originalEvent;if(a&&l){this.#o.create({label:this.#y(),placement:"bottom"});let M=this.#o._label?this.#o._label.clientWidth/2:0;this.#o.setPosition({x:a-M,y:l+14});}}}};var ee=class{#e;#t;constructor(e,t){this.#e=e,this.#t=t,this.#r();}#o=()=>{let{map:e}=this.#e;e.on("mouseenter",s.AuxiliaryPointLayer,this.#t.onPointMouseEnter),e.on("mouseleave",s.AuxiliaryPointLayer,this.#t.onPointMouseLeave),e.on("mousedown",s.AuxiliaryPointLayer,this.#t.onPointMouseDown),e.on("mouseup",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.on("touchend",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.on("touchstart",s.AuxiliaryPointLayer,this.#t.onPointMouseDown);};#i=()=>{let{map:e}=this.#e;e.off("mouseenter",s.AuxiliaryPointLayer,this.#t.onPointMouseEnter),e.off("mouseleave",s.AuxiliaryPointLayer,this.#t.onPointMouseLeave),e.off("mousedown",s.AuxiliaryPointLayer,this.#t.onPointMouseDown),e.off("mouseup",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.off("touchend",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.off("touchstart",s.AuxiliaryPointLayer,this.#t.onPointMouseDown);};#r(){let{map:e}=this.#e;e.on("mousedown",s.AuxiliaryPointLayer,this.#l),e.on("touchstart",s.AuxiliaryPointLayer,this.#l),e.on("mousedown",s.PointsLayer,this.#s),e.on("touchstart",s.PointsLayer,this.#s),this.#o();}removeEvents(){let{map:e}=this.#e;e.off("mousedown",s.AuxiliaryPointLayer,this.#l),e.off("touchstart",s.AuxiliaryPointLayer,this.#l),e.off("mousedown",s.PointsLayer,this.#s),e.off("touchstart",s.PointsLayer,this.#s),this.#i();}#n=e=>{if(!e)return;let{store:t}=this.#e,i=e.next,o=e.prev;if(o){let r=v.createAuxiliaryPoint(o.val,e.val);t.insert(r,o);}if(i){let r=v.createAuxiliaryPoint(e.val,i.val);t.insert(r,e);}};#s=e=>{e.preventDefault();};#l=e=>{let{store:t,tiles:i,map:o}=this.#e;if(e.originalEvent.button===2)return;let r=m.queryPointId(o,e.point),a=t.findNodeById(r);a&&a.val&&(a.val.isAuxiliary=!1,this.#n(a)),i.render();}};var te=class{#e;#t;#o;#i;#r;#n;#s;#l;#a;#p;constructor(e){this.#e=e,this.#t=null,this.#o=null,this.#i=null,this.#r=null,this.#p={onPointMouseEnter:this.#g,onPointMouseLeave:this.#P,onPointMouseDown:this.#E,onPointMouseUp:this.#L,onMapMouseMove:this.#v},this.#n=new Q(this.#e,this.#p),this.#s=new ee(this.#e,this.#p),this.#l=!1,this.#a=null;}#u=()=>{this.#e.mode.addObserver(this.#S),this.#e.store.addObserver(this.#C);};#c=()=>{this.#e.mode.removeObserver(this.#S),this.#e.store.removeObserver(this.#C);};initEvents=()=>{let{map:e}=this.#e;e.on("click",this.#f),e.on("dblclick",this.#d),e.on("mouseenter",s.PointsLayer,this.#g),e.on("mouseleave",s.PointsLayer,this.#P),e.on("mousedown",s.PointsLayer,this.#E),e.on("mouseup",s.PointsLayer,this.#L),e.on("touchend",s.PointsLayer,this.#L),e.on("touchstart",s.PointsLayer,this.#E),this.#n?.initEvents(),this.#u();};removeEvents=()=>{let{map:e}=this.#e;e.off("click",this.#f),e.off("dblclick",this.#d),e.off("mousemove",this.#v),e.off("mouseenter",s.PointsLayer,this.#g),e.off("mouseleave",s.PointsLayer,this.#P),e.off("mousedown",s.PointsLayer,this.#E),e.off("mouseup",s.PointsLayer,this.#L),this.#n?.removeEvents(),this.#s?.removeEvents(),this.#c();};#d=e=>{e.preventDefault();};#h=e=>{let{store:t}=this.#e,i=e?.next,o=e?.prev,r=e?.next?.next,a=e?.prev?.prev;i&&t.removeNodeById(i?.val?.id),o&&t.removeNodeById(o?.val?.id);let l=t.size!==3;if(r&&a&&l){let L=v.createAuxiliaryPoint(r.val,a.val);t.insert(L,a);}};#y=e=>{let{store:t,tiles:i,options:o,mouseEvents:r}=this.#e;if(t.size===1)t.reset();else {let a=m.queryPointId(this.#e.map,e.point),l=t.findNodeById(a);!l?.val?.isAuxiliary&&(t.removeNodeById(a),o.pointGeneration==="auto"&&this.#h(l),u.switchToLineModeIfCan(this.#e),h.pointDoubleClick({...l?.val,total:t.size},this.#e.map),P.isLastPoint(t,o,a)&&(r.lastPointMouseClick=!0,r.lastPointMouseUp=!1));}i.render();};#m=e=>m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer,s.LineLayerTransparent,s.LineLayerBreak]);#f=e=>{let{mode:t,mouseEvents:i,map:o,options:r,store:a,tiles:l}=this.#e;if(t.getClosedGeometry()||this.#m(e))return;i.lastPointMouseClick&&(i.lastPointMouseClick=!1),o.getCanvasContainer().style.cursor="grab";let L={...e.lngLat,id:E()};if(r.pointGeneration==="auto"&&a?.tail?.val&&a.size>=1){let ge=v.createAuxiliaryPoint(a.tail.val,L);a.push(ge);}let M=v.addPointToMap(e,this.#e);h.addPoint({...M,total:a.size},o,t),g.setSinglePointHidden(e),l.render();};#x=e=>{if(e.originalEvent.buttons===0){this.#e;this.#L();}};#M=e=>{if(!this.#i)return null;let{options:t}=this.#e,i=this.#i?.prev?.prev,o=this.#i?.next?.next;return t.pointGeneration==="auto"?{next:o?v.getMidpoint(o?.val,e.lngLat):null,prev:i?v.getMidpoint(e.lngLat,i?.val):null}:null};#v=S(e=>{let{mouseEvents:t}=this.#e;t.pointMouseDown&&(this.#a=e,requestAnimationFrame(()=>{if(!this.#i||!this.#a)return;let{tiles:i}=this.#e;this.#x(this.#a);let o=this.#M(this.#a);i.renderOnMouseMove(this.#r,e.lngLat,o);}));},17);#g=e=>{let{mouseEvents:t,map:i,store:o,options:r}=this.#e;if(t&&(t.pointMouseEnter=!0,t.pointMouseDown))return;g.setSinglePointHidden(e);let a=m.queryPointId(i,e.point);P.isLastPoint(o,r,a)&&(t.lastPointMouseEnter=!0,t.lastPointMouseLeave=!1);let l=o.findStepById(a);l&&(this.#o=l,h.enterPoint(Object.assign({},l,{total:o.size}),i));};#P=e=>{let{mouseEvents:t,store:i,map:o,options:r}=this.#e;if(t&&(t.pointMouseEnter=!1,e.originalEvent.buttons===0&&(t.pointMouseLeave=!0),t.pointMouseDown))return;let a=m.queryPointId(o,e.point);P.isLastPoint(i,r,a)&&(t.lastPointMouseEnter=!1,t.lastPointMouseLeave=!0),h.leavePoint(Object.assign({},this.#o,{total:i.size}),o);};#b=()=>{this.#i=null,this.#r=null,this.#a=null,this.#t=null,this.#o=null,this.#l=!1;};#C=e=>{e.type==="STORE_MUTATED"&&e.data.size===0&&this.#b();};#S=e=>{(e.type==="BREAK_CHANGED"||e.type==="MODE_CHANGED")&&this.#b();};#O=()=>{let{store:e,panel:t,options:i}=this.#e;!this.#i||!this.#i.val||P.isLastPoint(e,i,this.#i.val.id)&&t.hidePanel();};#T=e=>{let{store:t,map:i}=this.#e,o=m.queryPointId(i,e.point),r=t.findNodeById(o);r&&(this.#i=r);};#E=e=>{this.#a=null;let{mouseEvents:t,map:i,store:o}=this.#e;if(e.originalEvent.button===2){this.#y(e);return}this.#T(e),e.preventDefault(),Le(i),this.#O();let r=m.queryPoint(i,e.point);this.#r=u.getGeometryIndex(o,r?.properties.id),t&&(t.pointMouseDown=!0),this.#t=e.lngLat,i.on("mousemove",this.#v),i.on("touchmove",this.#v);};#w=()=>{if(this.#a&&this.#i&&this.#i.val){this.#i.val.lat=this.#a?.lngLat.lat,this.#i.val.lng=this.#a.lngLat.lng;let e=this.#M(this.#a);e&&(this.#i.prev?.val&&e.prev&&(this.#i.prev.val.lat=e.prev.lat,this.#i.prev.val.lng=e.prev.lng),this.#i.next?.val&&e.next&&(this.#i.next.val.lat=e.next.lat,this.#i.next.val.lng=e.next.lng));}};#L=()=>{let{mouseEvents:e,store:t,panel:i,map:o,options:r}=this.#e;o.off("mousemove",this.#v),o.off("touchmove",this.#v),e.pointMouseUp=!0,this.#i&&this.#i.val&&(this.#a&&(this.#w(),this.#a=null),t.notify({type:"STORE_MUTATED",data:t}),i?.showPanel(),h.movePoint({id:this.#i.val.id,total:t.size,end:{lat:this.#i.val.lat,lng:this.#i.val.lng},start:this.#t},o),this.#r=null,this.#i=null),e&&(e.pointMouseDown=!1),Ee(o,r);}};var ie=class extends I{#e;#t;#o;#i;#r;constructor(e){super({...e}),this.#e=e,this.#t=new K(e),this.#o=new j(e),this.#i=new te(e),this.#r=new X(e),e.map.on("mode:initialize",this.#n),e.map.on("mode:remove",this.#s);}#n=()=>{this.#r.init(),this.#t?.initEvents(),this.#t?.initConsumers(),this.#i?.initEvents();};#s=()=>{this.#t?.removeEvents(),this.#t?.removeConsumers(),this.#i?.removeEvents(),this.#r?.remove();};removeMapEventsAndConsumers=()=>{this.#t?.removeEvents(),this.#i?.removeEvents(),this.#o?.remove(),this.#r?.remove(),this.#e.map.off("mode:initialize",this.#n);}};var oe=class{#e;_line;_polygon;_break;_container;constructor(e){this.#e=e.options,this._line=void 0,this._polygon=void 0,this._break=void 0,this._container=p.create("div","mapboxgl-ctrl mapboxgl-ctrl-group maplibregl-ctrl maplibregl-ctrl-group"),this.createControl(e);}createControlButton=(e,t,i,o)=>{let r=this.#e.panel.size,a=p.create("button",`control-button control-button-${r}`,this._container);return a.setAttribute("aria-label",t),a.setAttribute("data-type",e),i&&a.classList.add("control-button-active"),o&&(a.setAttribute("disabled","true"),a.setAttribute("aria-disabled","true")),p.create("span",`icon ${e} icon-${r}`,a),a};#t=e=>{let{mode:t,options:i}=e,o=this.#e.modes.line.visible,r=i.locale.line;o&&(this._line=this.createControlButton("line",r,t.getMode()==="line"));};#o=e=>{let{mode:t,options:i}=e,o=this.#e.modes.polygon.visible,r=i.locale.polygon;o&&(this._polygon=this.createControlButton("polygon",r,t.getMode()==="polygon"));};#i=e=>{let{mode:t,options:i}=e,o=this.#e.modes.breakGeometry.visible,r=i.locale.break;if(o){let l=!this.#e?.initial?.closeGeometry,L=t.getBreak();this._break=this.createControlButton("break",r,L,l);}};createControl=e=>{this.#t(e),this.#o(e),this.#i(e);};getContainer=()=>this._container};function Oe(n){return n.initial?.geometry?n.initial?.geometry:n.modes.initial?n.modes.initial:null}var ne=class extends O{#e;#t;#o;constructor(e){super(),this.#e=Oe(e),this.#t=!1,this.#o=e.initial?.closeGeometry??!1;}getMode=()=>this.#e;setMode=e=>{this.#e=e,this.setBreak(!1),this.notify({type:"MODE_CHANGED",data:e});};getBreak=()=>this.#t;setBreak=e=>{this.#t=e,this.notify({type:"BREAK_CHANGED",data:e});};getClosedGeometry=()=>this.#o;setClosedGeometry=e=>{this.#o=e,this.notify({type:"CLOSED_GEOMETRY_CHANGED",data:this.#o});};isPolygon=()=>this.#e==="polygon"&&this.getClosedGeometry();reset=()=>{this.setMode(this.getMode()),this.setClosedGeometry(!1);};pingConsumers=()=>{this.notify({type:"MODE_CHANGED",data:this.getMode()}),this.notify({type:"CLOSED_GEOMETRY_CHANGED",data:this.getClosedGeometry()});}};var se=class{#e;#t;constructor(e){this.#e=e,this.#t=this.#e.map.getCanvasContainer(),this.#t.style.cursor=e.mode.getMode()?f.CROSSHAIR:f.AUTO,this.#o();}set=e=>{this.#t.style.cursor=e;};get=()=>this.#t.style.cursor;handleMouseLeave=C(()=>{let{mouseEvents:e,mode:t}=this.#e;if(!e.pointMouseDown){if(!t.getMode()){this.set(f.AUTO);return}t.getClosedGeometry()?this.set(f.AUTO):this.set(f.CROSSHAIR);}},10);handleFirstPointMouseEnter=C(()=>{let{store:e,options:t}=this.#e;u.canCloseGeometry(e,t)&&this.set(f.POINTER);},10);#o(){let{mouseEvents:e}=this.#e;e.addObserver(this.#i);}removeConsumers(){let{mouseEvents:e}=this.#e;e.removeObserver(this.#i);}#i=e=>{let{mode:t,mouseEvents:i,store:o,options:r}=this.#e;if(t.getBreak())return;let{type:a,data:l}=e;if(l)switch(a){case"pointMouseDown":this.set(f.GRABBING);break;case"pointMouseUp":this.set(f.GRAB);break;case"pointMouseEnter":if(i.pointMouseDown)return;this.set(f.GRAB);break;case"pointMouseLeave":this.handleMouseLeave();break;case"lineMouseEnter":if(i.pointMouseDown)return;this.set(f.POINTER);break;case"lineMouseLeave":this.handleMouseLeave();break;case"firstPointMouseEnter":this.handleFirstPointMouseEnter();break;case"firstPointMouseLeave":this.handleMouseLeave();break;case"lastPointMouseEnter":u.isClosedGeometry(o,r)||this.set(f.POINTER);break;case"lastPointMouseLeave":this.handleMouseLeave();break;}}};var re=class extends O{#e;#t;#o;#i;#r;#n;#s;#l;#a;#p;#u;#c;constructor(){super(),this.#e=!1,this.#t=!1,this.#o=!1,this.#i=!1,this.#r=!1,this.#n=!1,this.#s=!1,this.#l=!1,this.#a=!1,this.#p=!1,this.#u=!1,this.#c=!1;}get firstPointMouseEnter(){return this.#e}set firstPointMouseEnter(e){this.#e=e,this.notify({type:"firstPointMouseEnter",data:e});}get firstPointMouseLeave(){return this.#t}set firstPointMouseLeave(e){this.#t=e,this.notify({type:"firstPointMouseLeave",data:e});}get lastPointMouseClick(){return this.#o}set lastPointMouseClick(e){this.#o=e,this.notify({type:"lastPointMouseClick",data:e});}get lastPointMouseUp(){return this.#i}set lastPointMouseUp(e){this.#i=e,this.notify({type:"lastPointMouseUp",data:e});}get lastPointMouseEnter(){return this.#r}set lastPointMouseEnter(e){this.#r=e,this.notify({type:"lastPointMouseEnter",data:e});}get lastPointMouseLeave(){return this.#n}set lastPointMouseLeave(e){this.#n=e,this.notify({type:"lastPointMouseLeave",data:e});}get pointMouseDown(){return this.#s}set pointMouseDown(e){this.#s=e,this.notify({type:"pointMouseDown",data:e});}get pointMouseUp(){return this.#l}set pointMouseUp(e){this.#l=e,this.notify({type:"pointMouseUp",data:e});}get pointMouseEnter(){return this.#a}set pointMouseEnter(e){this.#a=e,this.notify({type:"pointMouseEnter",data:e});}get pointMouseLeave(){return this.#p}set pointMouseLeave(e){this.#p=e,this.notify({type:"pointMouseLeave",data:e});}get lineMouseEnter(){return this.#u}set lineMouseEnter(e){this.#u=e,this.notify({type:"lineMouseEnter",data:e});}get lineMouseLeave(){return this.#c}set lineMouseLeave(e){this.#c=e,this.notify({type:"lineMouseLeave",data:e});}};var F=class{static allStepsHaveIds(e){return e.every(t=>"id"in t&&t.id!==void 0)}static checkIfMissingIds(e,t){let i=!t,o=!this.allStepsHaveIds(e);if(i&&o)throw new Error(N.MISSING_IDS)}static checkIfEnoughPointsToClose(e,t){if(t&&e.length<3)throw new Error(N.NOT_ENOUGH_POINTS_TO_CLOSE)}static checkIfPolygonIsClosed(e){let{closeGeometry:t,steps:i}=e;if(i){let o=i[0]?.lng,r=i[i.length-1]?.lng,a=i[0]?.lat,l=i[i.length-1]?.lat;if((o!==r||a!==l)&&t)throw new Error(N.FIRST_LAST_POINT_NOT_EQUAL)}}static checkInitialStepsOption(e){let{closeGeometry:t,generateId:i,steps:o}=e;this.checkIfMissingIds(o,i),this.checkIfEnoughPointsToClose(o,t),this.checkIfPolygonIsClosed(e);}static init(e){return e?{pointGeneration:e.pointGeneration??c.pointGeneration,panel:Te(e),modes:we(e),layersPaint:ke(e),initial:e.initial||c.initial,locale:Ae(e),dynamicLine:e.dynamicLine??c.dynamicLine}:c}};function Te(n){return {size:n.panel?.size||c.panel.size,buttons:{undo:{visible:n.panel?.buttons?.undo?.visible??c.panel.buttons.undo.visible},delete:{visible:n.panel?.buttons?.delete?.visible??c.panel.buttons.delete.visible},save:{visible:n.panel?.buttons?.save?.visible??c.panel.buttons.save.visible,clearOnSave:n.panel?.buttons?.save?.clearOnSave??c.panel.buttons.save.clearOnSave}}}}function we(n){return {initial:n.modes?.initial||c.modes.initial,line:{visible:n?.modes?.line?.visible!==void 0?n.modes.line.visible:n?.initial?.geometry==="line"||c.modes.line.visible,closeGeometry:n?.modes?.line?.closeGeometry??c.modes.line.closeGeometry},polygon:{visible:n?.modes?.polygon?.visible!==void 0?n.modes.polygon.visible:n?.initial?.geometry==="polygon"||c.modes.polygon.visible},breakGeometry:{visible:n?.modes?.breakGeometry?.visible??c.modes.breakGeometry.visible}}}function ke(n){return {onLinePoint:{"circle-radius":n.layersPaint?.onLinePoint?.["circle-radius"]||k["circle-radius"],"circle-color":n.layersPaint?.onLinePoint?.["circle-color"]||k["circle-color"],"circle-stroke-color":n.layersPaint?.onLinePoint?.["circle-stroke-color"]||k["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.onLinePoint?.["circle-stroke-width"]||k["circle-stroke-width"],...n.layersPaint?.onLinePoint},firstPoint:{"circle-radius":n.layersPaint?.firstPoint?.["circle-radius"]||w["circle-radius"],"circle-color":n.layersPaint?.firstPoint?.["circle-color"]||w["circle-color"],"circle-stroke-color":n.layersPaint?.firstPoint?.["circle-stroke-color"]||w["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.firstPoint?.["circle-stroke-width"]||w["circle-stroke-width"],...n.layersPaint?.firstPoint},points:{"circle-radius":n.layersPaint?.points?.["circle-radius"]||A["circle-radius"],"circle-color":n.layersPaint?.points?.["circle-color"]||A["circle-color"],"circle-stroke-color":n.layersPaint?.points?.["circle-stroke-color"]||A["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.points?.["circle-stroke-width"]||A["circle-stroke-width"],...n.layersPaint?.points},auxiliaryPoint:{"circle-radius":n.layersPaint?.auxiliaryPoint?.["circle-radius"]||B["circle-radius"],"circle-color":n.layersPaint?.auxiliaryPoint?.["circle-color"]||B["circle-color"],"circle-stroke-color":n.layersPaint?.auxiliaryPoint?.["circle-stroke-color"]||B["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.auxiliaryPoint?.["circle-stroke-width"]||B["circle-stroke-width"],...n.layersPaint?.auxiliaryPoint},line:{"line-width":n.layersPaint?.line?.["line-width"]||D["line-width"],"line-color":n.layersPaint?.line?.["line-color"]||D["line-color"],"line-opacity":n.layersPaint?.line?.["line-opacity"]||D["line-opacity"],...n.layersPaint?.line},polygon:{"fill-color":n.layersPaint?.polygon?.["fill-color"]||R["fill-color"],"fill-opacity":n.layersPaint?.polygon?.["fill-opacity"]||R["fill-opacity"],...n.layersPaint?.polygon},breakLine:{"line-width":n.layersPaint?.breakLine?.["line-width"]||_["line-width"],"line-color":n.layersPaint?.breakLine?.["line-color"]||_["line-color"],"line-dasharray":n.layersPaint?.breakLine?.["line-dasharray"]||_["line-dasharray"],...n.layersPaint?.breakLine}}}function Ae(n){return {save:n.locale?.save??c.locale.save,delete:n.locale?.delete??c.locale.delete,undo:n.locale?.undo??c.locale.undo,line:n.locale?.line??c.locale.line,polygon:n.locale?.polygon??c.locale.polygon,break:n.locale?.break??c.locale.break,closeLine:n.locale?.closeLine??c.locale.closeLine,createPolygon:n.locale?.createPolygon??c.locale.createPolygon}}var ue=class n{#e;#t;#o;#i;#r;#n;#s;#l;#a;static#p=null;static#u=!1;constructor(e){if(this.#i=F.init(e),this.#i.initial&&F.checkInitialStepsOption(this.#i.initial),n.#u)throw new Error("Use 'DrawLibre.getInstance()' instead of 'new DrawLibre()'.");n.#u=!0,this.#t=void 0,this.#o=void 0,this.#r=void 0,this.#n=void 0,this.#s=void 0,this.#a=void 0,this.#l=void 0;}static getInstance(e){return n.#p||(n.#p=new n(e)),n.#p}onAdd=e=>{this.#t=new G(this.#i),this.#o=new ne(this.#i),this.#s=new H({map:e,mode:this.#o,options:this.#i,store:this.#t}),this.#n=new I({map:e,store:this.#t,options:this.#i,mode:this.#o});let t=new oe({options:this.#i,mode:this.#o});return this.#a=new re,this.#l=new se({map:e,mode:this.#o,mouseEvents:this.#a,store:this.#t,options:this.#i}),this.#r=new ie({map:e,store:this.#t,options:this.#i,panel:this.#s,control:t,mode:this.#o,tiles:this.#n,mouseEvents:this.#a}),this.#o.getMode()&&e.fire("mode:initialize"),this.#o.pingConsumers(),this.#t.pingConsumers(),this.#e=t.getContainer(),this.#e};onRemove=()=>{this.#l?.removeConsumers(),this.#n?.removeTiles(),this.#r?.removeMapEventsAndConsumers(),this.#s?.removePanel(),this.#t?.reset(),this.#o?.unsubscribe(),this.#e&&p.remove(this.#e);};setSteps=e=>{if(Array.isArray(e))for(let t of e){let i={...t,id:t.id||E()};this.#t?.push(i);}else throw new Error("Invalid argument. Expected an array of steps.");this.#n?.render();};findStepById=e=>this.#t?.findStepById(e);findNodeById=e=>this.#t?.findNodeById(e);getAllSteps=(e="array")=>{if(e==="array"&&this.#t)return P.toArray(this.#t.head);if(e==="linkedlist")return this.#t;throw new Error("Invalid type specified. Use 'array' or 'linkedlist'.")};setOptions=e=>{this.#i=e(this.#i);};removeAllSteps=()=>{this.#t?.reset(),this.#s?.removePanel(),this.#n?.render();}};
|
|
1
|
+
var p=class n{static docStyle=typeof window<"u"&&window.document&&window.document.documentElement.style;static transformProp=n.testProp(["transform","WebkitTransform"]);static testProp(e){if(!n.docStyle)return e[0];for(let t=0;t<e.length;t++)if(e[t]in n.docStyle)return e[t];return e[0]}static create(e,t,i){let o=window.document.createElement(e);return t!==void 0&&(o.className=t),i&&i.appendChild(o),o}static remove(e){e.parentNode&&e.parentNode.removeChild(e);}static setTransform(e,t){n.transformProp&&e.style&&(e.style[n.transformProp]=t);}static manageEventListener(e,t,i,o,r={}){if(!t)return;let a=e==="add"?"addEventListener":"removeEventListener";"passive"in r?t[a](i,o,r):t[a](i,o,r.capture);}static mouseButton(e){return e.button}static addClassName(e,t){e.classList.contains(t)||e.classList.add(t);}static removeClassName(e,t){e.classList.contains(t)&&e.classList.remove(t);}};var H=class{#e;#t;#i;_undoButton;_deleteButton;_saveButton;_container;_updatePositionCallback;constructor(e){this.#e=e,this._container=void 0,this.#t=!0,this.#i=void 0,this.#r();}#o(){this.#i&&(this.#i.className="dashboard-container",this.#i.style.position="absolute",this.#i.style.zIndex="1000000",this.#i.style.pointerEvents="auto",this.#i.style.display=this.#t?"none":"block");}#r=()=>{let{store:e}=this.#e;this.createPanel(),this.#i=document.createElement("div"),this.#o(),this._container&&this.#i.appendChild(this._container),document.body.appendChild(this.#i),e.tail?.val&&this.setPanelLocation({lat:e.tail?.val?.lat,lng:e.tail?.val?.lng});};setPanelLocation=e=>{if(!this.#i)return;this.#t&&this.showPanel();let t=this.#e.map.project(e);this.#n(t),this.#s(e);};#n=e=>{if(this.#t||!this.#i)return;let i=this.#e.map.getContainer().getBoundingClientRect(),o=i.left+e.x,r=i.top+e.y,a=36;this.#i.style.left=`${o-a}px`,this.#i.style.top=`${r-a-4}px`;};#s(e){this.#l(),this._updatePositionCallback=()=>{this.#t||!this.#i||this.#n(this.#e.map.project(e));},this.#e.map.on("move",this._updatePositionCallback),this.#e.map.on("zoom",this._updatePositionCallback);}#l(){this._updatePositionCallback&&(this.#e.map.off("move",this._updatePositionCallback),this.#e.map.off("zoom",this._updatePositionCallback),this._updatePositionCallback=void 0);}showPanel=()=>{this.#t&&this.#i&&(this.#t=!1,this.#i.style.display="block",this.#i.style.transition="opacity 0.2s",this.#i.style.opacity="1");};hidePanel=()=>{!this.#t&&this.#i&&(this.#t=!0,this.#i.style.display="none");};removePanel=()=>{this._updatePositionCallback&&(this.#e.map.off("move",this._updatePositionCallback),this.#e.map.off("zoom",this._updatePositionCallback),this._updatePositionCallback=void 0),this.#i&&(document.body.removeChild(this.#i),this.#i=void 0),this._container&&(p.remove(this._container),this._container=void 0);};#a=(e,t,i,o)=>{let r=p.create("button",`panel-button panel-button-${i}`,o);return r.setAttribute("data-type",e),r.setAttribute("aria-label",t),p.create("span",`icon ${e} icon-${i}`,r),r};createPanel=()=>{let{options:e}=this.#e,{locale:t}=e,{undo:i,delete:o,save:r}=e.panel.buttons,a=e.panel.size,l=p.create("div","dashboard");i.visible&&(this._undoButton=this.#a("undo",t.undo,a,l)),o.visible&&(this._deleteButton=this.#a("delete",t.delete,a,l)),r.visible&&(this._saveButton=this.#a("save",t.save,a,l)),this._container=l;}};var me={type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:[]}}]};var s={LineDynamicLayer:"mdl-line-dynamic-layer",LineLayer:"mdl-line-layer",LineLayerTransparent:"mdl-line-layer-transparent",LineLayerBreak:"mdl-line-break-layer",PolygonLayer:"mdl-polygon-layer",PointsLayer:"mdl-points-layer",SinglePointLayer:"mdl-single-point-layer",FirstPointLayer:"mdl-first-point-layer",AuxiliaryPointLayer:"mdl-auxiliary-point-layer"},c={UnifiedSource:"mdl-unified-source",LineDynamicSource:"mdl-line-dynamic-source",LineSourceBreak:"mdl-line-source-break",SinglePointSource:"mdl-single-point-source"},T={large:6.5,default:5.5},U={large:"#FF6464",default:"#666666"},w={"circle-radius":T.default,"circle-color":"#FEFFFE","circle-stroke-color":U.default,"circle-stroke-width":3},R={"circle-radius":T.default-1.5,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":2},k={"circle-radius":T.large,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":3},B={"fill-color":"grey","fill-opacity":.4},D={"line-width":3,"line-color":"grey","line-opacity":.7},A={"circle-radius":T.default,"circle-color":"#FEFFFE","circle-stroke-color":"#666666","circle-stroke-width":3},_={"line-width":3,"line-color":"#FF6464","line-dasharray":[3,3]},z=n=>[{id:s.SinglePointLayer,source:c.SinglePointSource,type:"circle",paint:n.layersPaint.onLinePoint,layout:{visibility:"none"}},{id:s.PolygonLayer,source:c.UnifiedSource,type:"fill",paint:n.layersPaint.polygon,layout:{visibility:"none"},filter:["==","$type","Polygon"]},{id:s.LineDynamicLayer,source:c.LineDynamicSource,type:"line",paint:n.layersPaint.line,layout:{visibility:"none"}},{id:s.LineLayer,source:c.UnifiedSource,type:"line",paint:n.layersPaint.line,layout:{visibility:"visible"},filter:["==","$type","LineString"]},{id:s.LineLayerTransparent,source:c.UnifiedSource,type:"line",paint:{"line-width":4,"line-color":"transparent"},filter:["==","$type","LineString"]},{id:s.LineLayerBreak,source:c.LineSourceBreak,type:"line",paint:n.layersPaint.breakLine,layout:{visibility:"none"}},{id:s.PointsLayer,source:c.UnifiedSource,type:"circle",paint:n.layersPaint.points,filter:["all",["==","$type","Point"],["==","isFirst",!1],["==","isAuxiliary",!1]]},{id:s.FirstPointLayer,source:c.UnifiedSource,type:"circle",paint:n.layersPaint.firstPoint,filter:["==",["get","isFirst"],!0],layout:{visibility:"none"}},{id:s.AuxiliaryPointLayer,source:c.UnifiedSource,type:"circle",paint:n.layersPaint.auxiliaryPoint,filter:["==",["get","isAuxiliary"],!0]}];var m=class{static isFeatureTriggered(e,t){return e.target.queryRenderedFeatures(e.point,{layers:t}).some(o=>t.includes(o.layer.id))}static getPixelCoordinates=(e,t)=>{let{lat:i,lng:o}=t;return e.project([o,i])};static queryPointId=(e,t)=>e.queryRenderedFeatures(t,{layers:[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer,s.SinglePointLayer]})?.[0]?.properties.id;static queryPoint=(e,t)=>e.queryRenderedFeatures(t,{layers:[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer,s.SinglePointLayer]})?.[0]},M=class{static#e(e){let t=[],i=e.head,o=new Set;for(;i!==null;){if(o.has(i.val?.id)){e.head&&e.head.val&&t.push([e.head.val.lng,e.head.val.lat]);break}o.add(i.val?.id),i.val&&t.push([i.val.lng,i.val.lat]),i=i.next;}return t}static getLine(e,t){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:[e,t]}}]}}static getAllLines(e){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"LineString",coordinates:e}}]}}static getPolygon(e){return {type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:{type:"Polygon",coordinates:[e]}}]}}static getPoints(e){let t=e.head,i=[],o=new Set;for(;t!==null&&!o.has(t.val?.id);){if(t.val){let r=t.val,a=t.val.id===e.head?.val?.id;i.push({type:"Feature",properties:{id:r.id,lat:r.lat,lng:r.lng,isFirst:a,isAuxiliary:r.isAuxiliary},geometry:{type:"Point",coordinates:[r.lng,r.lat]}});}o.add(t.val?.id),t=t.next;}return {type:"FeatureCollection",features:i}}static getUnifiedFeatures(e){let t=this.getPoints(e).features,i=this.#e(e),o=this.getAllLines(i).features,r=this.getPolygon(i).features;return {type:"FeatureCollection",features:[...t,...o,...r]}}},u=class n{static getGeometryIndex=(e,t)=>{let i=e.head,o=0,r=new Set;for(;i!==null&&!r.has(i.val?.id);){if(i.val?.id===t)return o;r.add(i.val?.id),o++,i=i.next;}return -1};static distance=(e,t)=>Math.sqrt((e.x-t.x)**2+(e.y-t.y)**2);static checkIfPointIsOnLine=(e,t,i)=>{let r=this.distance(e,t),a=this.distance(e,i),l=this.distance(i,t);return Math.abs(a+l-r)<.1};static isClosedGeometry=(e,t)=>t.pointGeneration==="auto"?e.tail?.next?.val?.id===e.head?.val?.id&&e.tail?.next!==null:e.tail?.next===e.head;static breakGeometry=(e,t,i)=>{e.head&&(t.pointGeneration==="auto"?(i.val?.isAuxiliary?(e.head=i.next,e.head.prev=null,e.tail=i.prev,e.tail.next=null):(e.head=i.next?.next,e.head.prev=null,e.tail=i,e.tail.next=null),e.size=e.size-1):(e.head=i.next,e.head.prev=null,e.tail=i,e.tail.next=null));};static closeGeometry=(e,t)=>{e.tail&&e.head&&(e.tail.next=e.head,e.head.prev=e.tail),t.setClosedGeometry(!0);};static canCloseGeometry=(e,t)=>(t.pointGeneration==="auto"?e.size>3:e.size>2)&&!this.isClosedGeometry(e,t);static canBreakClosedGeometry=(e,t)=>t.pointGeneration==="auto"?e.size<=3:e.size<=2;static switchToLineModeIfCan=e=>{let{store:t,map:i,mode:o,options:r}=e,a=t.tail?.next===t.head;n.canBreakClosedGeometry(t,r)&&a&&(r.pointGeneration==="auto"?t.tail?.val?.isAuxiliary?(t.head&&(t.head.next=t.tail,t.head.prev=null),t.tail&&t.tail.prev&&t.head&&(t.tail=t.tail.prev,t.tail.prev=t.head.next,t.tail.next=null),t.head?.next&&(t.head.next.next=t.tail,t.head.next.prev=t.head)):(t.head&&(t.head.prev=null),t.tail&&t.head&&(t.tail.prev=t.head.next,t.tail.next=null)):t.tail&&(t.tail.next=null),o.reset());}},L=()=>{if("crypto"in window&&"randomUUID"in window.crypto)return window.crypto.randomUUID();function n(){return "0123456789abcdef"[Math.floor(Math.random()*16)]}function e(o){let r="";for(let a=0;a<o;a++)r+=n();return r}function t(o){let r=o===0,a=o===4;return r?8:a?12:4}let i=[];for(let o=0;o<5;o++)i.push(e(t(o)));return i.join("-")},S=(n,e)=>{let t,i=!0;function o(){i&&t&&(n(...t),t=null,i=!1,setTimeout(()=>{i=!0,o();},e));}return function(...r){t=r,o();}},b=(n,e)=>{let t;return function(...i){clearTimeout(t),t=window.setTimeout(()=>{n(...i);},e);}};var N=class{#e;#t;constructor(e){this.#e=e,this.#t=M.getUnifiedFeatures(this.#e.store),this.#i(),this.render();}#i(){this.#s(),this.#l(),this.#a(s.LineLayer,s.SinglePointLayer),this.#a(s.LineLayerTransparent,s.SinglePointLayer),this.#a(s.LineLayerTransparent,s.FirstPointLayer),this.#a(s.LineLayerTransparent,s.PointsLayer),this.#a(s.PolygonLayer,s.LineLayer),this.#o();}#o=()=>{let{store:e}=this.#e;e.addObserver(this.#n);};#r=()=>{let{store:e}=this.#e;e.removeObserver(this.#n);};#n=b(e=>{if(e.type==="STORE_MUTATED"||e.type==="STORE_DETACHED"){let{map:t,mode:i,options:o,store:r}=this.#e;i.getMode()==="polygon"&&u.isClosedGeometry(r,o)?t.setLayoutProperty(s.PolygonLayer,"visibility","visible"):t.setLayoutProperty(s.PolygonLayer,"visibility","none");}},10);#s=()=>{let{map:e}=this.#e;for(let t of Object.values(c))e.getSource(t)||e.addSource(t,{type:"geojson",data:{type:"FeatureCollection",features:[]},promoteId:"id"});};#l=()=>{let{map:e,options:t}=this.#e,i=z(t);for(let o of i)e.getLayer(o.id)||e.addLayer(o);};#a=(e,t)=>{let{map:i}=this.#e,o=i.getLayer(e),r=i.getLayer(t);o&&r&&i.moveLayer(e,t);};#p=()=>{let{map:e}=this.#e;for(let t of Object.values(c))e.getSource(t)&&e.removeSource(t);};#u=()=>{let{map:e}=this.#e;for(let t of Object.values(s))e.getLayer(t)&&e.removeLayer(t);};removeTiles=()=>{this.#u(),this.#p(),this.#r();};updateLine(e,t){let{mode:i}=this.#e,o=this.#t.features.at(-2)?.geometry.coordinates;o&&(o[e]=[t.lng,t.lat],i.getClosedGeometry()&&e===0&&(o[o.length-1]=[t.lng,t.lat]));}updatePolygon(e,t){let{mode:i}=this.#e,o=this.#t.features.at(-1)?.geometry.coordinates[0];o&&(o[e]=[t.lng,t.lat],i.getClosedGeometry()&&e===0&&(o[o.length-1]=[t.lng,t.lat]));}updatePoint(e,t){let i=this.#t?.features?.[e];i?.geometry?.coordinates&&(i.geometry.coordinates=[t.lng,t.lat]);}renderOnMouseMove=(e,t,i)=>{let{mode:o,options:r,store:a}=this.#e,l=e===0?a.size-1:e-1;this.updatePoint(e,t),i&&i.prev&&this.updatePoint(l,i.prev),i&&i.next&&this.updatePoint(e+1,i.next),this.updateLine(e,t),i&&i.prev&&this.updateLine(l,i.prev),i&&i.next&&this.updateLine(e+1,i.next),r.modes.polygon.visible&&o.isPolygon()&&(this.updatePolygon(e,t),i&&i.prev&&this.updatePolygon(l,i.prev),i&&i.next&&this.updatePolygon(e+1,i.next));let C=this.#e.map.getSource(c.UnifiedSource);C&&C.setData(this.#t);};render(){this.#t=M.getUnifiedFeatures(this.#e.store);let e=this.#e.map.getSource(c.UnifiedSource);e&&e.setData(this.#t);}resetGeometries=()=>{let e=this.#e.map.getSource(c.UnifiedSource);e&&e.setData({type:"FeatureCollection",features:[]});}};var Me=8,be=8,x=class{_container;_label;constructor(){this._container=void 0;}create=e=>{let t=p.create("div","popup-container",document.body),i=p.create("span",`popup-text popup-text-${e.placement}`,t);return i.textContent=e.label,this._container=t,this._label=i,this};#e=()=>{!this._label?.classList.value.includes("popup-text-active")&&this._label?.classList.add("popup-text-active");};#t=()=>this._label?{width:this._label.clientWidth,height:this._label.clientHeight}:{width:0,height:0};#i=e=>{let{bottom:t,left:i}=e.target.getBoundingClientRect(),{width:o,height:r}=this.#t();return {x:i-be-o,y:t-r-2}};#o=e=>{let{bottom:t,left:i,right:o}=e.target.getBoundingClientRect(),{width:r}=this.#t();return {x:(o-i)/2+i-r/2,y:t+Me}};getPosition=(e,t)=>t==="left"?this.#i(e):this.#o(e);setPosition=e=>{let{x:t,y:i}=e;this._container&&(this._container.style.left=`${t}px`,this._container.style.top=`${i}px`),this.#e();};remove=()=>{this._container&&p.remove(this._container);}};var f={AUTO:"auto",DEFAULT:"default",POINTER:"pointer",CROSSHAIR:"crosshair",MOVE:"move",HELP:"help",GRAB:"grab",GRABBING:"grabbing"};var q=(n,e)=>{for(let[t,i]of Object.entries(e))p.manageEventListener("add",n,t,i);},V=(n,e)=>{for(let[t,i]of Object.entries(e))p.manageEventListener("remove",n,t,i);},he=(n,e)=>{let t=e.locale.line,i=e.locale.polygon,o=e.locale.break;return {line:t,polygon:i,break:o}[n]};var v={RIGHTCLICKREMOVE:"mdl:rightclickremove",POINTENTER:"mdl:pointenter",POINTLEAVE:"mdl:pointleave",MOVEEND:"mdl:moveend",ADD:"mdl:add",UNDO:"mdl:undo",REMOVEALL:"mdl:removeall",SAVE:"mdl:save",BREAK:"mdl:break",MODECHANGED:"mdl:modechanged"},ve=768,d={pointGeneration:"manual",panel:{size:"medium",buttons:{undo:{visible:!0},delete:{visible:!0},save:{visible:!0,clearOnSave:!0}}},modes:{initial:null,line:{visible:!0,closeGeometry:!0},polygon:{visible:!0},breakGeometry:{visible:!0}},layersPaint:{onLinePoint:k,firstPoint:w,points:A,line:D,polygon:B,breakLine:_},initial:null,dynamicLine:!0,locale:{save:"Save",delete:"Delete all",undo:"Undo",line:"Line",polygon:"Polygon",break:"Split",closeLine:"Close the line",createPolygon:"Create a polygon"}};var h=class{static addPoint(e,t,i){t.fire(v.ADD,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now(),mode:{geometry:i.getMode(),closedGeometry:i.getClosedGeometry()}});}static movePoint(e,t){t.fire(v.MOVEEND,{id:e.id,start_coordinates:{lat:e.start.lat,lng:e.start.lng},end_coordinates:{lat:e.end.lat,lng:e.end.lng},total:e.total,timestamp:Date.now()});}static pointRemoveRightClick(e,t){t.fire(v.RIGHTCLICKREMOVE,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static enterPoint(e,t){t.fire(v.POINTENTER,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static leavePoint(e,t){t.fire(v.POINTLEAVE,{id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static undoPoint(e,t,i){t.fire(v.UNDO,{originalEvent:i,id:e.id,coordinates:{lat:e.lat,lng:e.lng},total:e.total,timestamp:Date.now()});}static modeChanged(e,t){e.fire(v.MODECHANGED,{mode:t});}static removeAllPoints(e,t){e.fire(v.REMOVEALL,{originalEvent:t});}static onSaveClick(e,t,i){let{map:o,mode:r}=e;o.fire(v.SAVE,{originalEvent:i,timestamp:Date.now(),steps:t,mode:{geometry:r.getMode(),closedGeometry:r.getClosedGeometry()}});}static onLineBreak(e){e.fire(v.BREAK);}};var Y=class{#e;constructor(e){this.#e=e,this.#t();}#t=()=>{this.#e.mode.addObserver(this.#a);};removeConsumers=()=>{this.#e.mode.removeObserver(this.#a);};#i=()=>{let{_line:e,_polygon:t,_break:i}=this.#e.control;e?.classList.remove("control-button-active"),t?.classList.remove("control-button-active"),i?.classList.remove("control-button-active");};#o=e=>{this.#i(),e.classList.add("control-button-active");};#r=e=>{let{data:t}=e,{_line:i,_polygon:o,_break:r}=this.#e.control,{mode:a}=this.#e;if(h.modeChanged(this.#e.map,t),!(!i||!o||!r)){switch(t){case"line":this.#o(i);break;case"polygon":this.#o(o);break;}t?a.getClosedGeometry()&&this.#s(r):this.#n(r);}};#n=e=>{e.setAttribute("disabled","true"),e.setAttribute("aria-disabled","true");};#s=e=>{e.removeAttribute("disabled"),e.removeAttribute("aria-disabled");};#l=e=>{let{data:t}=e,{_break:i,_line:o,_polygon:r}=this.#e.control,{mode:a}=this.#e;t?(i&&this.#s(i),a.getMode()==="polygon"&&o&&this.#n(o),a.getMode()==="line"&&r&&this.#n(r)):(i&&this.#n(i),a.getMode()==="polygon"&&o&&this.#s(o),a.getMode()==="line"&&r&&this.#s(r));};#a=e=>{let{type:t,data:i}=e;if(t==="MODE_CHANGED"&&this.#r(e),t==="CLOSED_GEOMETRY_CHANGED"&&this.#l(e),t==="BREAK_CHANGED"&&i){let{_break:o}=this.#e.control;this.#o(o),h.modeChanged(this.#e.map,"break");}}};var j=class{#e;#t;#i;constructor(e){this.#e=e,this.#i=new Y(e),this.#t=new x,this.#o();}#o(){let{control:e}=this.#e;if(e){let t={mouseenter:this.onButtonEnter,mouseleave:this.onButtonLeave};e._line&&q(e._line,{...t,click:this.onLineClick}),e._polygon&&q(e._polygon,{...t,click:this.onPolygonClick}),e._break&&q(e._break,{...t,click:this.onBreakClick});}}#r(){let{control:e}=this.#e;if(e){let t={mouseenter:this.onButtonEnter,mouseleave:this.onButtonLeave};e._line&&V(e._line,{...t,click:this.onLineClick}),e._polygon&&V(e._polygon,{...t,click:this.onPolygonClick}),e._break&&V(e._break,{...t,click:this.onBreakClick});}}remove(){this.#i.removeConsumers(),this.#r(),this.#t.remove();}onButtonEnter=e=>{let{options:t}=this.#e,i=e.target.getAttribute("data-type");if(i){let o=he(i,t),r="left";this.#t.create({label:o,placement:r}).setPosition(this.#t.getPosition(e,r));}};onButtonLeave=()=>{this.#t.remove();};#n=()=>{let{control:e}=this.#e;e._line?.classList.remove("control-button-active"),e._polygon?.classList.remove("control-button-active"),e._break?.classList.remove("control-button-active");};#s=()=>{let{map:e,mode:t}=this.#e;t.getMode()||e.fire("mode:initialize");};onLineClick=()=>{let{map:e,mode:t,tiles:i,control:o}=this.#e;this.#s(),this.#n(),t.getMode()==="line"&&!t.getBreak()?(t.setMode(null),e.fire("mode:remove"),i.resetGeometries()):(o._line?.classList.add("control-button-active"),t.setMode("line"),i.render());};onPolygonClick=()=>{let{map:e,mode:t,tiles:i,control:o}=this.#e;this.#s(),this.#n(),t.getMode()==="polygon"&&!t.getBreak()?(t.setMode(null),e.fire("mode:remove"),i.resetGeometries()):(o._polygon?.classList.add("control-button-active"),t.setMode("polygon"),i.render());};onBreakClick=()=>{let{map:e,mode:t,control:i}=this.#e;t.getBreak()&&(t.setMode(null),e.fire("mode:remove")),this.#n(),i._break?.classList.add("control-button-active"),t.setBreak(!0),e.getCanvasContainer().style.cursor=f.POINTER;}};var y={getMidpoint(n,e){return {lat:(n.lat+e.lat)/2,lng:(n.lng+e.lng)/2}},createAuxiliaryPoint(n,e){let t=y.getMidpoint(n,e);return {lat:t.lat,lng:t.lng,isAuxiliary:!0,id:L()}},addPointToMap(n,e){let{store:t}=e,i={...n.lngLat,isAuxiliary:!1,id:L()};return t.push(i),i}},g={setFirstPointVisible(n){n.setLayoutProperty(s.FirstPointLayer,"visibility","visible");},setFirstPointHidden(n){n.setLayoutProperty(s.FirstPointLayer,"visibility","none");},setSinglePointVisible(n){n.target.setLayoutProperty(s.SinglePointLayer,"visibility","visible");},setSinglePointHidden(n){let e=n.target;setTimeout(()=>{e.setLayoutProperty(s.SinglePointLayer,"visibility","none");},33);}},pe={default(n){n.setFilter(s.PointsLayer,["all",["==","$type","Point"],["==","isFirst",!1],["==","isAuxiliary",!1]]);},closedGeometry(n){n.setFilter(s.PointsLayer,["all",["==","$type","Point"],["==","isAuxiliary",!1]]);}};var O=class{observers;constructor(){this.observers=new Set;}addObserver(e){this.observers.add(e);}removeObserver(e){this.observers.delete(e);}unsubscribe(){this.observers.clear();}notify(e){this.observers.forEach(t=>t(e));}};var I={EMPTY_INITIAL_STATE:"You passed an empty initial array in the options. Please either remove the 'initial' property or include at least one element in the array.",MISSING_IDS:"You set 'generateId' to false but did not provide IDs for all steps. Please ensure all steps have IDs or set 'generateId' to true.",NOT_ENOUGH_POINTS_TO_CLOSE:"At least three points are required to close a polygon or a line. Please add more points or set 'closeGeometry' to false.",FIRST_LAST_POINT_NOT_EQUAL:"The first and last points of a polygon or a closed linestring must be the same. Please ensure the first and last points are equal or set 'closeGeometry' to false."};var J=class{val;prev;next;constructor(e=null,t=null,i=null){this.val=e,this.prev=i,this.next=t;}},G=class extends O{head;tail;size;map;constructor(e){super();let t=P.initStore(e);this.map=t?t.map:new Map,this.head=t?t.head:null,this.tail=t?t.tail:null,this.size=t?t.size:0;}push(e){let t=new J(e);this.head?this.tail&&(t.prev=this.tail,this.tail.next=t,this.tail=t):this.head=this.tail=t,this.map.set(e.id,t),this.size++,this.pingConsumers();}insert(e,t){if(!t)return;let i=new J(e);i.prev=t,i.next=t.next,this.tail===t&&this.head===t.next&&(this.tail=i),t.next&&(t.next.prev=i),t.next=i,this.map.set(e.id,i),this.size++,this.pingConsumers();}findStepById(e){let t=this.map.get(e);return t?t.val:null}findNodeById(e){let t=this.map.get(e);return t||null}removeNodeById(e){let t=this.map.get(e);return t?(this.size===1?(this.head=null,this.tail=null):(t.prev&&(t.prev.next=t.next),t.next&&(t.next.prev=t.prev),t===this.head&&(this.head=t.next,this.head?.prev&&this.tail&&(this.tail.next=this.head)),t===this.tail&&(this.tail=t.prev,this.head&&this.tail?.next&&(this.head.prev=this.tail))),this.map.delete(e),this.size--,this.pingConsumers(),t):null}reset(){this.head=null,this.tail=null,this.size=0,this.map.clear(),this.pingConsumers();}pingConsumers=()=>{this.notify({type:"STORE_MUTATED",data:{head:this.head,tail:this.tail,size:this.size}});}},P=class n{static isLastPoint=(e,t,i)=>t.pointGeneration==="auto"&&e.tail?.next===e.head?e.tail?.prev?.val?.id===i:e.tail?.val?.id===i;static initStore(e){if(!e?.initial)return null;if(e&&e.initial&&!e.initial.steps.length)throw new Error(I.EMPTY_INITIAL_STATE);return e&&e.initial.steps?n.fromArray(e.initial,e.pointGeneration):null}static#e=e=>e.map((t,i)=>({...t,isAuxiliary:!1,isFirst:i===0,id:L()}));static buildStepSequence(e,t,i){let o=new G,r=t?e.slice(0,-1):e;return r.forEach((a,l)=>{if(o.push(a),i==="auto"){if(r[l+1]){let C=y.createAuxiliaryPoint(a,r[l+1]);o.push(C);}else if(t){let C=y.createAuxiliaryPoint(a,r[0]);o.push(C);}}}),o}static fromArray(e,t){let{steps:i,closeGeometry:o,generateId:r}=e,a=r?this.#e(i):i,l=this.buildStepSequence(a,o,t);return o&&l.tail&&l.head&&(l.tail.next=l.head,l.head.prev=l.tail),l}static toArray(e){if(!e)return [];let t=new Set,i=[],o=e;for(;o!==null&&!t.has(o);)t.add(o),i.push(o.val),o=o.next;return i}};var K=class{#e;#t;constructor(e){this.#e=e,this.#t=new x;}initConsumers(){this.#e.store.addObserver(this.#i),this.#e.mode?.addObserver(this.#o);}removeConsumers(){this.#e.store.removeObserver(this.#i),this.#e.mode?.removeObserver(this.#o);}#i=e=>{if(e.type==="STORE_MUTATED"){let{data:t}=e;if(t.size===0)this.#e.panel.hidePanel();else {let i=Object.assign({},t);for(;i.tail;)if(i.tail?.val?.isAuxiliary)i.tail=i.tail?.prev;else {i.tail?.val&&this.#e.panel.setPanelLocation({lat:i.tail.val.lat,lng:i.tail.val.lng});break}}}};#o=e=>{let{store:t}=this.#e,{type:i,data:o}=e;i==="MODE_CHANGED"&&!o&&this.#e.panel.hidePanel(),i==="MODE_CHANGED"&&o&&t.tail?.val&&this.#e.panel.setPanelLocation({lat:t.tail?.val?.lat,lng:t.tail?.val?.lng});};initEvents(){let{panel:e}=this.#e;e._undoButton&&(p.manageEventListener("add",e._undoButton,"click",this.#l),p.manageEventListener("add",e._undoButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._undoButton,"mouseleave",this.onMouseLeave)),e._deleteButton&&(p.manageEventListener("add",e._deleteButton,"click",this.#n),p.manageEventListener("add",e._deleteButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._deleteButton,"mouseleave",this.onMouseLeave)),e._saveButton&&(p.manageEventListener("add",e._saveButton,"click",this.onSaveClick),p.manageEventListener("add",e._saveButton,"mouseenter",this.onMouseEnter),p.manageEventListener("add",e._saveButton,"mouseleave",this.onMouseLeave));}removeEvents(){let{panel:e}=this.#e;e._undoButton&&(p.manageEventListener("remove",e._undoButton,"click",this.#l),p.manageEventListener("remove",e._undoButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._undoButton,"mouseleave",this.onMouseLeave)),e._deleteButton&&(p.manageEventListener("remove",e._deleteButton,"click",this.#n),p.manageEventListener("remove",e._deleteButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._deleteButton,"mouseleave",this.onMouseLeave)),e._saveButton&&(p.manageEventListener("remove",e._saveButton,"click",this.onSaveClick),p.manageEventListener("remove",e._saveButton,"mouseenter",this.onMouseEnter),p.manageEventListener("remove",e._saveButton,"mouseleave",this.onMouseLeave));}#r=e=>{let{options:t}=this.#e;return {undo:t.locale.undo,delete:t.locale.delete,save:t.locale.save}[e]};onMouseEnter=e=>{let t=e.target.getAttribute("data-type");if(t){let i=this.#r(t);this.#t.create({label:i,placement:"bottom"}).setPosition(this.#t.getPosition(e,"bottom"));}};onMouseLeave=()=>{this.#t.remove();};#n=e=>{let{tiles:t,mode:i,panel:o,store:r,map:a}=this.#e;r.reset(),o.hidePanel(),i.reset(),this.#t.remove(),t.resetGeometries(),h.removeAllPoints(a,e);};#s=()=>{let{store:e,options:t}=this.#e;if(e.removeNodeById(e.tail?.val?.id),t.pointGeneration==="auto"&&(e.removeNodeById(e.tail?.val?.id),e.tail?.val?.isAuxiliary)){if(e.removeNodeById(e.tail?.val?.id),!u.canBreakClosedGeometry(e,t)){let i=y.createAuxiliaryPoint(e.tail.val,e.head?.val);e.push(i);}e.tail.next=e.head;}};#l=e=>{let{store:t,map:i,tiles:o,options:r}=this.#e;t.size==1&&t.reset(),this.#s(),u.switchToLineModeIfCan(this.#e),this.#t.remove();let a={...t.tail?.val,total:t.size};h.undoPoint(a,i,e),o.render();};onSaveClick=e=>{let{store:t,options:i}=this.#e;h.onSaveClick(this.#e,P.toArray(t.head),e),this.#t.remove(),i.panel.buttons.save.clearOnSave&&this.#n(e);}};var ue=(n,e)=>{let t=e.head,i=new Set;for(;t!==null&&!i.has(t);){if(t?.next?.val&&t?.val){let o=n.target,r=m.getPixelCoordinates(o,t.val),a=m.getPixelCoordinates(o,t.next.val),l=m.getPixelCoordinates(o,n.lngLat);if(u.checkIfPointIsOnLine(r,a,l))return t}i.add(t),t=t.next;}return null},ye=(n,e)=>{let t=ue(n,e);if(t){let i={...n.lngLat,isAuxiliary:!1,id:L()};return e.insert(i,t),i}return null},fe=(n,e)=>{let{store:t,tiles:i}=e;t.tail?.val&&(g.setSinglePointHidden(n),i.render());},Le=n=>m.isFeatureTriggered(n,[s.PointsLayer,s.FirstPointLayer,s.AuxiliaryPointLayer]);var Ee=15,$=class{props;#e;#t;constructor(e){this.props=e,this.#e=null,this.#t=S(this.#n,Ee);}initBreakEvents=()=>{let{map:e}=this.props;e.on("click",s.LineLayerTransparent,this.#i),e.on("mouseenter",s.LineLayerTransparent,this.#t),e.on("mousemove",s.LineLayerTransparent,this.#t),e.on("mouseleave",s.LineLayerTransparent,this.#s);};removeBreakEvents=()=>{let{map:e}=this.props;e.off("click",s.LineLayerTransparent,this.#i),e.off("mouseenter",s.LineLayerTransparent,this.#t),e.off("mousemove",s.LineLayerTransparent,this.#t),e.off("mouseleave",s.LineLayerTransparent,this.#s);};hideBreakLine=()=>{let{map:e}=this.props;e.getLayoutProperty(s.LineLayerBreak,"visibility")!=="none"&&e.setLayoutProperty(s.LineLayerBreak,"visibility","none");};showBreakLine=()=>{let{map:e}=this.props;e.getLayoutProperty(s.LineLayerBreak,"visibility")!=="visible"&&e.setLayoutProperty(s.LineLayerBreak,"visibility","visible");};#i=()=>{let{store:e,mode:t,map:i,tiles:o,options:r}=this.props;this.#e&&(u.breakGeometry(e,r,this.#e),this.#s(),t.reset(),o.render(),e.notify({type:"STORE_DETACHED",data:null}),h.onLineBreak(i));};#o=e=>{let t=null,i=null;return e?.val?.isAuxiliary?(t=[e?.prev?.val?.lng,e?.prev?.val?.lat],i=[e?.next?.val?.lng,e?.next?.val?.lat]):(t=[e?.val?.lng,e?.val?.lat],i=[e?.next?.next?.val?.lng,e?.next?.next?.val?.lat]),{current:t,next:i}};#r=e=>{let{options:t}=this.props;if(t.pointGeneration==="manual"){let i=[e?.val?.lng,e?.val?.lat],o=[e?.next?.val?.lng,e?.next?.val?.lat];return {current:i,next:o}}return this.#o(e)};#n=e=>{let{map:t,store:i}=this.props,o=ue(e,i);o?.val?.id!==this.#e?.val?.id&&(this.#e=o);let r=t.getSource(c.LineSourceBreak),{current:a,next:l}=this.#r(this.#e),E=M.getLine(a,l);E&&(r.setData(E),this.showBreakLine());};#s=()=>{setTimeout(()=>{this.hideBreakLine();},Ee+10);}};var Ce=10,Z=class{#e;#t;#i;#o;#r;#n;#s;constructor(e){this.#e=e,this.#t=e.options.dynamicLine,this.#i=null,this.#o=null,this.#l(),this.#n=S(this.#y,Ce),this.#s=b(this.#p,10);}#l(){this.#e.store.addObserver(this.#u),this.#e.mode.addObserver(this.#d),this.#e.mouseEvents.addObserver(this.#a);}removeLine=()=>{this.hideDynamicLine();};removeConsumers=()=>{this.#e.store.removeObserver(this.#u),this.#e.mode.removeObserver(this.#d),this.#e.mouseEvents.removeObserver(this.#a);};#a=e=>{let{mode:t}=this.#e;if(!t.getClosedGeometry()&&(e.type==="lastPointMouseClick"&&e.data?(this.hideDynamicLine(),this.#t=!1):e.type==="lastPointMouseClick"&&!e.data&&(this.#t=!0),!!this.#t&&((e.type==="pointMouseEnter"||e.type==="lineMouseEnter")&&e.data&&this.hideDynamicLine(),(e.type==="pointMouseLeave"||e.type==="lineMouseLeave")&&e.data))){let{store:i}=this.#e;this.#i=i.tail?.val,this.#o=i.tail?.val,this.showDynamicLine();}};#p=e=>{let{store:t,options:i}=this.#e;e?.tail?.val&&!u.isClosedGeometry(t,i)&&(this.#i=t.tail?.val,this.showDynamicLine());};#u=e=>{e.type==="STORE_MUTATED"&&(this.#s(e.data),e.data.size||this.hideDynamicLine());};#d=e=>{let{store:t}=this.#e,i=e.data;e.type==="CLOSED_GEOMETRY_CHANGED"&&(i&&this.hideDynamicLine(),!i&&t?.tail?.val&&(this.#i=t?.tail?.val,this.showDynamicLine()));};initDynamicEvents=()=>{let{map:e}=this.#e;e.on("click",this.#v),e.on("mousemove",this.#n),e.on(v.REMOVEALL,this.hideDynamicLine),e.on(v.UNDO,this.#m),e.on(v.RIGHTCLICKREMOVE,this.#c);};removeEvents=()=>{let{map:e}=this.#e;e.off("click",this.#v),e.off("mousemove",this.#n),e.off(v.REMOVEALL,this.hideDynamicLine),e.off(v.UNDO,this.#m),e.off(v.RIGHTCLICKREMOVE,this.#c);};hideDynamicLine=()=>{let{map:e}=this.#e;this.#i=null,this.#o=null,this.#r=null,e.off("mousemove",this.#n);let t=e.getSource(c.LineDynamicSource);t&&t.setData(me),e.setLayoutProperty(s.LineDynamicLayer,"visibility","none");};showDynamicLine=()=>{let{map:e,store:t}=this.#e;if(t.size&&this.#i?.lat&&this.#i.lng&&this.#o?.lng&&this.#o?.lat){let i=[this.#i.lng,this.#i.lat],o=[this.#o.lng,this.#o.lat];this.#r=M.getLine(i,o),e.setLayoutProperty(s.LineDynamicLayer,"visibility","visible"),this.#o&&this.#h({lng:this.#o?.lng,lat:this.#o?.lat});}e.on("mousemove",this.#n);};#h=e=>{if(!this.#r)return;let{map:t}=this.#e;this.#r.features[0].geometry.coordinates[1]=[e.lng,e.lat];let i=t.getSource(c.LineDynamicSource);i&&i.setData(this.#r);};#y=e=>{this.#h(e.lngLat);};#v=e=>{let{mode:t}=this.#e,i=m.isFeatureTriggered(e,[s.LineLayerTransparent,s.LineLayer]);i&&t.getBreak()&&(this.#o={lng:e.lngLat.lng,lat:e.lngLat.lat}),!i&&this.hideDynamicLine();};#m=e=>{let{store:t,options:i}=this.#e;if(!u.isClosedGeometry(t,i)){let o=e.target.unproject({x:e.originalEvent.x,y:e.originalEvent.y});this.#o={lng:o.lng,lat:o.lat},this.#i=t.tail?.val,this.showDynamicLine();}t.size===0&&this.hideDynamicLine();};#c=e=>{let{store:t,mode:i}=this.#e;i.getClosedGeometry()||(this.#o={lng:e.coordinates.lng,lat:e.coordinates.lat},this.#i=t.tail?.val,this.showDynamicLine()),t.size===0&&this.hideDynamicLine();}};var Se=22,W=class{props;#e;#t;constructor(e){this.props=e,this.#e=!1,this.#t=null;}initEvents(){let{map:e}=this.props;e.on("click",s.LineLayerTransparent,this.#i),e.on("mousemove",s.LineLayerTransparent,this.#r),e.on("mouseenter",s.LineLayerTransparent,this.#n),e.on("mouseleave",s.LineLayerTransparent,this.#s);}removeEvents(){let{map:e}=this.props;e.off("click",s.LineLayerTransparent,this.#i),e.off("mousemove",s.LineLayerTransparent,this.#r),e.off("mouseenter",s.LineLayerTransparent,this.#n),e.off("mouseleave",s.LineLayerTransparent,this.#s);}#i=e=>{let{store:t,map:i,mode:o}=this.props;if(Le(e))return;let r=ye(e,t);r&&(fe(e,this.props),h.addPoint({...r,total:t.size},i,o));};#o=e=>{if(g.setSinglePointVisible(e),e.target.getLayer(s.SinglePointLayer)){let i=e.target.getSource(c.SinglePointSource);i&&i.setData({type:"Feature",geometry:{type:"Point",coordinates:[e.lngLat.lng,e.lngLat.lat]},properties:{}});}};#r=S(e=>{if(m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer]))return;let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||(this.#t=e,!this.#e&&(this.#e=!0,requestAnimationFrame(()=>{this.#t&&(this.#o(this.#t),this.#e=!1);})));},Se);#n=e=>{let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer])||(t.lineMouseEnter=!0,g.setSinglePointVisible(e));};#s=e=>{let{mouseEvents:t}=this.props;t.pointMouseDown||t.pointMouseEnter||(t.lineMouseLeave=!0,g.setSinglePointHidden(e));}};var X=class{props;#e;#t;#i;#o;constructor(e){this.props=e,this.#e=new $(e),this.#t=e.options.pointGeneration==="manual"?new W(e):null,this.#i=null,this.#o="default";}init(){this.#r(),this.#n(),this.#s();}#r=()=>{window.innerWidth<=ve||this.props.options.dynamicLine&&(this.#i=new Z(this.props));};#n(){!this.props.mode.getBreak()&&(this.#t?.initEvents(),this.props.options.dynamicLine&&this.#i?.initDynamicEvents());}#s(){this.props.mode.addObserver(this.#u),this.props.mouseEvents.addObserver(this.#p);}remove(){this.#l(),this.#a();}#l(){this.props.mode.removeObserver(this.#u),this.props.mouseEvents.removeObserver(this.#p),this.props.options.dynamicLine&&this.#i?.removeConsumers();}#a(){this.#e.removeBreakEvents(),this.#t?.removeEvents(),this.props.options.dynamicLine&&(this.#i?.removeEvents(),this.#i?.removeLine());}#p=e=>{let{type:t,data:i}=e,{mode:o}=this.props;if(!(!i||!o.getBreak()))switch(t){case"pointMouseDown":this.#e.removeBreakEvents(),this.#e.hideBreakLine();break;case"pointMouseUp":this.#e.initBreakEvents();break;}};#u=e=>{let{type:t,data:i}=e;t==="MODE_CHANGED"&&this.#o==="break"&&(this.#e.removeBreakEvents(),this.#t?.initEvents(),this.#o="default"),t==="BREAK_CHANGED"&&i&&this.#o==="default"&&(this.#t?.removeEvents(),this.#e.initBreakEvents(),this.#o="break");}};var xe=n=>{n.setPaintProperty(s.FirstPointLayer,"circle-radius",T.large),n.setPaintProperty(s.FirstPointLayer,"circle-stroke-color",U.large);},Oe=n=>{n.setPaintProperty(s.FirstPointLayer,"circle-radius",T.default),n.setPaintProperty(s.FirstPointLayer,"circle-stroke-color",U.default);},de=(n,e)=>{e==="large"?xe(n):Oe(n);},ge=n=>{n.getLayer(s.LineLayerTransparent)&&n.removeLayer(s.LineLayerTransparent);},Pe=(n,e)=>{if(n.getLayer(s.LineLayerTransparent))return;let i=z(e).find(o=>o.id===s.LineLayerTransparent);i&&n.addLayer(i);};var Q=class{#e;#t;#i;#o;constructor(e,t){this.#t=e,this.#e=!1,this.#o=t,this.#i=new x,this.initLayer(),this.#l();}#r=()=>{let{mode:e,store:t}=this.#t;e.addObserver(this.#p),t.addObserver(this.#u);};#n=()=>{let{mode:e,store:t}=this.#t;e.removeObserver(this.#p),t.removeObserver(this.#u);};initLayer(){let{map:e}=this.#t;e.setLayoutProperty(s.FirstPointLayer,"visibility","visible");}#s=()=>{let{map:e}=this.#t;e.on("mouseenter",s.FirstPointLayer,this.#o.onPointMouseEnter),e.on("mouseleave",s.FirstPointLayer,this.#o.onPointMouseLeave),e.on("mousedown",s.FirstPointLayer,this.#o.onPointMouseDown),e.on("mouseup",s.FirstPointLayer,this.#o.onPointMouseUp),e.on("touchend",s.FirstPointLayer,this.#o.onPointMouseUp),e.on("touchstart",s.FirstPointLayer,this.#o.onPointMouseDown);};#l(){let{map:e}=this.#t;e.on("click",s.FirstPointLayer,this.#d),e.on("mouseenter",s.FirstPointLayer,this.#c),e.on("mouseleave",s.FirstPointLayer,this.#v),e.on("mouseup",s.FirstPointLayer,this.#y),e.on("mousedown",s.FirstPointLayer,this.#h),this.#s(),this.#r();}#a=()=>{let{map:e}=this.#t;e.off("mouseenter",s.FirstPointLayer,this.#o.onPointMouseEnter),e.off("mouseleave",s.FirstPointLayer,this.#o.onPointMouseLeave),e.off("mousedown",s.FirstPointLayer,this.#o.onPointMouseDown),e.off("mouseup",s.FirstPointLayer,this.#o.onPointMouseUp),e.off("touchend",s.FirstPointLayer,this.#o.onPointMouseUp),e.off("touchstart",s.FirstPointLayer,this.#o.onPointMouseDown);};removeEvents(){let{map:e}=this.#t;e.off("click",s.FirstPointLayer,this.#d),e.off("mouseenter",s.FirstPointLayer,this.#c),e.off("mouseleave",s.FirstPointLayer,this.#v),e.off("mouseup",s.FirstPointLayer,this.#y),this.#a(),this.#n();}#p=e=>{let{map:t,options:i}=this.#t,{type:o,data:r}=e;o==="MODE_CHANGED"&&(r==="line"&&!i.modes.line.closeGeometry?(g.setFirstPointHidden(t),pe.closedGeometry(t)):(g.setFirstPointVisible(t),pe.default(t)));};#u=b(e=>{let{map:t,store:i,options:o}=this.#t,{type:r}=e;(r==="STORE_MUTATED"||r==="STORE_DETACHED")&&(u.canCloseGeometry(i,o)?de(t,"large"):de(t,"default"));},10);#d=()=>{let{store:e,map:t,mode:i,tiles:o,options:r}=this.#t;if(u.canCloseGeometry(e,r)){let a=Object.assign({},e.head?.val,{id:L(),total:e.size});if(r.pointGeneration==="auto"&&e.tail?.val){let l=y.createAuxiliaryPoint(e.tail?.val,a);e.push(l);}u.closeGeometry(e,i),h.addPoint(a,t,i),o.render();}};#h=()=>{this.#e=!0,this.#i.remove();};#y=()=>{this.#e=!1;};#v=()=>{let{mouseEvents:e}=this.#t;this.#e||(e.firstPointMouseLeave=!0,this.#i.remove());};#m=()=>{let{mode:e,options:t}=this.#t;return e.getMode()==="line"&&t.modes.line.closeGeometry?t.locale.closeLine:e.getMode()==="polygon"?t.locale.createPolygon:""};#c=e=>{let{mode:t,mouseEvents:i,store:o,options:r}=this.#t;if(i.firstPointMouseEnter=!0,!(t.getClosedGeometry()||this.#e)&&u.canCloseGeometry(o,r)){let{x:a,y:l}=e.originalEvent;if(a&&l){this.#i.create({label:this.#m(),placement:"bottom"});let C=this.#i._label?this.#i._label.clientWidth/2:0;this.#i.setPosition({x:a-C,y:l+14});}}}};var ee=class{#e;#t;constructor(e,t){this.#e=e,this.#t=t,this.#r();}#i=()=>{let{map:e}=this.#e;e.on("mouseenter",s.AuxiliaryPointLayer,this.#t.onPointMouseEnter),e.on("mouseleave",s.AuxiliaryPointLayer,this.#t.onPointMouseLeave),e.on("mousedown",s.AuxiliaryPointLayer,this.#t.onPointMouseDown),e.on("mouseup",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.on("touchend",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.on("touchstart",s.AuxiliaryPointLayer,this.#t.onPointMouseDown);};#o=()=>{let{map:e}=this.#e;e.off("mouseenter",s.AuxiliaryPointLayer,this.#t.onPointMouseEnter),e.off("mouseleave",s.AuxiliaryPointLayer,this.#t.onPointMouseLeave),e.off("mousedown",s.AuxiliaryPointLayer,this.#t.onPointMouseDown),e.off("mouseup",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.off("touchend",s.AuxiliaryPointLayer,this.#t.onPointMouseUp),e.off("touchstart",s.AuxiliaryPointLayer,this.#t.onPointMouseDown);};#r(){let{map:e}=this.#e;e.on("mousedown",s.AuxiliaryPointLayer,this.#l),e.on("touchstart",s.AuxiliaryPointLayer,this.#l),e.on("mousedown",s.PointsLayer,this.#s),e.on("touchstart",s.PointsLayer,this.#s),this.#i();}removeEvents(){let{map:e}=this.#e;e.off("mousedown",s.AuxiliaryPointLayer,this.#l),e.off("touchstart",s.AuxiliaryPointLayer,this.#l),e.off("mousedown",s.PointsLayer,this.#s),e.off("touchstart",s.PointsLayer,this.#s),this.#o();}#n=e=>{if(!e)return;let{store:t}=this.#e,i=e.next,o=e.prev;if(o){let r=y.createAuxiliaryPoint(o.val,e.val);t.insert(r,o);}if(i){let r=y.createAuxiliaryPoint(e.val,i.val);t.insert(r,e);}};#s=e=>{e.preventDefault();};#l=e=>{let{store:t,tiles:i,map:o}=this.#e;if(e.originalEvent.button===2)return;let r=m.queryPointId(o,e.point),a=t.findNodeById(r);a&&a.val&&(a.val.isAuxiliary=!1,this.#n(a)),i.render();}};var te=class{selectedNode=null;selectedIdx=null;startCoordinates=null;enteredStep=null;lastEvent=null;getSelectedNode(){return this.selectedNode}getSelectedIdx(){return this.selectedIdx}getStartCoordinates(){return this.startCoordinates}getEnteredStep(){return this.enteredStep}getLastEvent(){return this.lastEvent}setSelectedNode(e){this.selectedNode=e;}setSelectedIdx(e){this.selectedIdx=e;}setStartCoordinates(e){this.startCoordinates=e;}setEnteredStep(e){this.enteredStep=e;}setLastEvent(e){this.lastEvent=e;}clearLastEvent(){this.lastEvent=null;}reset(){this.selectedNode=null,this.selectedIdx=null,this.startCoordinates=null,this.enteredStep=null,this.lastEvent=null;}partialReset(){this.selectedNode=null,this.selectedIdx=null,this.startCoordinates=null,this.lastEvent=null;}};var ie=class{props;state;constructor(e,t){this.props=e,this.state=t;}updateMainPoint(e,t){e.val&&(e.val.lat=t.lngLat.lat,e.val.lng=t.lngLat.lng);}updateAuxiliaryPoints(e,t){let i=this.getAuxPointsLatLng(t);i&&(this.updatePrevAuxPoint(e,i.prev),this.updateNextAuxPoint(e,i.next));}updatePrevAuxPoint(e,t){e.prev?.val&&t&&(e.prev.val.lat=t.lat,e.prev.val.lng=t.lng);}updateNextAuxPoint(e,t){e.next?.val&&t&&(e.next.val.lat=t.lat,e.next.val.lng=t.lng);}updateStore=()=>{let e=this.state.getLastEvent(),t=this.state.getSelectedNode();!e||!t?.val||(this.updateMainPoint(t,e),this.updateAuxiliaryPoints(t,e));};getAuxPointsLatLng=e=>{let t=this.state.getSelectedNode();if(!t)return null;let{options:i}=this.props,o=t?.prev?.prev,r=t?.next?.next;return i.pointGeneration==="auto"?{next:r?.val?y.getMidpoint(r.val,e.lngLat):null,prev:o?.val?y.getMidpoint(e.lngLat,o.val):null}:null};addPointToStore(e){let{store:t,options:i}=this.props,o={...e.lngLat,id:L()};if(i.pointGeneration==="auto"&&t?.tail?.val&&t.size>=1){let a=y.createAuxiliaryPoint(t.tail.val,o);t.push(a);}return y.addPointToMap(e,this.props)}recalculateAuxiliaryPoints(e){if(!e)return;let{store:t}=this.props,i=e.next,o=e.prev,r=e.next?.next,a=e.prev?.prev;i?.val&&t.removeNodeById(i.val.id),o?.val&&t.removeNodeById(o.val.id);let l=t.size!==3;if(r?.val&&a?.val&&l){let E=y.createAuxiliaryPoint(r.val,a.val);t.insert(E,a);}}removePointFromStore(e){let{store:t,options:i}=this.props;if(t.size===1){t.reset();return}let o=t.findNodeById(e);!o?.val?.isAuxiliary&&(t.removeNodeById(e),i.pointGeneration==="auto"&&this.recalculateAuxiliaryPoints(o));}};var oe=class{props;events;firstPoint;auxPoints;pointState;topologyManager;constructor(e){this.props=e,this.pointState=new te,this.topologyManager=new ie(e,this.pointState),this.events={onPointMouseEnter:this.#p,onPointMouseLeave:this.#u,onPointMouseDown:this.#m,onPointMouseUp:this.#c,onMapMouseMove:this.#a},this.firstPoint=new Q(this.props,this.events),this.auxPoints=new ee(this.props,this.events);}#e=()=>{this.props.mode.addObserver(this.#h),this.props.store.addObserver(this.#d);};#t=()=>{this.props.mode.removeObserver(this.#h),this.props.store.removeObserver(this.#d);};initEvents=()=>{let{map:e}=this.props;e.on("click",this.#s),e.on("dblclick",this.#o),e.on("mouseenter",s.PointsLayer,this.#p),e.on("mouseleave",s.PointsLayer,this.#u),e.on("mousedown",s.PointsLayer,this.#m),e.on("click",s.PointsLayer,this.#i),e.on("mouseup",s.PointsLayer,this.#c),e.on("touchend",s.PointsLayer,this.#c),e.on("touchstart",s.PointsLayer,this.#m),this.#e();};removeEvents=()=>{let{map:e}=this.props;e.off("click",this.#s),e.off("dblclick",this.#o),e.off("mousemove",this.#a),e.off("mouseenter",s.PointsLayer,this.#p),e.off("mouseleave",s.PointsLayer,this.#u),e.off("mousedown",s.PointsLayer,this.#m),e.off("click",s.PointsLayer,this.#i),e.off("mouseup",s.PointsLayer,this.#c),e.off("touchend",s.PointsLayer,this.#c),e.off("touchstart",s.PointsLayer,this.#m),this.firstPoint?.removeEvents(),this.auxPoints?.removeEvents(),this.#t();};#i=e=>{let{mouseEvents:t,store:i,map:o,options:r}=this.props,a=m.queryPointId(o,e.point);P.isLastPoint(i,r,a)&&(t.lastPointMouseClick=!0,t.lastPointMouseUp=!1);};#o=e=>{e.preventDefault();};#r=e=>{let{store:t,tiles:i}=this.props;if(t.size===1)t.reset();else {let o=m.queryPointId(this.props.map,e.point),r=t.findNodeById(o);this.topologyManager.removePointFromStore(o),!r?.val?.isAuxiliary&&(h.pointRemoveRightClick({...r?.val,total:t.size},this.props.map),u.switchToLineModeIfCan(this.props));}i.render();};#n=e=>m.isFeatureTriggered(e,[s.PointsLayer,s.FirstPointLayer,s.LineLayerTransparent,s.LineLayerBreak]);#s=e=>{let{mode:t,mouseEvents:i,map:o,store:r,tiles:a}=this.props;if(t.getClosedGeometry()||this.#n(e))return;i.lastPointMouseClick&&(i.lastPointMouseClick=!1),o.getCanvasContainer().style.cursor="grab";let l=this.topologyManager.addPointToStore(e);h.addPoint({...l,total:r.size},o,t),g.setSinglePointHidden(e),a.render();};#l=e=>{e.originalEvent.buttons===0&&this.#c();};#a=S(e=>{let{mouseEvents:t}=this.props;if(t.pointMouseDown){if(this.pointState.setLastEvent(e),!this.pointState.getSelectedNode())return;let{tiles:i}=this.props;this.#l(this.pointState.getLastEvent());let o=this.topologyManager.getAuxPointsLatLng(this.pointState.getLastEvent());i.renderOnMouseMove(this.pointState.getSelectedIdx(),e.lngLat,o);}},17);#p=e=>{let{mouseEvents:t,map:i,store:o,options:r}=this.props;if(t&&(t.pointMouseEnter=!0,t.pointMouseDown))return;g.setSinglePointHidden(e);let a=m.queryPointId(i,e.point);P.isLastPoint(o,r,a)&&(t.lastPointMouseEnter=!0,t.lastPointMouseLeave=!1);let l=o.findStepById(a);l&&(this.pointState.setEnteredStep(l),h.enterPoint(Object.assign({},l,{total:o.size}),i));};#u=e=>{let{mouseEvents:t,store:i,map:o,options:r}=this.props;if(t&&(t.pointMouseEnter=!1,e.originalEvent.buttons===0&&(t.pointMouseLeave=!0),t.pointMouseDown))return;let a=m.queryPointId(o,e.point);P.isLastPoint(i,r,a)&&(t.lastPointMouseEnter=!1,t.lastPointMouseLeave=!0),h.leavePoint(Object.assign({},this.pointState.getEnteredStep(),{total:i.size}),o);};#d=e=>{e.type==="STORE_MUTATED"&&e.data.size===0&&this.pointState.reset();};#h=e=>{(e.type==="BREAK_CHANGED"||e.type==="MODE_CHANGED")&&this.pointState.reset();};#y=()=>{let{store:e,panel:t,options:i}=this.props,o=this.pointState.getSelectedNode();o?.val&&P.isLastPoint(e,i,o.val.id)&&t.hidePanel();};#v=e=>{let{store:t,map:i}=this.props,o=m.queryPointId(i,e.point),r=t.findNodeById(o);r&&this.pointState.setSelectedNode(r);};#m=e=>{e.preventDefault(),this.pointState.clearLastEvent();let{mouseEvents:t,map:i,store:o,options:r}=this.props;if(e.originalEvent.button===2){this.#r(e);return}this.#v(e),ge(i),this.#y();let a=m.queryPoint(i,e.point),l=u.getGeometryIndex(o,a?.properties.id);this.pointState.setSelectedIdx(l),t&&(t.pointMouseDown=!0),this.pointState.setStartCoordinates(e.lngLat),i.on("mousemove",this.#a),i.on("touchmove",this.#a);};#c=()=>{let{mouseEvents:e,store:t,panel:i,map:o,options:r}=this.props;o.off("mousemove",this.#a),o.off("touchmove",this.#a),e.pointMouseUp=!0;let a=this.pointState.getSelectedNode(),l=this.pointState.getLastEvent(),E=this.pointState.getStartCoordinates();a&&a.val&&(l&&(this.topologyManager.updateStore(),this.pointState.clearLastEvent()),t.notify({type:"STORE_MUTATED",data:t}),i?.showPanel(),h.movePoint({id:a.val.id,total:t.size,end:{lat:a.val.lat,lng:a.val.lng},start:E},o),this.pointState.partialReset()),e&&(e.pointMouseDown=!1),Pe(o,r);}};var ne=class extends N{#e;#t;#i;#o;#r;constructor(e){super({...e}),this.#e=e,this.#t=new K(e),this.#i=new j(e),this.#o=new oe(e),this.#r=new X(e),e.map.on("mode:initialize",this.#n),e.map.on("mode:remove",this.#s);}#n=()=>{this.#r.init(),this.#t?.initEvents(),this.#t?.initConsumers(),this.#o?.initEvents();};#s=()=>{this.#t?.removeEvents(),this.#t?.removeConsumers(),this.#o?.removeEvents(),this.#r?.remove();};removeMapEventsAndConsumers=()=>{this.#t?.removeEvents(),this.#o?.removeEvents(),this.#i?.remove(),this.#r?.remove(),this.#e.map.off("mode:initialize",this.#n);}};var se=class{#e;_line;_polygon;_break;_container;constructor(e){this.#e=e.options,this._line=void 0,this._polygon=void 0,this._break=void 0,this._container=p.create("div","mapboxgl-ctrl mapboxgl-ctrl-group maplibregl-ctrl maplibregl-ctrl-group"),this.createControl(e);}createControlButton=(e,t,i,o)=>{let r=this.#e.panel.size,a=p.create("button",`control-button control-button-${r}`,this._container);return a.setAttribute("aria-label",t),a.setAttribute("data-type",e),i&&a.classList.add("control-button-active"),o&&(a.setAttribute("disabled","true"),a.setAttribute("aria-disabled","true")),p.create("span",`icon ${e} icon-${r}`,a),a};#t=e=>{let{mode:t,options:i}=e,o=this.#e.modes.line.visible,r=i.locale.line;o&&(this._line=this.createControlButton("line",r,t.getMode()==="line"));};#i=e=>{let{mode:t,options:i}=e,o=this.#e.modes.polygon.visible,r=i.locale.polygon;o&&(this._polygon=this.createControlButton("polygon",r,t.getMode()==="polygon"));};#o=e=>{let{mode:t,options:i}=e,o=this.#e.modes.breakGeometry.visible,r=i.locale.break;if(o){let l=!this.#e?.initial?.closeGeometry,E=t.getBreak();this._break=this.createControlButton("break",r,E,l);}};createControl=e=>{this.#t(e),this.#i(e),this.#o(e);};getContainer=()=>this._container};function Te(n){return n.initial?.geometry?n.initial?.geometry:n.modes.initial?n.modes.initial:null}var re=class extends O{#e;#t;#i;constructor(e){super(),this.#e=Te(e),this.#t=!1,this.#i=e.initial?.closeGeometry??!1;}getMode=()=>this.#e;setMode=e=>{this.#e=e,this.setBreak(!1),this.notify({type:"MODE_CHANGED",data:e});};getBreak=()=>this.#t;setBreak=e=>{this.#t=e,this.notify({type:"BREAK_CHANGED",data:e});};getClosedGeometry=()=>this.#i;setClosedGeometry=e=>{this.#i=e,this.notify({type:"CLOSED_GEOMETRY_CHANGED",data:this.#i});};isPolygon=()=>this.#e==="polygon"&&this.getClosedGeometry();reset=()=>{this.setMode(this.getMode()),this.setClosedGeometry(!1);};pingConsumers=()=>{this.notify({type:"MODE_CHANGED",data:this.getMode()}),this.notify({type:"CLOSED_GEOMETRY_CHANGED",data:this.getClosedGeometry()});}};var ae=class{#e;#t;constructor(e){this.#e=e,this.#t=this.#e.map.getCanvasContainer(),this.#t.style.cursor=e.mode.getMode()?f.CROSSHAIR:f.AUTO,this.#i();}set=e=>{this.#t.style.cursor=e;};get=()=>this.#t.style.cursor;handleMouseLeave=b(()=>{let{mouseEvents:e,mode:t}=this.#e;if(!e.pointMouseDown){if(!t.getMode()){this.set(f.AUTO);return}t.getClosedGeometry()?this.set(f.AUTO):this.set(f.CROSSHAIR);}},10);handleFirstPointMouseEnter=b(()=>{let{store:e,options:t}=this.#e;u.canCloseGeometry(e,t)&&this.set(f.POINTER);},10);#i(){let{mouseEvents:e}=this.#e;e.addObserver(this.#o);}removeConsumers(){let{mouseEvents:e}=this.#e;e.removeObserver(this.#o);}#o=e=>{let{mode:t,mouseEvents:i,store:o,options:r}=this.#e;if(t.getBreak())return;let{type:a,data:l}=e;if(l)switch(a){case"pointMouseDown":this.set(f.GRABBING);break;case"pointMouseUp":this.set(f.GRAB);break;case"pointMouseEnter":if(i.pointMouseDown)return;this.set(f.GRAB);break;case"pointMouseLeave":this.handleMouseLeave();break;case"lineMouseEnter":if(i.pointMouseDown)return;this.set(f.POINTER);break;case"lineMouseLeave":this.handleMouseLeave();break;case"firstPointMouseEnter":this.handleFirstPointMouseEnter();break;case"firstPointMouseLeave":this.handleMouseLeave();break;case"lastPointMouseEnter":u.isClosedGeometry(o,r)||this.set(f.POINTER);break;case"lastPointMouseLeave":this.handleMouseLeave();break;}}};var le=class extends O{#e;#t;#i;#o;#r;#n;#s;#l;#a;#p;#u;#d;constructor(){super(),this.#e=!1,this.#t=!1,this.#i=!1,this.#o=!1,this.#r=!1,this.#n=!1,this.#s=!1,this.#l=!1,this.#a=!1,this.#p=!1,this.#u=!1,this.#d=!1;}get firstPointMouseEnter(){return this.#e}set firstPointMouseEnter(e){this.#e=e,this.notify({type:"firstPointMouseEnter",data:e});}get firstPointMouseLeave(){return this.#t}set firstPointMouseLeave(e){this.#t=e,this.notify({type:"firstPointMouseLeave",data:e});}get lastPointMouseClick(){return this.#i}set lastPointMouseClick(e){this.#i=e,this.notify({type:"lastPointMouseClick",data:e});}get lastPointMouseUp(){return this.#o}set lastPointMouseUp(e){this.#o=e,this.notify({type:"lastPointMouseUp",data:e});}get lastPointMouseEnter(){return this.#r}set lastPointMouseEnter(e){this.#r=e,this.notify({type:"lastPointMouseEnter",data:e});}get lastPointMouseLeave(){return this.#n}set lastPointMouseLeave(e){this.#n=e,this.notify({type:"lastPointMouseLeave",data:e});}get pointMouseDown(){return this.#s}set pointMouseDown(e){this.#s=e,this.notify({type:"pointMouseDown",data:e});}get pointMouseUp(){return this.#l}set pointMouseUp(e){this.#l=e,this.notify({type:"pointMouseUp",data:e});}get pointMouseEnter(){return this.#a}set pointMouseEnter(e){this.#a=e,this.notify({type:"pointMouseEnter",data:e});}get pointMouseLeave(){return this.#p}set pointMouseLeave(e){this.#p=e,this.notify({type:"pointMouseLeave",data:e});}get lineMouseEnter(){return this.#u}set lineMouseEnter(e){this.#u=e,this.notify({type:"lineMouseEnter",data:e});}get lineMouseLeave(){return this.#d}set lineMouseLeave(e){this.#d=e,this.notify({type:"lineMouseLeave",data:e});}};var F=class{static allStepsHaveIds(e){return e.every(t=>"id"in t&&t.id!==void 0)}static checkIfMissingIds(e,t){let i=!t,o=!this.allStepsHaveIds(e);if(i&&o)throw new Error(I.MISSING_IDS)}static checkIfEnoughPointsToClose(e,t){if(t&&e.length<3)throw new Error(I.NOT_ENOUGH_POINTS_TO_CLOSE)}static checkIfPolygonIsClosed(e){let{closeGeometry:t,steps:i}=e;if(i){let o=i[0]?.lng,r=i[i.length-1]?.lng,a=i[0]?.lat,l=i[i.length-1]?.lat;if((o!==r||a!==l)&&t)throw new Error(I.FIRST_LAST_POINT_NOT_EQUAL)}}static checkInitialStepsOption(e){let{closeGeometry:t,generateId:i,steps:o}=e;this.checkIfMissingIds(o,i),this.checkIfEnoughPointsToClose(o,t),this.checkIfPolygonIsClosed(e);}static init(e){return e?{pointGeneration:e.pointGeneration??d.pointGeneration,panel:we(e),modes:ke(e),layersPaint:Ae(e),initial:e.initial||d.initial,locale:De(e),dynamicLine:e.dynamicLine??d.dynamicLine}:d}};function we(n){return {size:n.panel?.size||d.panel.size,buttons:{undo:{visible:n.panel?.buttons?.undo?.visible??d.panel.buttons.undo.visible},delete:{visible:n.panel?.buttons?.delete?.visible??d.panel.buttons.delete.visible},save:{visible:n.panel?.buttons?.save?.visible??d.panel.buttons.save.visible,clearOnSave:n.panel?.buttons?.save?.clearOnSave??d.panel.buttons.save.clearOnSave}}}}function ke(n){return {initial:n.modes?.initial||d.modes.initial,line:{visible:n?.modes?.line?.visible!==void 0?n.modes.line.visible:n?.initial?.geometry==="line"||d.modes.line.visible,closeGeometry:n?.modes?.line?.closeGeometry??d.modes.line.closeGeometry},polygon:{visible:n?.modes?.polygon?.visible!==void 0?n.modes.polygon.visible:n?.initial?.geometry==="polygon"||d.modes.polygon.visible},breakGeometry:{visible:n?.modes?.breakGeometry?.visible??d.modes.breakGeometry.visible}}}function Ae(n){return {onLinePoint:{"circle-radius":n.layersPaint?.onLinePoint?.["circle-radius"]||k["circle-radius"],"circle-color":n.layersPaint?.onLinePoint?.["circle-color"]||k["circle-color"],"circle-stroke-color":n.layersPaint?.onLinePoint?.["circle-stroke-color"]||k["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.onLinePoint?.["circle-stroke-width"]||k["circle-stroke-width"],...n.layersPaint?.onLinePoint},firstPoint:{"circle-radius":n.layersPaint?.firstPoint?.["circle-radius"]||w["circle-radius"],"circle-color":n.layersPaint?.firstPoint?.["circle-color"]||w["circle-color"],"circle-stroke-color":n.layersPaint?.firstPoint?.["circle-stroke-color"]||w["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.firstPoint?.["circle-stroke-width"]||w["circle-stroke-width"],...n.layersPaint?.firstPoint},points:{"circle-radius":n.layersPaint?.points?.["circle-radius"]||A["circle-radius"],"circle-color":n.layersPaint?.points?.["circle-color"]||A["circle-color"],"circle-stroke-color":n.layersPaint?.points?.["circle-stroke-color"]||A["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.points?.["circle-stroke-width"]||A["circle-stroke-width"],...n.layersPaint?.points},auxiliaryPoint:{"circle-radius":n.layersPaint?.auxiliaryPoint?.["circle-radius"]||R["circle-radius"],"circle-color":n.layersPaint?.auxiliaryPoint?.["circle-color"]||R["circle-color"],"circle-stroke-color":n.layersPaint?.auxiliaryPoint?.["circle-stroke-color"]||R["circle-stroke-color"],"circle-stroke-width":n.layersPaint?.auxiliaryPoint?.["circle-stroke-width"]||R["circle-stroke-width"],...n.layersPaint?.auxiliaryPoint},line:{"line-width":n.layersPaint?.line?.["line-width"]||D["line-width"],"line-color":n.layersPaint?.line?.["line-color"]||D["line-color"],"line-opacity":n.layersPaint?.line?.["line-opacity"]||D["line-opacity"],...n.layersPaint?.line},polygon:{"fill-color":n.layersPaint?.polygon?.["fill-color"]||B["fill-color"],"fill-opacity":n.layersPaint?.polygon?.["fill-opacity"]||B["fill-opacity"],...n.layersPaint?.polygon},breakLine:{"line-width":n.layersPaint?.breakLine?.["line-width"]||_["line-width"],"line-color":n.layersPaint?.breakLine?.["line-color"]||_["line-color"],"line-dasharray":n.layersPaint?.breakLine?.["line-dasharray"]||_["line-dasharray"],...n.layersPaint?.breakLine}}}function De(n){return {save:n.locale?.save??d.locale.save,delete:n.locale?.delete??d.locale.delete,undo:n.locale?.undo??d.locale.undo,line:n.locale?.line??d.locale.line,polygon:n.locale?.polygon??d.locale.polygon,break:n.locale?.break??d.locale.break,closeLine:n.locale?.closeLine??d.locale.closeLine,createPolygon:n.locale?.createPolygon??d.locale.createPolygon}}var ce=class n{#e;#t;#i;#o;#r;#n;#s;#l;#a;static#p=null;static#u=!1;constructor(e){if(this.#o=F.init(e),this.#o.initial&&F.checkInitialStepsOption(this.#o.initial),n.#u)throw new Error("Use 'DrawLibre.getInstance()' instead of 'new DrawLibre()'.");n.#u=!0,this.#t=void 0,this.#i=void 0,this.#r=void 0,this.#n=void 0,this.#s=void 0,this.#a=void 0,this.#l=void 0;}static getInstance(e){return n.#p||(n.#p=new n(e)),n.#p}onAdd=e=>{this.#t=new G(this.#o),this.#i=new re(this.#o),this.#s=new H({map:e,mode:this.#i,options:this.#o,store:this.#t}),this.#n=new N({map:e,store:this.#t,options:this.#o,mode:this.#i});let t=new se({options:this.#o,mode:this.#i});return this.#a=new le,this.#l=new ae({map:e,mode:this.#i,mouseEvents:this.#a,store:this.#t,options:this.#o}),this.#r=new ne({map:e,store:this.#t,options:this.#o,panel:this.#s,control:t,mode:this.#i,tiles:this.#n,mouseEvents:this.#a}),this.#i.getMode()&&e.fire("mode:initialize"),this.#i.pingConsumers(),this.#t.pingConsumers(),this.#e=t.getContainer(),this.#e};onRemove=()=>{this.#l?.removeConsumers(),this.#n?.removeTiles(),this.#r?.removeMapEventsAndConsumers(),this.#s?.removePanel(),this.#t?.reset(),this.#i?.unsubscribe(),this.#e&&p.remove(this.#e);};setSteps=e=>{if(Array.isArray(e))for(let t of e){let i={...t,id:t.id||L()};this.#t?.push(i);}else throw new Error("Invalid argument. Expected an array of steps.");this.#n?.render();};findStepById=e=>this.#t?.findStepById(e);findNodeById=e=>this.#t?.findNodeById(e);getAllSteps=(e="array")=>{if(e==="array"&&this.#t)return P.toArray(this.#t.head);if(e==="linkedlist")return this.#t;throw new Error("Invalid type specified. Use 'array' or 'linkedlist'.")};setOptions=e=>{this.#o=e(this.#o);};removeAllSteps=()=>{this.#t?.reset(),this.#s?.removePanel(),this.#n?.render();}};
|
|
2
2
|
|
|
3
|
-
export {
|
|
3
|
+
export { ce as default };
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
|
5
5
|
//# sourceMappingURL=index.js.map
|