leaflet-polydraw 0.9.3 → 0.9.5

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 (36) hide show
  1. package/README.md +32 -26
  2. package/dist/leaflet-polydraw.css +1 -1
  3. package/dist/polydraw.es.js +15855 -15594
  4. package/dist/polydraw.es.js.map +1 -1
  5. package/dist/polydraw.umd.min.js +1 -1
  6. package/dist/polydraw.umd.min.js.map +1 -1
  7. package/dist/styles/polydraw.css +58 -0
  8. package/dist/types/constants.d.ts +67 -0
  9. package/dist/types/constants.d.ts.map +1 -0
  10. package/dist/types/coordinate-utils.d.ts +2 -2
  11. package/dist/types/coordinate-utils.d.ts.map +1 -1
  12. package/dist/types/geojson-helpers.d.ts +92 -0
  13. package/dist/types/geojson-helpers.d.ts.map +1 -0
  14. package/dist/types/geometry-utils.d.ts +6 -0
  15. package/dist/types/geometry-utils.d.ts.map +1 -1
  16. package/dist/types/managers/polygon-draw-manager.d.ts.map +1 -1
  17. package/dist/types/managers/polygon-geometry-manager.d.ts +0 -8
  18. package/dist/types/managers/polygon-geometry-manager.d.ts.map +1 -1
  19. package/dist/types/managers/polygon-interaction-manager.d.ts +1 -7
  20. package/dist/types/managers/polygon-interaction-manager.d.ts.map +1 -1
  21. package/dist/types/managers/polygon-mutation-manager.d.ts +15 -3
  22. package/dist/types/managers/polygon-mutation-manager.d.ts.map +1 -1
  23. package/dist/types/polydraw.d.ts +5 -0
  24. package/dist/types/polydraw.d.ts.map +1 -1
  25. package/dist/types/polygon-helpers.d.ts +1 -1
  26. package/dist/types/polygon-helpers.d.ts.map +1 -1
  27. package/dist/types/polygon-information.service.d.ts +1 -2
  28. package/dist/types/polygon-information.service.d.ts.map +1 -1
  29. package/dist/types/polygon.util.d.ts.map +1 -1
  30. package/dist/types/turf-helper.d.ts +22 -31
  31. package/dist/types/turf-helper.d.ts.map +1 -1
  32. package/dist/types/types/polydraw-interfaces.d.ts +3 -6
  33. package/dist/types/types/polydraw-interfaces.d.ts.map +1 -1
  34. package/dist/types/utils.d.ts +1 -0
  35. package/dist/types/utils.d.ts.map +1 -1
  36. package/package.json +34 -8
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  > **Advanced Leaflet plugin for interactive polygon drawing with point-to-point creation, smart merging, and comprehensive editing tools**
6
6
 
7
- Leaflet Polydraw is a powerful, feature-rich plugin that transforms your Leaflet maps into interactive polygon drawing and editing environments. With intelligent merging, drag-and-drop functionality, and comprehensive editing tools, it's perfect for GIS applications, mapping tools, and spatial data collection.
7
+ Leaflet Polydraw is a powerful, feature-rich plugin that transforms your Leaflet maps into interactive polygon drawing and editing environments. With smart merging, drag-and-drop functionality, and comprehensive editing tools, it's perfect for GIS applications, mapping tools, and spatial data collection.
8
8
 
