leaflet-polydraw 2.0.0-alpha.1 → 2.0.0

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.
Files changed (43) hide show
  1. package/README.md +7 -2
  2. package/dist/icons/icon-donut.svg +5 -0
  3. package/dist/icons/icon-warning.svg +22 -0
  4. package/dist/leaflet-polydraw.css +1 -1
  5. package/dist/polydraw.es.js +6377 -3698
  6. package/dist/polydraw.es.js.map +1 -1
  7. package/dist/polydraw.umd.min.js +1 -1
  8. package/dist/polydraw.umd.min.js.map +1 -1
  9. package/dist/styles/polydraw.css +57 -0
  10. package/dist/types/config.d.ts.map +1 -1
  11. package/dist/types/coordinate-utils.d.ts.map +1 -1
  12. package/dist/types/enums.d.ts +4 -0
  13. package/dist/types/enums.d.ts.map +1 -1
  14. package/dist/types/guards/config-deprecation-guard.d.ts.map +1 -1
  15. package/dist/types/index.d.ts +1 -1
  16. package/dist/types/managers/event-manager.d.ts +1 -0
  17. package/dist/types/managers/event-manager.d.ts.map +1 -1
  18. package/dist/types/managers/history-manager.d.ts.map +1 -1
  19. package/dist/types/managers/layer-manager.d.ts +13 -0
  20. package/dist/types/managers/layer-manager.d.ts.map +1 -1
  21. package/dist/types/managers/polygon-draw-manager.d.ts +2 -0
  22. package/dist/types/managers/polygon-draw-manager.d.ts.map +1 -1
  23. package/dist/types/managers/polygon-geometry-manager.d.ts +3 -0
  24. package/dist/types/managers/polygon-geometry-manager.d.ts.map +1 -1
  25. package/dist/types/managers/polygon-interaction-manager.d.ts +38 -0
  26. package/dist/types/managers/polygon-interaction-manager.d.ts.map +1 -1
  27. package/dist/types/managers/polygon-mutation-manager.d.ts +7 -0
  28. package/dist/types/managers/polygon-mutation-manager.d.ts.map +1 -1
  29. package/dist/types/polydraw.d.ts +49 -3
  30. package/dist/types/polydraw.d.ts.map +1 -1
  31. package/dist/types/popup-factory.d.ts.map +1 -1
  32. package/dist/types/styles/dynamic-styles.d.ts.map +1 -1
  33. package/dist/types/transform/donut-validation.d.ts +16 -0
  34. package/dist/types/transform/donut-validation.d.ts.map +1 -0
  35. package/dist/types/transform/polygon-transform-controller.d.ts +11 -1
  36. package/dist/types/transform/polygon-transform-controller.d.ts.map +1 -1
  37. package/dist/types/transform/transform-overlay.d.ts +8 -1
  38. package/dist/types/transform/transform-overlay.d.ts.map +1 -1
  39. package/dist/types/types/polydraw-interfaces.d.ts +33 -3
  40. package/dist/types/types/polydraw-interfaces.d.ts.map +1 -1
  41. package/dist/types/utils/metadata-clone.util.d.ts +2 -0
  42. package/dist/types/utils/metadata-clone.util.d.ts.map +1 -0
  43. package/package.json +2 -2