9
9
  [![npm](https://img.shields.io/npm/v/leaflet-polydraw)](https://www.npmjs.com/package/leaflet-polydraw)
10
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -54,10 +54,10 @@ You can also use Leaflet.Polydraw directly in the browser via a CDN like [jsDeli
54
54
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.4/dist/leaflet.css" />
55
55
  <link
56
56
  rel="stylesheet"
57
- href="https://cdn.jsdelivr.net/npm/leaflet.polydraw@0.8.7/dist/styles/polydraw.css"
57
+ href="https://cdn.jsdelivr.net/npm/leaflet.polydraw@latest/dist/styles/polydraw.css"
58
58
  />
59
59
  <script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.4/dist/leaflet.js"></script>
60
- <script src="https://cdn.jsdelivr.net/npm/leaflet.polydraw@0.8.7/dist/polydraw.umd.min.js"></script>
60
+ <script src="https://cdn.jsdelivr.net/npm/leaflet.polydraw@latest/dist/polydraw.umd.min.js"></script>
61
61
  ```
62
62
 
63
63
  ### Example Usage
@@ -124,7 +124,6 @@ const polyDrawControl = L.control
124
124
  .polydraw({
125
125
  position: 'topright',
126
126
  config: {
127
- touchSupport: true,
128
127
  mergePolygons: true,
129
128
  modes: {
130
129
  dragPolygons: true,
@@ -132,8 +131,6 @@ const polyDrawControl = L.control
132
131
  dragElbow: true,
133
132
  },
134
133
  dragPolygons: {
135
- autoMergeOnIntersect: true,
136
- autoHoleOnContained: true,
137
134
  markerBehavior: 'hide',
138
135
  },
139
136
  markers: {
@@ -164,7 +161,6 @@ const polyDrawControl = L.control
164
161
 
165
162
  ```javascript
166
163
  {
167
- "touchSupport": true,
168
164
  "mergePolygons": true,
169
165
  "kinks": false,
170
166
  "modes": {
@@ -178,18 +174,12 @@ const polyDrawControl = L.control
178
174
  "edgeDeletion": true
179
175
  },
180
176
  "dragPolygons": {
181
- "realTimeUpdate": false,
182
- "showDragHandle": false,
183
177
  "opacity": 0.7,
184
178
  "dragCursor": "move",
185
179
  "hoverCursor": "grab",
186
180
  "markerBehavior": "hide",
187
181
  "markerAnimationDuration": 200,
188
- "autoMergeOnIntersect": true,
189
- "autoHoleOnContained": false,
190
- "dragInteractionBehavior": "auto",
191
182
  "modifierSubtract": {
192
- "enabled": true,
193
183
  "keys": {
194
184
  "windows": "ctrlKey",
195
185
  "mac": "metaKey",
@@ -199,13 +189,11 @@ const polyDrawControl = L.control
199
189
  }
200
190
  },
201
191
  "edgeDeletion": {
202
- "enabled": true,
203
192
  "keys": {
204
193
  "windows": "ctrlKey",
205
194
  "mac": "metaKey",
206
195
  "linux": "ctrlKey"
207
196
  },
208
- "confirmDeletion": false,
209
197
  "minVertices": 3
210
198
  },
211
199
  "markers": {
@@ -335,7 +323,7 @@ const polyDrawControl = L.control
335
323
  },
336
324
  "dynamicMode": {
337
325
  "fractionGuard": 0.9,
338
- "multipiler": 2
326
+ "multiplier": 2
339
327
  }
340
328
  },
341
329
  "menuOperations": {
@@ -405,7 +393,6 @@ const polyDrawControl = L.control
405
393
 
406
394
  | Key | Type | Default | Description |
407
395
  | ------------------------------------------------------------------ | ------- | ------------------------------ | --------------------------------------------------------- |
408
- | **touchSupport** | boolean | `true` | Enable touch support for mobile devices |
409
396
  | **mergePolygons** | boolean | `true` | Auto-merge polygons during drawing when they intersect |
410
397
  | **kinks** | boolean | `false` | Allow self-intersecting polygons |
411
398
  | **modes** | object | | Feature toggles |
@@ -418,18 +405,12 @@ const polyDrawControl = L.control
418
405
  | &nbsp;&nbsp;dragPolygons | boolean | `true` | Enable dragging entire polygons |
419
406
  | &nbsp;&nbsp;edgeDeletion | boolean | `true` | Enable edge deletion with modifier keys |
420
407
  | **dragPolygons** | object | | Polygon dragging configuration |
421
- | &nbsp;&nbsp;realTimeUpdate | boolean | `false` | Update polygon position in real-time during drag |
422
- | &nbsp;&nbsp;showDragHandle | boolean | `false` | Show visual drag handle on polygons |
423
408
  | &nbsp;&nbsp;opacity | number | `0.7` | Polygon opacity during drag (0-1) |
424
409
  | &nbsp;&nbsp;dragCursor | string | `"move"` | Cursor during active dragging |
425
410
  | &nbsp;&nbsp;hoverCursor | string | `"grab"` | Cursor when hovering over draggable polygons |
426
411
  | &nbsp;&nbsp;markerBehavior | string | `"hide"` | Marker behavior during drag: `"hide"`, `"show"`, `"fade"` |
427
412
  | &nbsp;&nbsp;markerAnimationDuration | number | `200` | Duration of marker animations in milliseconds |
428
- | &nbsp;&nbsp;autoMergeOnIntersect | boolean | `true` | Auto-merge when dragging polygons together |
429
- | &nbsp;&nbsp;autoHoleOnContained | boolean | `false` | Create holes when dragging inside polygons |
430
- | &nbsp;&nbsp;dragInteractionBehavior | string | `"auto"` | How drag interactions are handled |
431
413
  | &nbsp;&nbsp;**modifierSubtract** | object | | Modifier key subtract configuration |
432
- | &nbsp;&nbsp;&nbsp;&nbsp;enabled | boolean | `true` | Enable modifier key subtract mode |
433
414
  | &nbsp;&nbsp;&nbsp;&nbsp;**keys** | object | | Platform-specific modifier keys |
434
415
  | &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;windows | string | `"ctrlKey"` | Windows modifier key |
435
416
  | &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mac | string | `"metaKey"` | Mac modifier key |
@@ -437,13 +418,11 @@ const polyDrawControl = L.control
437
418
  | &nbsp;&nbsp;&nbsp;&nbsp;subtractColor | string | `"#D9460F"` | Color for subtract mode visualization |
438
419
  | &nbsp;&nbsp;&nbsp;&nbsp;hideMarkersOnDrag | boolean | `true` | Hide markers during subtract drag |
439
420
  | **edgeDeletion** | object | | Edge deletion configuration |
440
- | &nbsp;&nbsp;enabled | boolean | `true` | Enable edge deletion functionality |
441
421
  | &nbsp;&nbsp;**keys** | object | | Platform-specific modifier keys |
442
422
  | &nbsp;&nbsp;&nbsp;&nbsp;windows | string | `"ctrlKey"` | Windows modifier key |
443
423
  | &nbsp;&nbsp;&nbsp;&nbsp;mac | string | `"metaKey"` | Mac modifier key |
444
424
  | &nbsp;&nbsp;&nbsp;&nbsp;linux | string | `"ctrlKey"` | Linux modifier key |
445
425
  | &nbsp;&nbsp;hoverColor | string | `"#D9460F"` | Color when hovering over deletable edges |
446
- | &nbsp;&nbsp;confirmDeletion | boolean | `false` | Require confirmation before deleting |
447
426
  | &nbsp;&nbsp;minVertices | number | `3` | Minimum vertices required after deletion |
448
427
  | **markers** | object | | Marker configuration |
449
428
  | &nbsp;&nbsp;deleteMarker | boolean | `true` | Show delete marker |
@@ -553,7 +532,7 @@ const polyDrawControl = L.control
553
532
  | &nbsp;&nbsp;&nbsp;&nbsp;mutate | boolean | `false` | Allow input mutation |
554
533
  | &nbsp;&nbsp;**dynamicMode** | object | | Dynamic simplification |
555
534
  | &nbsp;&nbsp;&nbsp;&nbsp;fractionGuard | number | `0.9` | Fraction guard value |
556
- | &nbsp;&nbsp;&nbsp;&nbsp;multipiler | number | `2` | Tolerance multiplier |
535
+ | &nbsp;&nbsp;&nbsp;&nbsp;multiplier | number | `2` | Tolerance multiplier |
557
536
  | **menuOperations** | object | | Menu marker operation settings |
558
537
  | &nbsp;&nbsp;**simplify** | object | | Simplify operation configuration |
559
538
  | &nbsp;&nbsp;&nbsp;&nbsp;processHoles | boolean | `true` | Whether to simplify holes along with outer ring |
@@ -979,6 +958,33 @@ map.on('polygon:created', (e) => {
979
958
  });
980
959
  ```
981
960
 
961
+ ## Roadmap & Future Improvements
962
+
963
+ This section outlines planned fixes and new features. Contributions are highly welcome!
964
+
965
+ ### Fixes and Core Improvements
966
+
967
+ - **Bezier Curve Refinement**: Improve the bezier curve algorithm for more intuitive results.
968
+ - **Simplification Algorithm Review**: Make simplification less aggressive and more predictable.
969
+ - **Mobile/Touch Support**: Enhance usability on touch devices, especially for p2p drawing.
970
+ - **Visual Optimization for Complex Polygons**: Smartly hide markers on complex polygons to reduce clutter while retaining functionality.
971
+
972
+ ### New Features
973
+
974
+ - **Polygon Splitting Tool**: A mode to split a polygon by drawing a line across it.
975
+ - **Undo/Redo History**: Add undo/redo capabilities for all editing actions.
976
+ - **Measurement Tool**: A tool for measuring distances and areas without creating permanent polygons.
977
+ - **Multi-Select and Edit**: Allow users to edit multiple polygons at once.
978
+ - **Geo-data Format Integration**: Add helpers for importing/exporting GeoJSON, WKT, or KML.
979
+
980
+ ### Low Priority Ideas
981
+
982
+ - **Topological Operations**: Add advanced GIS operations like intersection and buffering.
983
+ - **Drawing with Curves**: Allow drawing curved segments in point-to-point mode.
984
+ - **Theming and Customization**: Expand the config to allow for full theming.
985
+ - **Extensible Menu**: Allow developers to add custom actions to the menu.
986
+ - **Vertex Snapping**: Add snapping to a grid or other features.
987
+
982
988
  ## Browser Support
983
989
 
984
990
  > ⚠️ Mobile support is considered **beta** in this version. While basic touch interaction is implemented, advanced workflows may behave inconsistently across mobile browsers. Full mobile compatibility is planned for a future release.
@@ -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.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;justify-content:space-between}.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;padding-right:16px;box-shadow:3px 4px 20px #00000080}.alter-marker-wrapper,.info-marker-wrapper{height:40px;border:2px solid transparent;background-color:#80be50;color:#fff;padding:0 6px;border-radius:12px;text-align:center}.content{width:100%;min-height:40px;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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='5'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='20'%20cx='5'%20id='path819-25'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='20'%20cx='35'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3cpath%20id='path980'%20d='M%205,5%2035,20%20H%205'%20style='fill:none;stroke:%23ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%3e%3cpath%20id='path982'%20d='M%2035,20%205,35'%20style='fill:none;stroke:%23fffffe;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%20sodipodi:docname='icon-add-elbow.svg'%20inkscape:version='0.92.3%20(2405546,%202018-03-11)'%3e%3csodipodi:namedview%20pagecolor='%23ffffff'%20bordercolor='%23666666'%20borderopacity='1'%20objecttolerance='10'%20gridtolerance='10'%20guidetolerance='10'%20inkscape:pageopacity='0'%20inkscape:pageshadow='2'%20inkscape:window-width='1440'%20inkscape:window-height='837'%20id='namedview11'%20showgrid='false'%20showguides='true'%20inkscape:guide-bbox='true'%20inkscape:zoom='11.8'%20inkscape:cx='19.585579'%20inkscape:cy='18.314137'%20inkscape:window-x='-8'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='Layer_1'%3e%3csodipodi:guide%20position='5,39.40678'%20orientation='1,0'%20id='guide4521'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='35,35.169492'%20orientation='1,0'%20id='guide4523'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='18.389831,35'%20orientation='0,1'%20id='guide4525'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20.423729,5'%20orientation='0,1'%20id='guide4527'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20,25.762712'%20orientation='1,0'%20id='guide4533'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='27.372881,20'%20orientation='0,1'%20id='guide4535'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3c/sodipodi:namedview%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%3e%3cmarker%20inkscape:stockid='Tail'%20orient='auto'%20refY='0.0'%20refX='0.0'%20id='Tail'%20style='overflow:visible'%20inkscape:isstock='true'%3e%3cg%20id='g4585'%20transform='scale(-1.2)'%20style='stroke:%23000000;stroke-opacity:1;fill:%23ffffff;fill-opacity:1'%3e%3cpath%20id='path4573'%20d='M%20-3.8048674,-3.9585227%20L%200.54352094,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4575'%20d='M%20-1.2866832,-3.9585227%20L%203.0617053,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4577'%20d='M%201.3053582,-3.9585227%20L%205.6537466,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4579'%20d='M%20-3.8048674,4.1775838%20L%200.54352094,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4581'%20d='M%20-1.2866832,4.1775838%20L%203.0617053,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4583'%20d='M%201.3053582,4.1775838%20L%205.6537466,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5.5932202'%20cx='34.915257'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3cpath%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20d='M%205,35%20C%2035,5%2035,5%2035,5'%20id='path4531'%20inkscape:connector-curvature='0'%20/%3e%3ccircle%20r='7.0885124'%20cy='20'%20cx='19.830509'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:1.77212811;stroke-miterlimit:4;stroke-dasharray:1.77212806,%201.77212806000000000;stroke-dashoffset:0;stroke-opacity:1'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%3e%3ctitle%20id='title974'%3eBBox%3c/title%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3eBBox%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='5'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='35'%20id='path819-25'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='35'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3cpath%20id='path976'%20d='M%205,5%20C%2035,5%2035,5%2035,5'%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%3e%3cpath%20id='path978'%20d='M%2035,5%20V%2035%20H%205%20V%205'%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%20sodipodi:docname='icon-bezier.svg'%20inkscape:version='0.92.3%20(2405546,%202018-03-11)'%3e%3csodipodi:namedview%20pagecolor='%23ffffff'%20bordercolor='%23666666'%20borderopacity='1'%20objecttolerance='10'%20gridtolerance='10'%20guidetolerance='10'%20inkscape:pageopacity='0'%20inkscape:pageshadow='2'%20inkscape:window-width='1440'%20inkscape:window-height='837'%20id='namedview11'%20showgrid='false'%20showguides='true'%20inkscape:guide-bbox='true'%20inkscape:zoom='11.8'%20inkscape:cx='19.585579'%20inkscape:cy='18.314137'%20inkscape:window-x='-8'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='Layer_1'%3e%3csodipodi:guide%20position='5,39.40678'%20orientation='1,0'%20id='guide4521'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='35,35.169492'%20orientation='1,0'%20id='guide4523'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='18.389831,35'%20orientation='0,1'%20id='guide4525'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20.423729,5'%20orientation='0,1'%20id='guide4527'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20,25.762712'%20orientation='1,0'%20id='guide4533'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='27.372881,20'%20orientation='0,1'%20id='guide4535'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3c/sodipodi:namedview%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%3e%3cmarker%20inkscape:stockid='Tail'%20orient='auto'%20refY='0.0'%20refX='0.0'%20id='Tail'%20style='overflow:visible'%20inkscape:isstock='true'%3e%3cg%20id='g4585'%20transform='scale(-1.2)'%20style='stroke:%23000000;stroke-opacity:1;fill:%23ffffff;fill-opacity:1'%3e%3cpath%20id='path4573'%20d='M%20-3.8048674,-3.9585227%20L%200.54352094,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4575'%20d='M%20-1.2866832,-3.9585227%20L%203.0617053,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4577'%20d='M%201.3053582,-3.9585227%20L%205.6537466,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4579'%20d='M%20-3.8048674,4.1775838%20L%200.54352094,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4581'%20d='M%20-1.2866832,4.1775838%20L%203.0617053,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4583'%20d='M%201.3053582,4.1775838%20L%205.6537466,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3cpath%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20d='M%205,35%20C%2035,35%2035,5%2035,5%20v%200'%20id='path4894'%20inkscape:connector-curvature='0'%20/%3e%3cpath%20style='fill:none;stroke:%23fffffe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:2,%202;stroke-dashoffset:0'%20d='m%2035,4.830508%20v%200%20c%200,0%200,0%200,30.169492%20H%205'%20id='path4896'%20inkscape:connector-curvature='0'%20/%3e%3ccircle%20r='4'%20cy='35.169491'%20cx='34.830509'%20id='path819-25-9-8'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5.5932202'%20cx='34.915257'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3c/svg%3e");position:relative;overflow:hidden}.alpha-banner{position:absolute;top:6px;right:-18px;background:#fff6;color:#000;padding:1px 20px;font-size:8px;font-weight:700;transform:rotate(45deg);transform-origin:center;z-index:10;box-shadow:0 1px 3px #0000004d;line-height:12px;letter-spacing:.5px}.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 .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}
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.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;justify-content:space-between}.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;padding-right:16px;box-shadow:3px 4px 20px #00000080}.alter-marker-wrapper,.info-marker-wrapper{height:40px;border:2px solid transparent;background-color:#80be50;color:#fff;padding:0 6px;border-radius:12px;text-align:center}.content{width:100%;min-height:40px;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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='5'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='20'%20cx='5'%20id='path819-25'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='20'%20cx='35'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:none;stroke-opacity:1'%20/%3e%3cpath%20id='path980'%20d='M%205,5%2035,20%20H%205'%20style='fill:none;stroke:%23ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%3e%3cpath%20id='path982'%20d='M%2035,20%205,35'%20style='fill:none;stroke:%23fffffe;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%20sodipodi:docname='icon-add-elbow.svg'%20inkscape:version='0.92.3%20(2405546,%202018-03-11)'%3e%3csodipodi:namedview%20pagecolor='%23ffffff'%20bordercolor='%23666666'%20borderopacity='1'%20objecttolerance='10'%20gridtolerance='10'%20guidetolerance='10'%20inkscape:pageopacity='0'%20inkscape:pageshadow='2'%20inkscape:window-width='1440'%20inkscape:window-height='837'%20id='namedview11'%20showgrid='false'%20showguides='true'%20inkscape:guide-bbox='true'%20inkscape:zoom='11.8'%20inkscape:cx='19.585579'%20inkscape:cy='18.314137'%20inkscape:window-x='-8'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='Layer_1'%3e%3csodipodi:guide%20position='5,39.40678'%20orientation='1,0'%20id='guide4521'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='35,35.169492'%20orientation='1,0'%20id='guide4523'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='18.389831,35'%20orientation='0,1'%20id='guide4525'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20.423729,5'%20orientation='0,1'%20id='guide4527'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20,25.762712'%20orientation='1,0'%20id='guide4533'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='27.372881,20'%20orientation='0,1'%20id='guide4535'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3c/sodipodi:namedview%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%3e%3cmarker%20inkscape:stockid='Tail'%20orient='auto'%20refY='0.0'%20refX='0.0'%20id='Tail'%20style='overflow:visible'%20inkscape:isstock='true'%3e%3cg%20id='g4585'%20transform='scale(-1.2)'%20style='stroke:%23000000;stroke-opacity:1;fill:%23ffffff;fill-opacity:1'%3e%3cpath%20id='path4573'%20d='M%20-3.8048674,-3.9585227%20L%200.54352094,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4575'%20d='M%20-1.2866832,-3.9585227%20L%203.0617053,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4577'%20d='M%201.3053582,-3.9585227%20L%205.6537466,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4579'%20d='M%20-3.8048674,4.1775838%20L%200.54352094,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4581'%20d='M%20-1.2866832,4.1775838%20L%203.0617053,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4583'%20d='M%201.3053582,4.1775838%20L%205.6537466,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5.5932202'%20cx='34.915257'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3cpath%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20d='M%205,35%20C%2035,5%2035,5%2035,5'%20id='path4531'%20inkscape:connector-curvature='0'%20/%3e%3ccircle%20r='7.0885124'%20cy='20'%20cx='19.830509'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:1.77212811;stroke-miterlimit:4;stroke-dasharray:1.77212806,%201.77212806000000000;stroke-dashoffset:0;stroke-opacity:1'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%3e%3ctitle%20id='title974'%3eBBox%3c/title%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3eBBox%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='5'%20id='path819-2'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='35'%20id='path819-25'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5'%20cx='35'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3cpath%20id='path976'%20d='M%205,5%20C%2035,5%2035,5%2035,5'%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%3e%3cpath%20id='path978'%20d='M%2035,5%20V%2035%20H%205%20V%205'%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20/%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:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xml:space='preserve'%20style='enable-background:new%200%200%2040%2040;'%20viewBox='0%200%2040%2040'%20y='0px'%20x='0px'%20id='Layer_1'%20version='1.1'%20sodipodi:docname='icon-bezier.svg'%20inkscape:version='0.92.3%20(2405546,%202018-03-11)'%3e%3csodipodi:namedview%20pagecolor='%23ffffff'%20bordercolor='%23666666'%20borderopacity='1'%20objecttolerance='10'%20gridtolerance='10'%20guidetolerance='10'%20inkscape:pageopacity='0'%20inkscape:pageshadow='2'%20inkscape:window-width='1440'%20inkscape:window-height='837'%20id='namedview11'%20showgrid='false'%20showguides='true'%20inkscape:guide-bbox='true'%20inkscape:zoom='11.8'%20inkscape:cx='19.585579'%20inkscape:cy='18.314137'%20inkscape:window-x='-8'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='Layer_1'%3e%3csodipodi:guide%20position='5,39.40678'%20orientation='1,0'%20id='guide4521'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='35,35.169492'%20orientation='1,0'%20id='guide4523'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='18.389831,35'%20orientation='0,1'%20id='guide4525'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20.423729,5'%20orientation='0,1'%20id='guide4527'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='20,25.762712'%20orientation='1,0'%20id='guide4533'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3csodipodi:guide%20position='27.372881,20'%20orientation='0,1'%20id='guide4535'%20inkscape:locked='false'%20inkscape:label=''%20inkscape:color='rgb(0,0,255)'%20/%3e%3c/sodipodi:namedview%3e%3cmetadata%20id='metadata9'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3cdc:title%3e%3c/dc:title%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs7'%3e%3cmarker%20inkscape:stockid='Tail'%20orient='auto'%20refY='0.0'%20refX='0.0'%20id='Tail'%20style='overflow:visible'%20inkscape:isstock='true'%3e%3cg%20id='g4585'%20transform='scale(-1.2)'%20style='stroke:%23000000;stroke-opacity:1;fill:%23ffffff;fill-opacity:1'%3e%3cpath%20id='path4573'%20d='M%20-3.8048674,-3.9585227%20L%200.54352094,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4575'%20d='M%20-1.2866832,-3.9585227%20L%203.0617053,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4577'%20d='M%201.3053582,-3.9585227%20L%205.6537466,0'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4579'%20d='M%20-3.8048674,4.1775838%20L%200.54352094,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4581'%20d='M%20-1.2866832,4.1775838%20L%203.0617053,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3cpath%20id='path4583'%20d='M%201.3053582,4.1775838%20L%205.6537466,0.21974226'%20style='fill:%23ffffff;fill-rule:evenodd;stroke:%23000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1'%20/%3e%3c/g%3e%3c/marker%3e%3c/defs%3e%3cpath%20style='fill:none;stroke:%23ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none'%20d='M%205,35%20C%2035,35%2035,5%2035,5%20v%200'%20id='path4894'%20inkscape:connector-curvature='0'%20/%3e%3cpath%20style='fill:none;stroke:%23fffffe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:2,%202;stroke-dashoffset:0'%20d='m%2035,4.830508%20v%200%20c%200,0%200,0%200,30.169492%20H%205'%20id='path4896'%20inkscape:connector-curvature='0'%20/%3e%3ccircle%20r='4'%20cy='35.169491'%20cx='34.830509'%20id='path819-25-9-8'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='5.5932202'%20cx='34.915257'%20id='path819-25-9'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3ccircle%20r='4'%20cy='35'%20cx='5'%20id='path819'%20style='fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-opacity:1'%20/%3e%3c/svg%3e");position:relative;overflow:hidden}.alpha-banner{position:absolute;top:6px;right:-18px;background:#fff6;color:#000;padding:1px 20px;font-size:8px;font-weight:700;transform:rotate(45deg);transform-origin:center;z-index:10;box-shadow:0 1px 3px #0000004d;line-height:12px;letter-spacing:.5px}.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 .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-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}@-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}}