package/README.md CHANGED
@@ -17,7 +17,7 @@ This makes it ideal for GIS platforms, mapping applications, and spatial data wo
17
17
  [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue.svg)](https://www.typescriptlang.org/)
18
18
  [![CI](https://github.com/AndreasOlausson/leaflet-polydraw/actions/workflows/ci.yml/badge.svg)](https://github.com/AndreasOlausson/leaflet-polydraw/actions/workflows/ci.yml)
19
19
 
20
- ---4
20
+ ---
21
21
 
22
22
  ## Key Features
23
23
 
@@ -25,10 +25,13 @@ This makes it ideal for GIS platforms, mapping applications, and spatial data wo
25
25
 
26
26
  - **Freehand Drawing**: Draw polygons naturally by sketching directly on the map — click and drag to create shapes in real time.
27
27
  - **Smart Polygon Merging**: Automatically detects and merges overlapping polygons (including smooth C-to-O shape completion).
28
+ - **Layer Management**: Organize polygons into named layers with visibility, color, ordering, read-only/static policies, and metadata.
28
29
  - **Drag & Drop Editing**: Intuitive polygon repositioning with intelligent spatial interactions.
29
30
  - **Clone Drag Mode**: Duplicate polygons instantly by dragging a copy while the original remains in its starting position (preserves holes and metadata).
30
31
  - **Advanced Vertex Editing**: Drag vertices, add or remove points, and reshape polygons seamlessly.
31
32
  - **Scaling & Rotation Handles**: Transform polygons visually using interactive bounding boxes — scale, rotate, or stretch with precision.
33
+ - **Donut Transform Tool**: Turn simple polygons into holes or outward donut-style shapes from the polygon menu with undo support.
34
+ - **Custom Polygon Menu Actions**: Inject application-specific actions into the polygon menu with typed callbacks, async support, history control, and custom styling.
32
35
  - **Undo & Redo History**: Full action history with reversible edits — step backward or forward through vertex moves, shape changes, merges, and freehand strokes (Ctrl/Cmd+Z, Ctrl+Y or Cmd+Shift+Z).
33
36
  - **Point-to-Point Mode**: Optional precise vertex-by-vertex drawing for detailed or structured geometry.
34
37
  - **Hole Support**: Create complex polygons with holes and nested structures effortlessly.
@@ -42,7 +45,7 @@ This makes it ideal for GIS platforms, mapping applications, and spatial data wo
42
45
 
43
46
  ---
44
47
 
45
- **[Live Demo](https://polydraw.ao-tech.se)** · **[Quick Start](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/QUICK_START.md)** · **[Full Documentation](https://github.com/AndreasOlausson/leaflet-polydraw/tree/main/docs)**
48
+ **[Live Demo](https://polydraw.ao-tech.se)** · **[Quick Start](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/QUICK_START.md)** · **[Custom Actions](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/CUSTOM_ACTIONS.md)** · **[Full Documentation](https://github.com/AndreasOlausson/leaflet-polydraw/tree/main/docs)**
46
49
 
47
50
  ---
48
51
 
@@ -54,6 +57,7 @@ Full documentation and examples are available on GitHub:
54
57
  - [Quick Start](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/QUICK_START.md)
55
58
  - [Configuration](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/CONFIGURATION.md)
56
59
  - [Features](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/FEATURES.md)
60
+ - [Custom Polygon Menu Actions](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/CUSTOM_ACTIONS.md)
57
61
  - [API Reference](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/API.md)
58
62
  - [Markers](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/MARKERS.md)
59
63
  - [Events](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/EVENTS.md)
@@ -62,6 +66,7 @@ Full documentation and examples are available on GitHub:
62
66
  - [General — Browser Support, License, Acknowledgments](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/GENERAL.md)
63
67
  - [Roadmap](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/ROADMAP.md)
64
68
  - [Changelog](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/Leaflet.Polydraw/CHANGELOG.md)
69
+ - [Migration Guide (v1 -> v2)](https://github.com/AndreasOlausson/leaflet-polydraw/blob/main/docs/MIGRATION.md)
65
70
 
66
71
 
67
72
  ---
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" id="svg1" width="512" height="512" version="1.1" viewBox="0 0 16 16">
3
+ <circle cx="8" cy="8" r="6.25" fill="none" stroke="#fff" stroke-width="1.25" style="stroke:#fff;stroke-opacity:1"/>
4
+ <circle cx="8" cy="8" r="3" fill="none" stroke="#fff" stroke-width="1.25" style="stroke:#fff;stroke-opacity:1"/>
5
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.055 512.055">
2
+ <g transform="translate(-1)">
3
+ <path
4
+ fill="#facc15"
5
+ d="M56.879,469.361L257.028,69.064l200.149,400.297H56.879z"
6
+ />
7
+ <path
8
+ fill="#7f1d1d"
9
+ fill-rule="evenodd"
10
+ clip-rule="evenodd"
11
+ d="M510.775,481.154L276.109,11.82c-7.862-15.724-30.3-15.724-38.162,0L3.28,481.154 c-7.092,14.185,3.222,30.874,19.081,30.874h469.333C507.553,512.028,517.868,495.338,510.775,481.154z M56.879,469.361 L257.028,69.064l200.149,400.297H56.879z"
12
+ />
13
+ <path
14
+ fill="#7f1d1d"
15
+ d="M235.694,192.028v149.333c0,11.782,9.551,21.333,21.333,21.333s21.333-9.551,21.333-21.333V192.028 c0-11.782-9.551-21.333-21.333-21.333S235.694,180.245,235.694,192.028z"
16
+ />
17
+ <path
18
+ fill="#7f1d1d"
19
+ d="M257.028,384.028c-11.776,0-21.333,9.557-21.333,21.333s9.557,21.333,21.333,21.333s21.333-9.557,21.333-21.333 S268.804,384.028,257.028,384.028z"
20
+ />
21
+ </g>
22
+ </svg>
@@ -1 +1 @@
1
- html,body,#blitz-app{height:100%}.polygon-marker{background-color:#e0f8c5;box-shadow:0 0 0 2px #50622b,0 0 10px #00000059;width:12px!important;height:12px!important;margin-left:-6px!important;margin-top:-6px!important;border-radius:50%;cursor:move;outline:none;transition:background-color .25s}.polygon-marker.polygon-marker-faded{opacity:.1;width:6px!important;height:6px!important;margin-left:-3px!important;margin-top:-3px!important}.polygon-marker.polygon-marker-faded:hover{opacity:1}.polygon-marker.menu{margin-left:-11px!important;margin-top:-11px!important;background-color:#86a2d6;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2022.1.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2040%2040'%20style='enable-background:new%200%200%2040%2040;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:none;}%20.st1{fill:%23FFFFFF;}%20%3c/style%3e%3crect%20y='0'%20class='st0'%20width='40'%20height='40'/%3e%3cpath%20class='st1'%20d='M34.6,19.9L34.6,19.9c-0.1-2.1-0.5-4.1-1.4-5.8l4.3-3.6l-4.2-5.2l-4.5,3.4l0,0c-1.6-1.2-3.4-2.1-5.3-2.5l0,0%20l-0.2-5.6h-6.7l-0.2,5.6c-2,0.5-3.8,1.4-5.4,2.6l0,0L6.6,5.3l-4.2,5.2l4.3,3.6l0,0C5.9,16,5.5,17.9,5.4,20l0,0L0,21.4l1.5,6.5%20L7,26.8l0,0c0.9,1.8,2.2,3.4,3.8,4.7l0,0l-2.3,5.1l6,2.9l2.6-5c1,0.2,1.9,0.3,2.9,0.3c1.1,0,2.1-0.1,3.1-0.3l0,0l2.6,5l6-2.9%20l-2.3-5.1l0,0c1.5-1.3,2.8-2.9,3.7-4.7l0,0l5.5,1.1l1.4-6.5L34.6,19.9z%20M11.9,20.2c0-4.4,3.6-8.1,8.1-8.1c4.4,0,8.1,3.6,8.1,8.1%20s-3.6,8.1-8.1,8.1C15.5,28.3,11.9,24.7,11.9,20.2z'/%3e%3c/svg%3e");-ms-background-size:20px 20px;background-size:20px 20px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker.info{margin-left:-11px!important;margin-top:-11px!important;background-color:#86a2d6;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20200%20200'%20style='enable-background:new%200%200%20200%20200;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:none;}%20.st1{fill:%23FFFFFF;}%20.st2{opacity:0.3;fill:%23FFFFFF;}%20%3c/style%3e%3crect%20class='st0'%20width='200'%20height='200'/%3e%3cg%3e%3cpath%20class='st1'%20d='M100,1.4C45.5,1.4,1.4,45.5,1.4,100c0,54.5,44.2,98.6,98.6,98.6s98.6-44.2,98.6-98.6%20C198.6,45.5,154.5,1.4,100,1.4z%20M100,174.4c-41.1,0-74.4-33.3-74.4-74.4c0-41.1,33.3-74.4,74.4-74.4c41.1,0,74.4,33.3,74.4,74.4%20C174.4,141.1,141.1,174.4,100,174.4z'/%3e%3cpath%20class='st1'%20d='M94.1,66.4c1,1,2.1,1.9,3.4,2.5c1.3,0.6,2.8,0.9,4.4,0.9c1.5,0,3-0.3,4.3-0.9c1.3-0.6,2.4-1.4,3.3-2.5%20c0.9-1,1.6-2.2,2.1-3.6s0.7-2.8,0.7-4.4c0-1.6-0.3-3.1-0.8-4.5c-0.5-1.4-1.3-2.6-2.2-3.7c-1-1-2.1-1.9-3.4-2.5%20c-1.3-0.6-2.7-0.9-4.2-0.9c-1.5,0-2.8,0.3-4.1,0.9s-2.4,1.4-3.4,2.5c-1,1-1.7,2.3-2.3,3.7c-0.6,1.4-0.9,2.9-0.9,4.5%20c0,1.6,0.3,3.1,0.8,4.4S93.2,65.3,94.1,66.4z'/%3e%3cpath%20class='st1'%20d='M109.9,139.7c0.1-1.2,0.1-2.3,0.2-3.4c0-1.1,0.1-2.1,0.1-3.1c0-1,0-1.8,0-2.5V82.1h-7.6%20c-0.5,0.5-1.3,0.9-2.3,1.4c-1.1,0.5-2.5,0.9-4.2,1.4c-1.7,0.4-3.9,0.8-6.3,1c-2.5,0.3-5.3,0.4-8.5,0.4v10.5l9.8-0.4%20c-0.2,2.1-0.4,4.2-0.4,6.4c-0.1,2.2-0.1,4.1-0.1,5.8v23.2c0,1.9-0.1,3.6-0.2,5.1c-0.1,1.5-0.5,2.8-1,3.9c-0.5,1.1-1.4,1.9-2.5,2.5%20c-1.1,0.6-2.6,0.9-4.6,0.9v9.1h36.6v-10.6l-9.1,0.4C109.8,141.9,109.9,140.8,109.9,139.7z'/%3e%3ccircle%20class='st2'%20cx='100'%20cy='103'%20r='86.2'/%3e%3c/g%3e%3c/svg%3e");-ms-background-size:24px 24px;background-size:24px 24px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker:hover{width:18px!important;height:18px!important;margin-left:-9px!important;margin-top:-9px!important}.polygon-marker.menu:hover{background-color:red;width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.info:hover{background-color:#86a2d6;width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.delete{margin-left:-11px!important;margin-top:-11px!important;background-color:#645d5d;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.2,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2048%2048'%20style='enable-background:new%200%200%2048%2048;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23ffffff}%20.st1{fill:%23333333;fill-opacity:0;}%20%3c/style%3e%3ctitle%3etrash%3c/title%3e%3crect%20class='st1'%20width='48'%20height='48'/%3e%3cpolygon%20class='st0'%20points='26.6,10%2026.6,7.8%2021.4,7.8%2021.4,10%2012.6,10%2012.6,12.8%2035.4,12.8%2035.4,10%20'/%3e%3cpath%20class='st0'%20d='M35.4,15.4H12.6v4.3h1.8V37c0,1.1,0.9,2,2,2h15.2c1.1,0,2-0.9,2-2V19.7h1.8V15.4z%20M19.7,34.2c0,0.5-0.4,1-1,1%20c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1c0.5,0,1,0.4,1,1V34.2z%20M25.3,33.8c0,0.7-0.6,1.3-1.3,1.3c-0.7,0-1.3-0.6-1.3-1.3V23%20c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3V33.8z%20M30.3,34.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1%20c0.5,0,1,0.4,1,1V34.2z'/%3e%3c/svg%3e");-ms-background-size:24px 24px;background-size:24px 24px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker.delete:hover{background-color:#5c5151;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.2,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2048%2048'%20style='enable-background:new%200%200%2048%2048;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23ffffff}%20.st1{fill:%23333333;fill-opacity:0;}%20%3c/style%3e%3ctitle%3etrash%3c/title%3e%3crect%20class='st1'%20width='48'%20height='48'/%3e%3cpolygon%20class='st0'%20points='27.4,9.3%2027.8,7.1%2022.7,6%2022.2,8.2%2013.6,6.4%2013.1,9.1%2035.4,13.8%2036,11.1%20'/%3e%3cpath%20class='st0'%20d='M35.4,15.4H12.6v4.3h1.8V37c0,1.1,0.9,2,2,2h15.2c1.1,0,2-0.9,2-2V19.7h1.8V15.4z%20M19.7,34.2c0,0.5-0.4,1-1,1%20c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1c0.5,0,1,0.4,1,1V34.2z%20M25.3,33.8c0,0.7-0.6,1.3-1.3,1.3c-0.7,0-1.3-0.6-1.3-1.3V23%20c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3V33.8z%20M30.3,34.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1%20c0.5,0,1,0.4,1,1V34.2z'/%3e%3c/svg%3e");width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.hole{background-color:#fcc;box-shadow:0 0 0 2px #a00,0 0 10px #00000059;width:12px!important;height:12px!important;margin-left:-6px!important;margin-top:-6px!important;border-radius:50%;cursor:move;outline:none;transition:background-color .25s}.polygon-marker.hole:hover{background-color:#d4a5b8;width:18px!important;height:18px!important;margin-left:-9px!important;margin-top:-9px!important}.marker-menu-inner-wrapper{display:flex;flex-direction:column}.marker-menu-header{font-weight:600}.marker-menu-content{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:center;gap:0;max-width:132px}@supports (display: grid){.marker-menu-content{display:grid;grid-template-columns:repeat(3,minmax(22px,1fr));justify-items:center;align-items:center;column-gap:8px;row-gap:6px}}.menu-popup.leaflet-v1 .leaflet-popup-content{width:100%!important}.menu-popup.leaflet-v1 .marker-menu-content{max-width:none}@supports (display: grid){.menu-popup.leaflet-v1 .marker-menu-content{grid-template-columns:repeat(3,minmax(32px,1fr));margin-right:12px}}.marker-menu-content .marker-menu-button{width:22px;height:22px;background-repeat:no-repeat;background-size:22px,22px;background-position:center;padding:4px;border:1px solid #fff;margin:4px;border-radius:4px;cursor:pointer}.marker-menu-content .marker-menu-button.simplify{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3ccircle%20cx='64'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='64'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='64'%20cy='256'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='448'%20cy='256'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3cpath%20d='M64%2064%20L448%20256%20H64'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3cpath%20d='M448%20256%20L64%20448'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.double-elbows{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%3e%3cpath%20d='M100%20412%20L412%20100'%20style='fill:none;stroke:%23ffffff;stroke-opacity:1;stroke-width:35;stroke-dasharray:none'/%3e%3ccircle%20cx='100'%20cy='412'%20r='40'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3ccircle%20cx='416.5'%20cy='91.5'%20r='40'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3ccircle%20cx='253.799'%20cy='254.421'%20r='70'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.bbox{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3ccircle%20cx='64'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='64'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='448'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='448'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3cpath%20d='M64%2064%20H448%20M448%2064%20V448%20H64%20V64'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.bezier{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20id='Layer_1'%20x='0'%20y='0'%20style='enable-background:new%200%200%2040%2040'%20version='1.1'%20viewBox='0%200%2040%2040'%3e%3cdefs%20id='defs7'%3e%3cmarker%20id='Tail'%20orient='auto'%20refX='0'%20refY='0'%20style='overflow:visible'%3e%3cg%20id='g4585'%20style='stroke:%23000;stroke-opacity:1;fill:%23fff;fill-opacity:1'%20transform='scale(-1.2)'%3e%3cpath%20id='path4573'%20d='M-3.805-3.959.544%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4575'%20d='M-1.287-3.959%203.062%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4577'%20d='M1.305-3.959%205.654%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4579'%20d='M-3.805%204.178.544.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4581'%20d='M-1.287%204.178%203.062.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4583'%20d='M1.305%204.178%205.654.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3cpath%20id='path4894'%20d='M5%2035C35%2035%2035%205%2035%205'%20style='fill:none;stroke:%23fff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3cpath%20id='path4896'%20d='M35%204.83V35H5'%20style='fill:none;stroke:%23fffffe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:2,2;stroke-dashoffset:0'/%3e%3ccircle%20id='path819-25-9-8'%20cx='34.831'%20cy='35.169'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3ccircle%20id='path819-25-9'%20cx='34.915'%20cy='5.593'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3ccircle%20id='path819'%20cx='5'%20cy='35'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3c/svg%3e");position:relative;overflow:hidden}.marker-menu-content .marker-menu-button.transform-scale{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='200'%20height='200'%20viewBox='0%200%2024%2024'%3e%3cg%20fill='none'%3e%3cpath%20stroke='white'%20stroke-linecap='round'%20stroke-width='2'%20d='M3%209V6a3%203%200%200%201%203-3h12a3%203%200%200%201%203%203v12a3%203%200%200%201-3%203h-3'/%3e%3cpath%20fill='white'%20d='M16%208V7h1v1zm-5.793%207.207a1%201%200%200%201-1.414-1.414zM15%2014V8h2v6zm1-5h-6V7h6zm.707-.293l-6.5%206.5l-1.414-1.414l6.5-6.5z'/%3e%3crect%20width='7'%20height='7'%20x='3'%20y='14'%20stroke='white'%20stroke-linecap='round'%20stroke-width='2'%20rx='2'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.transform-rotate{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='svg1'%20width='512'%20height='512'%20version='1.1'%20viewBox='0%200%2016%2016'%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m5%205%200%20-3%20m%20-4%205%20c%200%20-4%204%20-5%204%20-5%20l%20-4%200'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m11%205%203%200%20m%20-5%20-4%20c%204%200%205%204%205%204%20l%200%20-4'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m11%2011%200%203%20m%204%20-5%20c%200%204%20-4%205%20-4%205%20l%204%200'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m5%2011%20-3%200%20m%205%204%20c%20-4%200%20-5%20-4%20-5%20-4%20l%200%204'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.toggle-visual-optimization.visual-optimization-state-visible{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3cg%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%3e%3c!--%20Upper%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%2093%20392%2093%20488%20256'%20stroke-width='48'/%3e%3c!--%20Lower%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%20419%20392%20419%20488%20256'%20stroke-width='48'/%3e%3c!--%20Diagonal%20hide%20slash%20--%3e%3cpath%20d='M48%20408%20L464%20104'%20stroke-width='48'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.toggle-visual-optimization.visual-optimization-state-hidden{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3cdefs%3e%3cmask%20id='pupil-hole-hide'%3e%3crect%20width='512'%20height='512'%20fill='white'/%3e%3ccircle%20cx='256'%20cy='220'%20r='60'%20fill='black'/%3e%3c/mask%3e%3c/defs%3e%3cg%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%3e%3c!--%20Upper%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%2093%20392%2093%20488%20256'%20stroke-width='48'/%3e%3c!--%20Lower%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%20419%20392%20419%20488%20256'%20stroke-width='48'/%3e%3c!--%20Iris%20highlight%20--%3e%3ccircle%20cx='256'%20cy='234'%20r='108'%20fill='%23fff'%20stroke='none'%20mask='url(%23pupil-hole-hide)'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-button{padding:4px;border:1px solid #aaaaaa}.marker-menu-separator{padding:4px}.info-marker,.alter-marker{background-color:#00f;width:100%;display:flex;flex-direction:row-reverse}.info-marker a.leaflet-popup-close-button,.alter-marker a.leaflet-popup-close-button{top:-12px;right:-12.5px;z-index:3;color:#fff}.info-marker a.leaflet-popup-close-button:hover,.alter-marker a.leaflet-popup-close-button:hover{color:#fff}.info-marker .leaflet-popup-content-wrapper,.alter-marker .leaflet-popup-content-wrapper{background:#e93434;color:#fff}.info-marker .leaflet-popup-content-wrapper .leaflet-popup-content,.alter-marker .leaflet-popup-content-wrapper .leaflet-popup-content{margin:0;line-height:1.4}.info-marker .leaflet-popup-content-wrapper,.alter-marker .leaflet-popup-content-wrapper{padding:0}.alter-marker-outer-wrapper,.info-marker-outer-wrapper{overflow:hidden;background-color:#80be50;border-radius:12px;box-shadow:3px 4px 20px #00000080}.alter-marker-wrapper,.info-marker-wrapper{min-height:40px;border:2px solid transparent;background-color:#80be50;color:#fff;padding:0 6px;border-radius:12px;text-align:center;position:relative}.content{width:auto;min-height:40px;margin-right:12px;display:flex;align-items:center}.marker-menu-close{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;border:none;background:transparent;color:#fff;font-size:18px;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer;pointer-events:auto;z-index:5}.marker-menu-close:focus{outline:2px solid #fff8;outline-offset:2px}.polydraw-transform-cancel,.polydraw-transform-confirm{width:24px;height:24px;border-radius:3px;pointer-events:auto;cursor:pointer;display:flex;align-items:center;justify-content:center}.alter-marker-wrapper .row.bottom-separator{border-bottom:1px dashed #fff}.alter-marker-wrapper .row{display:-webkit-box;display:flex;white-space:nowrap}.alter-marker-wrapper .header{padding-right:4px;width:100%;text-align:left}.alter-marker-wrapper .area,.alter-marker-wrapper .header{font-size:12px;font-weight:600;line-height:20px}.alter-marker-wrapper .unit{font-size:11px;font-weight:400;line-height:20px}.alter-marker-wrapper .unit .sup{font-size:smaller;font-weight:400;line-height:20px;position:relative;top:-2px}.info-marker-wrapper .row.bottom-separator{border-bottom:1px dashed #fff}.info-marker-wrapper .row{display:-webkit-box;display:flex;white-space:nowrap}.info-marker-wrapper .header{padding-right:4px;width:100%;text-align:left}.info-marker-wrapper .area,.info-marker-wrapper .header{font-size:12px;font-weight:600;line-height:20px}.info-marker-wrapper .unit{font-size:11px;font-weight:400;line-height:20px}.info-marker-wrapper .unit .sup{font-size:smaller;font-weight:400;line-height:20px;position:relative;top:-2px}.leaflet-popup-content{margin:0!important;line-height:1.4}.right-margin{margin-right:8px}.polydraw-hidden-marker{opacity:.2;transform:scale(.5);transition:opacity .2s ease,transform .2s ease;background-color:#e0f8c5!important;box-shadow:none!important;border:none!important;z-index:1}.polydraw-hidden-marker:hover{opacity:1!important;transform:scale(1)!important;background-color:#e0f8c5!important;box-shadow:0 0 0 2px #50622b,0 0 10px #00000059!important;border-radius:50%!important;z-index:10000!important}.polydraw-hidden-marker.leaflet-marker-draggable{cursor:move!important}.leaflet-polydraw-p2p-marker{margin-left:-8px;margin-top:-8px}.leaflet-polydraw-p2p-marker.edge-deletion-hover{background-color:#d9460f!important;border-color:#d9460f!important;transform:scale(1.5);transition:all .2s ease}.menu-popup{margin-bottom:-60px}.info-popup{margin-bottom:-18px}.menu-popup .leaflet-popup-tip-container,.info-popup .leaflet-popup-tip-container{display:none}.menu-popup .leaflet-popup-content-wrapper,.info-popup .leaflet-popup-content-wrapper{background:transparent;box-shadow:none}.menu-popup .leaflet-popup-close-button,.info-popup .leaflet-popup-close-button{color:#fff!important}.leaflet-container .leaflet-control-attribution{display:flex;gap:4px}.leaflet-control.leaflet-bar{position:relative;z-index:1000;pointer-events:auto!important}.leaflet-control.leaflet-bar a{pointer-events:auto!important;touch-action:manipulation;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.leaflet-control.leaflet-bar a[data-tooltip]{position:relative}.leaflet-control.leaflet-bar a[data-tooltip]:after,.leaflet-control.leaflet-bar a[data-tooltip]:before{opacity:0;visibility:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);transition:opacity .12s ease,transform .12s ease;transition-delay:0s;z-index:2000}.leaflet-control.leaflet-bar a[data-tooltip]:after{content:attr(data-tooltip);background:var(--polydraw-tooltip-bg, #645d5d);color:var(--polydraw-tooltip-color, #ffffff);padding:4px 8px;border-radius:4px;font-size:12px;line-height:1.2;white-space:nowrap}.leaflet-control.leaflet-bar a[data-tooltip]:before{content:"";border-top:6px solid transparent;border-bottom:6px solid transparent}.leaflet-control.leaflet-bar[data-tooltip-direction=left] a[data-tooltip]:after,.leaflet-control.leaflet-bar:not([data-tooltip-direction]) a[data-tooltip]:after{right:calc(100% + 10px)}.leaflet-control.leaflet-bar[data-tooltip-direction=left] a[data-tooltip]:before,.leaflet-control.leaflet-bar:not([data-tooltip-direction]) a[data-tooltip]:before{right:calc(100% + 4px);border-left:6px solid var(--polydraw-tooltip-bg, #645d5d)}.leaflet-control.leaflet-bar[data-tooltip-direction=right] a[data-tooltip]:after{left:calc(100% + 10px)}.leaflet-control.leaflet-bar[data-tooltip-direction=right] a[data-tooltip]:before{left:calc(100% + 4px);border-right:6px solid var(--polydraw-tooltip-bg, #645d5d)}.leaflet-control.leaflet-bar a[data-tooltip]:hover:after,.leaflet-control.leaflet-bar a[data-tooltip]:hover:before,.leaflet-control.leaflet-bar a[data-tooltip]:focus-visible:after,.leaflet-control.leaflet-bar a[data-tooltip]:focus-visible:before{opacity:1;visibility:visible;transition-delay:var(--polydraw-tooltip-delay, .5s)}.leaflet-control.leaflet-bar[data-tooltip-enabled=false] a[data-tooltip]:after,.leaflet-control.leaflet-bar[data-tooltip-enabled=false] a[data-tooltip]:before{display:none}@-moz-document url-prefix(){.leaflet-control.leaflet-bar{position:relative!important;z-index:2000!important;pointer-events:auto!important;isolation:isolate}.leaflet-control.leaflet-bar a{pointer-events:auto!important;touch-action:manipulation!important;position:relative;z-index:1}.sub-buttons{pointer-events:auto!important;position:relative;z-index:1}.sub-buttons a{pointer-events:auto!important;touch-action:manipulation!important;position:relative;z-index:1}}@media(max-width:768px){.leaflet-control.leaflet-bar a{min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center}}.polydraw-layer-panel{width:206px;min-width:206px;max-width:206px;z-index:900!important;background:#fff;border:1px solid #ccc;border-radius:8px;box-shadow:0 2px 8px #00000026;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;font-size:12px;line-height:1.2;color:#333;pointer-events:auto;overflow:hidden}.leaflet-top.leaflet-right .polydraw-layer-panel.leaflet-control{clear:none;margin-right:4px}.polydraw-layer-header{height:30px;box-sizing:border-box;display:flex;align-items:center;border-bottom:1px solid #e0e0e0;background:#fff;padding-left:6px}.polydraw-layer-header-title{font-size:11px;font-weight:600;letter-spacing:.02em;color:#444}.polydraw-layer-header-count{min-width:16px;height:16px;margin-left:6px;padding:0 4px;border-radius:999px;border:1px solid #d7d7d7;color:#666;font-size:10px;display:inline-flex;align-items:center;justify-content:center}.polydraw-layer-header-toggle{margin-left:auto;width:30px;height:30px;border:none;background:transparent;border-radius:0;cursor:pointer;color:#333;display:inline-flex;align-items:center;justify-content:center}.polydraw-layer-header-toggle:hover{background:#f0f0f0}.polydraw-layer-header-toggle:focus-visible{outline:none;box-shadow:inset 0 0 0 2px #2196f359}.polydraw-layer-header-toggle svg{width:24px;height:24px;fill:none;stroke:currentColor;transition:transform .18s ease}.polydraw-layer-header-toggle.is-collapsed svg{transform:rotate(180deg)}.polydraw-layer-panel-collapsed{width:30px;min-width:30px;max-width:30px}.polydraw-layer-panel-collapsed .polydraw-layer-header{border-bottom:none;padding-left:0}.polydraw-layer-panel-collapsed .polydraw-layer-header-title,.polydraw-layer-panel-collapsed .polydraw-layer-header-count{display:none}.polydraw-layer-row{display:flex;align-items:center;gap:4px;height:30px;min-height:30px;padding:0 4px;background:#fff;border-bottom:1px solid #e0e0e0;transition:background .2s;-webkit-user-select:none;user-select:none;outline:none}.polydraw-layer-row:hover{background:#f9f9f9}.polydraw-layer-row[draggable=true]{cursor:move}.polydraw-layer-row[draggable=false]{cursor:pointer}.polydraw-layer-row:focus-visible{box-shadow:inset 0 0 0 2px #2196f359}.polydraw-layer-row-active{background:#eef5ff}.polydraw-layer-row-active:hover{background:#e6f0ff}.polydraw-layer-row-dragging{opacity:.5}.polydraw-layer-row-drag-over{border-top:2px solid #2196f3}.polydraw-layer-grip{width:18px;height:18px;padding:2px;display:inline-flex;align-items:center;justify-content:center;border-radius:4px;cursor:grab;transition:background .2s}.polydraw-layer-grip:hover{background:#e0e0e0}.polydraw-layer-grip svg{width:12px;height:12px;fill:none;stroke:#666;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.polydraw-layer-grip-spacer{width:18px;height:18px;padding:2px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}.polydraw-layer-color-indicator{width:12px;height:12px;border-radius:50%;border:1px solid #ccc;flex-shrink:0}.polydraw-layer-name{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;font-size:11.5px}.polydraw-layer-btn{width:30px;height:30px;background:transparent;border:none;padding:0;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:4px;flex-shrink:0;transition:background .2s}.polydraw-layer-btn svg{width:24px;height:24px}.polydraw-layer-visibility{color:#333}.polydraw-layer-visibility svg{width:20px;height:20px}.polydraw-layer-btn:hover{background:#e0e0e0}.polydraw-layer-delete{border:none!important;box-shadow:none!important}.polydraw-layer-btn:focus-visible{outline:none;box-shadow:0 0 0 2px #2196f359}.polydraw-layer-btn-spacer{width:30px;height:30px;flex-shrink:0}.polydraw-layer-visibility-hidden{color:#999}.polydraw-layer-hidden .polydraw-layer-name{opacity:.65}@media(max-width:768px){.polydraw-layer-panel{width:196px;min-width:196px;max-width:196px}.polydraw-layer-row{height:30px;min-height:30px;padding:0 4px}.polydraw-layer-name{font-size:11.5px}.polydraw-layer-btn{width:30px;height:30px}}
1
+ html,body{height:100%}.leaflet-container .leaflet-overlay-pane>svg.leaflet-zoom-animated{width:auto;height:auto}#blitz-app{height:100%}.polygon-marker{background-color:#e0f8c5;box-shadow:0 0 0 2px #50622b,0 0 10px #00000059;width:12px!important;height:12px!important;margin-left:-6px!important;margin-top:-6px!important;border-radius:50%;cursor:move;outline:none;transition:background-color .25s}.polygon-marker.polygon-marker-faded{opacity:.1;width:6px!important;height:6px!important;margin-left:-3px!important;margin-top:-3px!important}.polygon-marker.polygon-marker-faded:hover{opacity:1}.polygon-marker.menu{margin-left:-11px!important;margin-top:-11px!important;background-color:#86a2d6;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2022.1.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2040%2040'%20style='enable-background:new%200%200%2040%2040;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:none;}%20.st1{fill:%23FFFFFF;}%20%3c/style%3e%3crect%20y='0'%20class='st0'%20width='40'%20height='40'/%3e%3cpath%20class='st1'%20d='M34.6,19.9L34.6,19.9c-0.1-2.1-0.5-4.1-1.4-5.8l4.3-3.6l-4.2-5.2l-4.5,3.4l0,0c-1.6-1.2-3.4-2.1-5.3-2.5l0,0%20l-0.2-5.6h-6.7l-0.2,5.6c-2,0.5-3.8,1.4-5.4,2.6l0,0L6.6,5.3l-4.2,5.2l4.3,3.6l0,0C5.9,16,5.5,17.9,5.4,20l0,0L0,21.4l1.5,6.5%20L7,26.8l0,0c0.9,1.8,2.2,3.4,3.8,4.7l0,0l-2.3,5.1l6,2.9l2.6-5c1,0.2,1.9,0.3,2.9,0.3c1.1,0,2.1-0.1,3.1-0.3l0,0l2.6,5l6-2.9%20l-2.3-5.1l0,0c1.5-1.3,2.8-2.9,3.7-4.7l0,0l5.5,1.1l1.4-6.5L34.6,19.9z%20M11.9,20.2c0-4.4,3.6-8.1,8.1-8.1c4.4,0,8.1,3.6,8.1,8.1%20s-3.6,8.1-8.1,8.1C15.5,28.3,11.9,24.7,11.9,20.2z'/%3e%3c/svg%3e");-ms-background-size:20px 20px;background-size:20px 20px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker.info{margin-left:-11px!important;margin-top:-11px!important;background-color:#86a2d6;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20200%20200'%20style='enable-background:new%200%200%20200%20200;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:none;}%20.st1{fill:%23FFFFFF;}%20.st2{opacity:0.3;fill:%23FFFFFF;}%20%3c/style%3e%3crect%20class='st0'%20width='200'%20height='200'/%3e%3cg%3e%3cpath%20class='st1'%20d='M100,1.4C45.5,1.4,1.4,45.5,1.4,100c0,54.5,44.2,98.6,98.6,98.6s98.6-44.2,98.6-98.6%20C198.6,45.5,154.5,1.4,100,1.4z%20M100,174.4c-41.1,0-74.4-33.3-74.4-74.4c0-41.1,33.3-74.4,74.4-74.4c41.1,0,74.4,33.3,74.4,74.4%20C174.4,141.1,141.1,174.4,100,174.4z'/%3e%3cpath%20class='st1'%20d='M94.1,66.4c1,1,2.1,1.9,3.4,2.5c1.3,0.6,2.8,0.9,4.4,0.9c1.5,0,3-0.3,4.3-0.9c1.3-0.6,2.4-1.4,3.3-2.5%20c0.9-1,1.6-2.2,2.1-3.6s0.7-2.8,0.7-4.4c0-1.6-0.3-3.1-0.8-4.5c-0.5-1.4-1.3-2.6-2.2-3.7c-1-1-2.1-1.9-3.4-2.5%20c-1.3-0.6-2.7-0.9-4.2-0.9c-1.5,0-2.8,0.3-4.1,0.9s-2.4,1.4-3.4,2.5c-1,1-1.7,2.3-2.3,3.7c-0.6,1.4-0.9,2.9-0.9,4.5%20c0,1.6,0.3,3.1,0.8,4.4S93.2,65.3,94.1,66.4z'/%3e%3cpath%20class='st1'%20d='M109.9,139.7c0.1-1.2,0.1-2.3,0.2-3.4c0-1.1,0.1-2.1,0.1-3.1c0-1,0-1.8,0-2.5V82.1h-7.6%20c-0.5,0.5-1.3,0.9-2.3,1.4c-1.1,0.5-2.5,0.9-4.2,1.4c-1.7,0.4-3.9,0.8-6.3,1c-2.5,0.3-5.3,0.4-8.5,0.4v10.5l9.8-0.4%20c-0.2,2.1-0.4,4.2-0.4,6.4c-0.1,2.2-0.1,4.1-0.1,5.8v23.2c0,1.9-0.1,3.6-0.2,5.1c-0.1,1.5-0.5,2.8-1,3.9c-0.5,1.1-1.4,1.9-2.5,2.5%20c-1.1,0.6-2.6,0.9-4.6,0.9v9.1h36.6v-10.6l-9.1,0.4C109.8,141.9,109.9,140.8,109.9,139.7z'/%3e%3ccircle%20class='st2'%20cx='100'%20cy='103'%20r='86.2'/%3e%3c/g%3e%3c/svg%3e");-ms-background-size:24px 24px;background-size:24px 24px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker:hover{width:18px!important;height:18px!important;margin-left:-9px!important;margin-top:-9px!important}.polygon-marker.menu:hover{background-color:red;width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.info:hover{background-color:#86a2d6;width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.delete{margin-left:-11px!important;margin-top:-11px!important;background-color:#645d5d;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.2,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2048%2048'%20style='enable-background:new%200%200%2048%2048;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23ffffff}%20.st1{fill:%23333333;fill-opacity:0;}%20%3c/style%3e%3ctitle%3etrash%3c/title%3e%3crect%20class='st1'%20width='48'%20height='48'/%3e%3cpolygon%20class='st0'%20points='26.6,10%2026.6,7.8%2021.4,7.8%2021.4,10%2012.6,10%2012.6,12.8%2035.4,12.8%2035.4,10%20'/%3e%3cpath%20class='st0'%20d='M35.4,15.4H12.6v4.3h1.8V37c0,1.1,0.9,2,2,2h15.2c1.1,0,2-0.9,2-2V19.7h1.8V15.4z%20M19.7,34.2c0,0.5-0.4,1-1,1%20c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1c0.5,0,1,0.4,1,1V34.2z%20M25.3,33.8c0,0.7-0.6,1.3-1.3,1.3c-0.7,0-1.3-0.6-1.3-1.3V23%20c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3V33.8z%20M30.3,34.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1%20c0.5,0,1,0.4,1,1V34.2z'/%3e%3c/svg%3e");-ms-background-size:24px 24px;background-size:24px 24px;background-repeat:no-repeat;background-position:center;width:24px!important;height:24px!important;z-index:10000;cursor:pointer}.polygon-marker.delete:hover{background-color:#5c5151;background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2021.0.2,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2048%2048'%20style='enable-background:new%200%200%2048%2048;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23ffffff}%20.st1{fill:%23333333;fill-opacity:0;}%20%3c/style%3e%3ctitle%3etrash%3c/title%3e%3crect%20class='st1'%20width='48'%20height='48'/%3e%3cpolygon%20class='st0'%20points='27.4,9.3%2027.8,7.1%2022.7,6%2022.2,8.2%2013.6,6.4%2013.1,9.1%2035.4,13.8%2036,11.1%20'/%3e%3cpath%20class='st0'%20d='M35.4,15.4H12.6v4.3h1.8V37c0,1.1,0.9,2,2,2h15.2c1.1,0,2-0.9,2-2V19.7h1.8V15.4z%20M19.7,34.2c0,0.5-0.4,1-1,1%20c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1c0.5,0,1,0.4,1,1V34.2z%20M25.3,33.8c0,0.7-0.6,1.3-1.3,1.3c-0.7,0-1.3-0.6-1.3-1.3V23%20c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3V33.8z%20M30.3,34.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1V22.6c0-0.5,0.4-1,1-1%20c0.5,0,1,0.4,1,1V34.2z'/%3e%3c/svg%3e");width:24px!important;height:24px!important;z-index:10000;margin-left:-11px!important;margin-top:-11px!important}.polygon-marker.hole{background-color:#fcc;box-shadow:0 0 0 2px #a00,0 0 10px #00000059;width:12px!important;height:12px!important;margin-left:-6px!important;margin-top:-6px!important;border-radius:50%;cursor:move;outline:none;transition:background-color .25s}.polygon-marker.hole:hover{background-color:#d4a5b8;width:18px!important;height:18px!important;margin-left:-9px!important;margin-top:-9px!important}.marker-menu-inner-wrapper{display:flex;flex-direction:column}.marker-menu-header{font-weight:600}.marker-menu-content{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:center;gap:0;max-width:132px}@supports (display: grid){.marker-menu-content{display:grid;grid-template-columns:repeat(3,minmax(22px,1fr));justify-items:center;align-items:center;column-gap:8px;row-gap:6px}}.menu-popup.leaflet-v1 .leaflet-popup-content{width:100%!important}.menu-popup.leaflet-v1 .marker-menu-content{max-width:none}@supports (display: grid){.menu-popup.leaflet-v1 .marker-menu-content{grid-template-columns:repeat(3,minmax(32px,1fr));margin-right:12px}}.marker-menu-content .marker-menu-button{width:22px;height:22px;background-repeat:no-repeat;background-size:22px,22px;background-position:center;padding:4px;border:1px solid #fff;margin:4px;border-radius:4px;cursor:pointer}.marker-menu-content .marker-menu-button.simplify{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3ccircle%20cx='64'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='64'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='64'%20cy='256'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3ccircle%20cx='448'%20cy='256'%20r='50'%20style='fill:%23ffffff;stroke:none;fill-opacity:1'/%3e%3cpath%20d='M64%2064%20L448%20256%20H64'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3cpath%20d='M448%20256%20L64%20448'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.double-elbows{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%3e%3cpath%20d='M100%20412%20L412%20100'%20style='fill:none;stroke:%23ffffff;stroke-opacity:1;stroke-width:35;stroke-dasharray:none'/%3e%3ccircle%20cx='100'%20cy='412'%20r='40'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3ccircle%20cx='416.5'%20cy='91.5'%20r='40'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3ccircle%20cx='253.799'%20cy='254.421'%20r='70'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-width:25;stroke-opacity:1'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.bbox{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3ccircle%20cx='64'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='64'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='448'%20cy='448'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3ccircle%20cx='448'%20cy='64'%20r='50'%20style='fill:%23ffffff;stroke:%23ffffff;stroke-opacity:1'/%3e%3cpath%20d='M64%2064%20H448%20M448%2064%20V448%20H64%20V64'%20style='fill:none;stroke:%23ffffff;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.bezier{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20id='Layer_1'%20x='0'%20y='0'%20style='enable-background:new%200%200%2040%2040'%20version='1.1'%20viewBox='0%200%2040%2040'%3e%3cdefs%20id='defs7'%3e%3cmarker%20id='Tail'%20orient='auto'%20refX='0'%20refY='0'%20style='overflow:visible'%3e%3cg%20id='g4585'%20style='stroke:%23000;stroke-opacity:1;fill:%23fff;fill-opacity:1'%20transform='scale(-1.2)'%3e%3cpath%20id='path4573'%20d='M-3.805-3.959.544%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4575'%20d='M-1.287-3.959%203.062%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4577'%20d='M1.305-3.959%205.654%200'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4579'%20d='M-3.805%204.178.544.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4581'%20d='M-1.287%204.178%203.062.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3cpath%20id='path4583'%20d='M1.305%204.178%205.654.22'%20style='fill:%23fff;fill-rule:evenodd;stroke:%23000;stroke-width:.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3cpath%20id='path4894'%20d='M5%2035C35%2035%2035%205%2035%205'%20style='fill:none;stroke:%23fff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'/%3e%3cpath%20id='path4896'%20d='M35%204.83V35H5'%20style='fill:none;stroke:%23fffffe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:2,2;stroke-dashoffset:0'/%3e%3ccircle%20id='path819-25-9-8'%20cx='34.831'%20cy='35.169'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3ccircle%20id='path819-25-9'%20cx='34.915'%20cy='5.593'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3ccircle%20id='path819'%20cx='5'%20cy='35'%20r='4'%20style='fill:%23fff;fill-opacity:1;stroke:%23fff;stroke-opacity:1'/%3e%3c/svg%3e");position:relative;overflow:hidden}.marker-menu-content .marker-menu-button.transform-scale{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='200'%20height='200'%20viewBox='0%200%2024%2024'%3e%3cg%20fill='none'%3e%3cpath%20stroke='white'%20stroke-linecap='round'%20stroke-width='2'%20d='M3%209V6a3%203%200%200%201%203-3h12a3%203%200%200%201%203%203v12a3%203%200%200%201-3%203h-3'/%3e%3cpath%20fill='white'%20d='M16%208V7h1v1zm-5.793%207.207a1%201%200%200%201-1.414-1.414zM15%2014V8h2v6zm1-5h-6V7h6zm.707-.293l-6.5%206.5l-1.414-1.414l6.5-6.5z'/%3e%3crect%20width='7'%20height='7'%20x='3'%20y='14'%20stroke='white'%20stroke-linecap='round'%20stroke-width='2'%20rx='2'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.transform-rotate{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='svg1'%20width='512'%20height='512'%20version='1.1'%20viewBox='0%200%2016%2016'%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m5%205%200%20-3%20m%20-4%205%20c%200%20-4%204%20-5%204%20-5%20l%20-4%200'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m11%205%203%200%20m%20-5%20-4%20c%204%200%205%204%205%204%20l%200%20-4'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m11%2011%200%203%20m%204%20-5%20c%200%204%20-4%205%20-4%205%20l%204%200'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3cpath%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='1.5'%20d='m5%2011%20-3%200%20m%205%204%20c%20-4%200%20-5%20-4%20-5%20-4%20l%200%204'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.transform-donut{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='svg1'%20width='512'%20height='512'%20version='1.1'%20viewBox='0%200%2016%2016'%3e%3ccircle%20cx='8'%20cy='8'%20r='6.25'%20fill='none'%20stroke='%23fff'%20stroke-width='1.25'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3ccircle%20cx='8'%20cy='8'%20r='3'%20fill='none'%20stroke='%23fff'%20stroke-width='1.25'%20style='stroke:%23fff;stroke-opacity:1'/%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.menu-action-default{background-image:url("data:image/svg+xml,%3Csvg fill='%23ffffff' stroke='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 100 100'%3E%3Cpath d='M79.2 32.8c-.2-.7-1.1-.9-1.7-.4L67.4 42.5c-.8.8-2 .8-2.8 0l-7.1-7.1c-.8-.8-.8-2 0-2.8l10.2-10.2c.5-.5.3-1.4-.4-1.7-1.7-.4-3.5-.7-5.3-.7-10.6 0-19.1 9.2-17.9 20 .2 1.7.6 3.2 1.2 4.7L22 68.1c-2.7 2.7-2.7 7.2 0 9.9 1.4 1.4 3.2 2.1 5 2.1s3.6-.7 5-2.1l23.3-23.3c1.5.6 3.1 1 4.7 1.2C70.9 57.1 80 48.6 80 38c0-1.8-.3-3.6-.8-5.2z'/%3E%3C/svg%3E")}.marker-menu-content .marker-menu-button.menu-action-custom,.marker-menu-content .marker-menu-button.menu-action-default{position:relative;border-color:#fff;background-color:#064e3ba3;box-shadow:0 0 0 2px #064e3b,0 2px 8px #00000042}.marker-menu-content .marker-menu-button.menu-action-custom.make-triangle{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M12 4 21 20H3L12 4Z'/%3E%3C/svg%3E")}.marker-menu-content .marker-menu-button.toggle-visual-optimization.visual-optimization-state-visible{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3cg%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%3e%3c!--%20Upper%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%2093%20392%2093%20488%20256'%20stroke-width='48'/%3e%3c!--%20Lower%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%20419%20392%20419%20488%20256'%20stroke-width='48'/%3e%3c!--%20Diagonal%20hide%20slash%20--%3e%3cpath%20d='M48%20408%20L464%20104'%20stroke-width='48'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-content .marker-menu-button.toggle-visual-optimization.visual-optimization-state-hidden{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'%20viewBox='0%200%20512%20512'%3e%3cdefs%3e%3cmask%20id='pupil-hole-hide'%3e%3crect%20width='512'%20height='512'%20fill='white'/%3e%3ccircle%20cx='256'%20cy='220'%20r='60'%20fill='black'/%3e%3c/mask%3e%3c/defs%3e%3cg%20fill='none'%20stroke='%23fff'%20stroke-linecap='round'%20stroke-linejoin='round'%3e%3c!--%20Upper%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%2093%20392%2093%20488%20256'%20stroke-width='48'/%3e%3c!--%20Lower%20eye%20contour%20--%3e%3cpath%20d='M24%20256%20C%20120%20419%20392%20419%20488%20256'%20stroke-width='48'/%3e%3c!--%20Iris%20highlight%20--%3e%3ccircle%20cx='256'%20cy='234'%20r='108'%20fill='%23fff'%20stroke='none'%20mask='url(%23pupil-hole-hide)'/%3e%3c/g%3e%3c/svg%3e")}.marker-menu-button{box-sizing:content-box;padding:4px;border:1px solid #aaaaaa}.marker-menu-separator{padding:4px}.info-marker,.alter-marker{background-color:#00f;width:100%;display:flex;flex-direction:row-reverse}.info-marker a.leaflet-popup-close-button,.alter-marker a.leaflet-popup-close-button{top:-12px;right:-12.5px;z-index:3;color:#fff}.info-marker a.leaflet-popup-close-button:hover,.alter-marker a.leaflet-popup-close-button:hover{color:#fff}.info-marker .leaflet-popup-content-wrapper,.alter-marker .leaflet-popup-content-wrapper{background:#e93434;color:#fff}.info-marker .leaflet-popup-content-wrapper .leaflet-popup-content,.alter-marker .leaflet-popup-content-wrapper .leaflet-popup-content{margin:0;line-height:1.4}.info-marker .leaflet-popup-content-wrapper,.alter-marker .leaflet-popup-content-wrapper{padding:0}.alter-marker-outer-wrapper,.info-marker-outer-wrapper{overflow:hidden;background-color:#80be50;border-radius:12px;box-shadow:3px 4px 20px #00000080}.alter-marker-wrapper,.info-marker-wrapper{min-height:40px;border:2px solid transparent;background-color:#80be50;color:#fff;padding:0 6px;border-radius:12px;text-align:center;position:relative}.content{width:auto;min-height:40px;margin-right:12px;display:flex;align-items:center}.marker-menu-close{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;border:none;background:transparent;color:#fff;font-size:18px;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer;pointer-events:auto;z-index:5}.marker-menu-close:focus{outline:2px solid #fff8;outline-offset:2px}.polydraw-transform-cancel,.polydraw-transform-confirm{width:24px;height:24px;border-radius:3px;pointer-events:auto;cursor:pointer;display:flex;align-items:center;justify-content:center}.polydraw-transform-confirm.is-disabled{opacity:.4;cursor:not-allowed}.polydraw-transform-status{display:grid;place-items:center;width:16px;height:16px;padding:0}.polydraw-transform-status.is-invalid{filter:drop-shadow(0 1px 3px rgba(15,23,42,.28))}.polydraw-transform-status svg{width:16px;height:16px;flex:0 0 auto}.alter-marker-wrapper .row.bottom-separator{border-bottom:1px dashed #fff}.alter-marker-wrapper .row{display:-webkit-box;display:flex;white-space:nowrap}.alter-marker-wrapper .header{padding-right:4px;width:100%;text-align:left}.alter-marker-wrapper .area,.alter-marker-wrapper .header{font-size:12px;font-weight:600;line-height:20px}.alter-marker-wrapper .unit{font-size:11px;font-weight:400;line-height:20px}.alter-marker-wrapper .unit .sup{font-size:smaller;font-weight:400;line-height:20px;position:relative;top:-2px}.info-marker-wrapper .row.bottom-separator{border-bottom:1px dashed #fff}.info-marker-wrapper .row{display:-webkit-box;display:flex;white-space:nowrap}.info-marker-wrapper .header{padding-right:4px;width:100%;text-align:left}.info-marker-wrapper .area,.info-marker-wrapper .header{font-size:12px;font-weight:600;line-height:20px}.info-marker-wrapper .unit{font-size:11px;font-weight:400;line-height:20px}.info-marker-wrapper .unit .sup{font-size:smaller;font-weight:400;line-height:20px;position:relative;top:-2px}.leaflet-popup-content{margin:0!important;line-height:1.4}.right-margin{margin-right:8px}.polydraw-hidden-marker{opacity:.2;transform:scale(.5);transition:opacity .2s ease,transform .2s ease;background-color:#e0f8c5!important;box-shadow:none!important;border:none!important;z-index:1}.polydraw-hidden-marker:hover{opacity:1!important;transform:scale(1)!important;background-color:#e0f8c5!important;box-shadow:0 0 0 2px #50622b,0 0 10px #00000059!important;border-radius:50%!important;z-index:10000!important}.polydraw-hidden-marker.leaflet-marker-draggable{cursor:move!important}.leaflet-polydraw-p2p-marker{margin-left:-8px;margin-top:-8px}.leaflet-polydraw-p2p-marker.edge-deletion-hover{background-color:#d9460f!important;border-color:#d9460f!important;transform:scale(1.5);transition:all .2s ease}.menu-popup{margin-bottom:-60px}.info-popup{margin-bottom:-18px}.menu-popup .leaflet-popup-tip-container,.info-popup .leaflet-popup-tip-container{display:none}.menu-popup .leaflet-popup-content-wrapper,.info-popup .leaflet-popup-content-wrapper{background:transparent;box-shadow:none}.menu-popup .leaflet-popup-close-button,.info-popup .leaflet-popup-close-button{color:#fff!important}.leaflet-container .leaflet-control-attribution{display:flex;gap:4px}.leaflet-control.leaflet-bar{position:relative;z-index:1000;pointer-events:auto!important}.leaflet-control.leaflet-bar a{pointer-events:auto!important;touch-action:manipulation;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.leaflet-control.leaflet-bar a[data-tooltip]{position:relative}.leaflet-control.leaflet-bar a[data-tooltip]:after,.leaflet-control.leaflet-bar a[data-tooltip]:before{opacity:0;visibility:hidden;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);transition:opacity .12s ease,transform .12s ease;transition-delay:0s;z-index:2000}.leaflet-control.leaflet-bar a[data-tooltip]:after{content:attr(data-tooltip);background:var(--polydraw-tooltip-bg, #645d5d);color:var(--polydraw-tooltip-color, #ffffff);padding:4px 8px;border-radius:4px;font-size:12px;line-height:1.2;white-space:nowrap}.leaflet-control.leaflet-bar a[data-tooltip]:before{content:"";border-top:6px solid transparent;border-bottom:6px solid transparent}.leaflet-control.leaflet-bar[data-tooltip-direction=left] a[data-tooltip]:after,.leaflet-control.leaflet-bar:not([data-tooltip-direction]) a[data-tooltip]:after{right:calc(100% + 10px)}.leaflet-control.leaflet-bar[data-tooltip-direction=left] a[data-tooltip]:before,.leaflet-control.leaflet-bar:not([data-tooltip-direction]) a[data-tooltip]:before{right:calc(100% + 4px);border-left:6px solid var(--polydraw-tooltip-bg, #645d5d)}.leaflet-control.leaflet-bar[data-tooltip-direction=right] a[data-tooltip]:after{left:calc(100% + 10px)}.leaflet-control.leaflet-bar[data-tooltip-direction=right] a[data-tooltip]:before{left:calc(100% + 4px);border-right:6px solid var(--polydraw-tooltip-bg, #645d5d)}.leaflet-control.leaflet-bar a[data-tooltip]:hover:after,.leaflet-control.leaflet-bar a[data-tooltip]:hover:before,.leaflet-control.leaflet-bar a[data-tooltip]:focus-visible:after,.leaflet-control.leaflet-bar a[data-tooltip]:focus-visible:before{opacity:1;visibility:visible;transition-delay:var(--polydraw-tooltip-delay, .5s)}.leaflet-control.leaflet-bar[data-tooltip-enabled=false] a[data-tooltip]:after,.leaflet-control.leaflet-bar[data-tooltip-enabled=false] a[data-tooltip]:before{display:none}@-moz-document url-prefix(){.leaflet-control.leaflet-bar{position:relative!important;z-index:2000!important;pointer-events:auto!important;isolation:isolate}.leaflet-control.leaflet-bar a{pointer-events:auto!important;touch-action:manipulation!important;position:relative;z-index:1}.sub-buttons{pointer-events:auto!important;position:relative;z-index:1}.sub-buttons a{pointer-events:auto!important;touch-action:manipulation!important;position:relative;z-index:1}}@media(max-width:768px){.leaflet-control.leaflet-bar a{min-height:44px;min-width:44px;display:flex;align-items:center;justify-content:center}}.polydraw-layer-panel{width:206px;min-width:206px;max-width:206px;z-index:900!important;background:#fff;border:1px solid #ccc;border-radius:8px;box-shadow:0 2px 8px #00000026;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;font-size:12px;line-height:1.2;color:#333;pointer-events:auto;overflow:hidden}.leaflet-top.leaflet-right .polydraw-layer-panel.leaflet-control{clear:none;margin-right:4px}.polydraw-layer-header{height:30px;box-sizing:border-box;display:flex;align-items:center;border-bottom:1px solid #e0e0e0;background:#fff;padding-left:6px}.polydraw-layer-header-title{font-size:11px;font-weight:600;letter-spacing:.02em;color:#444}.polydraw-layer-header-count{min-width:16px;height:16px;margin-left:6px;padding:0 4px;border-radius:999px;border:1px solid #d7d7d7;color:#666;font-size:10px;display:inline-flex;align-items:center;justify-content:center}.polydraw-layer-header-toggle{margin-left:auto;width:30px;height:30px;border:none;background:transparent;border-radius:0;cursor:pointer;color:#333;display:inline-flex;align-items:center;justify-content:center}.polydraw-layer-header-toggle:hover{background:#f0f0f0}.polydraw-layer-header-toggle:focus-visible{outline:none;box-shadow:inset 0 0 0 2px #2196f359}.polydraw-layer-header-toggle svg{width:24px;height:24px;fill:none;stroke:currentColor;transition:transform .18s ease}.polydraw-layer-header-toggle.is-collapsed svg{transform:rotate(180deg)}.polydraw-layer-panel-collapsed{width:30px;min-width:30px;max-width:30px}.polydraw-layer-panel-collapsed .polydraw-layer-header{border-bottom:none;padding-left:0}.polydraw-layer-panel-collapsed .polydraw-layer-header-title,.polydraw-layer-panel-collapsed .polydraw-layer-header-count{display:none}.polydraw-layer-row{display:flex;align-items:center;gap:4px;height:30px;min-height:30px;padding:0 4px;background:#fff;border-bottom:1px solid #e0e0e0;transition:background .2s;-webkit-user-select:none;user-select:none;outline:none}.polydraw-layer-row:hover{background:#f9f9f9}.polydraw-layer-row[draggable=true]{cursor:move}.polydraw-layer-row[draggable=false]{cursor:pointer}.polydraw-layer-row:focus-visible{box-shadow:inset 0 0 0 2px #2196f359}.polydraw-layer-row-active{background:#eef5ff}.polydraw-layer-row-active:hover{background:#e6f0ff}.polydraw-layer-row-dragging{opacity:.5}.polydraw-layer-row-drag-over{border-top:2px solid #2196f3}.polydraw-layer-grip{width:18px;height:18px;padding:2px;display:inline-flex;align-items:center;justify-content:center;border-radius:4px;cursor:grab;transition:background .2s}.polydraw-layer-grip:hover{background:#e0e0e0}.polydraw-layer-grip svg{width:12px;height:12px;fill:none;stroke:#666;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.polydraw-layer-grip-spacer{width:18px;height:18px;padding:2px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}.polydraw-layer-color-indicator{width:12px;height:12px;border-radius:50%;border:1px solid #ccc;flex-shrink:0}.polydraw-layer-name{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;font-size:11.5px}.polydraw-layer-btn{width:30px;height:30px;background:transparent;border:none;padding:0;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:4px;flex-shrink:0;transition:background .2s}.polydraw-layer-btn svg{width:24px;height:24px}.polydraw-layer-visibility{color:#333}.polydraw-layer-visibility svg{width:20px;height:20px}.polydraw-layer-btn:hover{background:#e0e0e0}.polydraw-layer-delete{border:none!important;box-shadow:none!important}.polydraw-layer-btn:focus-visible{outline:none;box-shadow:0 0 0 2px #2196f359}.polydraw-layer-btn-spacer{width:30px;height:30px;flex-shrink:0}.polydraw-layer-visibility-hidden{color:#999}.polydraw-layer-hidden .polydraw-layer-name{opacity:.65}@media(max-width:768px){.polydraw-layer-panel{width:196px;min-width:196px;max-width:196px}.polydraw-layer-row{height:30px;min-height:30px;padding:0 4px}.polydraw-layer-name{font-size:11.5px}.polydraw-layer-btn{width:30px;height:30px}}