umap-project 2.6.3__py3-none-any.whl → 2.7.0__py3-none-any.whl

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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (137) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +54 -1
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +176 -2
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +73 -52
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/br.js +13 -4
  62. umap/static/umap/locale/br.json +13 -4
  63. umap/static/umap/locale/ca.js +28 -15
  64. umap/static/umap/locale/ca.json +28 -15
  65. umap/static/umap/locale/cs_CZ.js +87 -78
  66. umap/static/umap/locale/cs_CZ.json +87 -78
  67. umap/static/umap/locale/de.js +17 -8
  68. umap/static/umap/locale/de.json +17 -8
  69. umap/static/umap/locale/en.js +13 -2
  70. umap/static/umap/locale/en.json +13 -2
  71. umap/static/umap/locale/es.js +330 -319
  72. umap/static/umap/locale/es.json +330 -319
  73. umap/static/umap/locale/eu.js +10 -3
  74. umap/static/umap/locale/eu.json +10 -3
  75. umap/static/umap/locale/fa_IR.js +11 -4
  76. umap/static/umap/locale/fa_IR.json +11 -4
  77. umap/static/umap/locale/fr.js +15 -4
  78. umap/static/umap/locale/fr.json +15 -4
  79. umap/static/umap/locale/hu.js +10 -3
  80. umap/static/umap/locale/hu.json +10 -3
  81. umap/static/umap/locale/pt.js +17 -8
  82. umap/static/umap/locale/pt.json +17 -8
  83. umap/static/umap/locale/pt_PT.js +13 -4
  84. umap/static/umap/locale/pt_PT.json +13 -4
  85. umap/static/umap/locale/zh_TW.js +13 -4
  86. umap/static/umap/locale/zh_TW.json +13 -4
  87. umap/static/umap/map.css +44 -29
  88. umap/static/umap/unittests/hlc.js +165 -0
  89. umap/static/umap/unittests/sync.js +321 -15
  90. umap/static/umap/unittests/utils.js +47 -0
  91. umap/static/umap/vars.css +2 -1
  92. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  93. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  94. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  95. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  96. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  97. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  98. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  99. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  100. umap/templates/umap/css.html +0 -2
  101. umap/templates/umap/dashboard_menu.html +4 -2
  102. umap/templates/umap/js.html +0 -5
  103. umap/templates/umap/map_detail.html +2 -2
  104. umap/tests/fixtures/test_upload_data.csv +2 -2
  105. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  106. umap/tests/integration/test_basics.py +1 -1
  107. umap/tests/integration/test_browser.py +69 -7
  108. umap/tests/integration/test_caption.py +3 -3
  109. umap/tests/integration/test_circles_layer.py +12 -0
  110. umap/tests/integration/test_datalayer.py +2 -1
  111. umap/tests/integration/test_draw_polygon.py +17 -9
  112. umap/tests/integration/test_draw_polyline.py +12 -8
  113. umap/tests/integration/test_edit_datalayer.py +5 -8
  114. umap/tests/integration/test_edit_map.py +2 -2
  115. umap/tests/integration/test_edit_marker.py +1 -1
  116. umap/tests/integration/test_facets_browser.py +3 -3
  117. umap/tests/integration/test_import.py +1 -0
  118. umap/tests/integration/test_map.py +1 -0
  119. umap/tests/integration/test_owned_map.py +1 -1
  120. umap/tests/integration/test_view_marker.py +63 -0
  121. umap/tests/integration/test_view_polygon.py +12 -12
  122. umap/tests/integration/test_websocket_sync.py +65 -3
  123. umap/tests/test_clean_tilelayer.py +83 -0
  124. umap/tests/test_datalayer.py +24 -0
  125. umap/tests/test_map_views.py +20 -0
  126. umap/tests/test_purge_purgatory.py +25 -0
  127. umap/tests/test_websocket_server.py +22 -0
  128. umap/urls.py +5 -1
  129. umap/views.py +6 -3
  130. umap/websocket_server.py +130 -27
  131. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  132. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/RECORD +135 -127
  133. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  134. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  135. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  136. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  137. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,19 +1,20 @@
1
- umap/__init__.py,sha256=ZTspuGsEIGSCa-TVTjQvh_cNCdJjoh0W-ksleN6CvTI,18
2
- umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
1
+ umap/__init__.py,sha256=zS300t5kBvgJNFAMoEda5x5AApc6DZb0kCrfdwrXjG8,18
2
+ umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
+ umap/asgi.py,sha256=CuVSNBwNb4AvuaD_Ha3ehtvf-c46ijZoVOSoP6WhXp8,432
4
5
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
- umap/context_processors.py,sha256=tpFuobOUj75OaheysJMIt-Xnq0CFQOMY38e_vohX6dE,534
6
+ umap/context_processors.py,sha256=JugzLQSEybdR-XDYKaUQw7RVGhAqcuuA5cyzeW9lRf4,605
6
7
  umap/decorators.py,sha256=t3YdQLuV0WrqMo2bHEbhkpzmxZe0gRNtzUvczruCn-A,2342
7
8
  umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
9
  umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
9
10
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
11
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=5hCRqQN7pDqK4u_EOqog6nFNtspHUydQDNGmmdZZuyg,19065
12
+ umap/models.py,sha256=DHN0eRDEUQnFHB7kJRfLyNuNOzi5H5H_r9qZEkvHdbQ,19963
12
13
  umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
13
- umap/urls.py,sha256=OPJ47SOnVMmczfpMBYfKbf6UvCYWCm8sp36K2jczwUE,7476
14
+ umap/urls.py,sha256=rr4fr3uXn0ZoQX5MjlJ8veTVoFVcdee2V8VZfzUHQNc,7561
14
15
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
15
- umap/views.py,sha256=kkKsaVJ9oqhv3fCYfyVrDXdzFvIqTkC3MUHbbBghWv0,45101
16
- umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
16
+ umap/views.py,sha256=IiR3oDMEjAHp3wF0ErYxBcF3HkBsxa6JX66ffhm-ShU,45224
17
+ umap/websocket_server.py,sha256=D9sTHhKg0DG37b8bw7KWTKMDc6TPyTkNLCVkh2mlFOo,6604
17
18
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
18
19
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
19
20
  umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
@@ -28,18 +29,18 @@ umap/locale/br/LC_MESSAGES/django.mo,sha256=B16I45ITutbDQcJhPkoMpoEWqUpT5qR2qOOF
28
29
  umap/locale/br/LC_MESSAGES/django.po,sha256=qaXfnEsQTNfwJ4mDFzJ2XkxuT5maqpGizRQh445f0f8,17395
29
30
  umap/locale/ca/LC_MESSAGES/django.mo,sha256=5BMkHNTA4hk-XIxcxMxYzqgdOlLm6ydFum2LzTOk_8A,8671
30
31
  umap/locale/ca/LC_MESSAGES/django.po,sha256=MhGl8xM4myBR4qc-4xv7yQ_U_R2fZXniDZMDdgEbb0A,16705
31
- umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=uOOwbC0LrMQz00WCbdyQnOQPVJmN-qw9DKTmah3LDLM,9100
32
- umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=aPSw06SzysQvSd5mZU5jXJfj0vhwqag83dRbU7LPCd8,17330
32
+ umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=-fyKJPNSCZpKRua8ONrlaFQl6TKa9IO5d5RqXt0nSJ4,12227
33
+ umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=NGJTtWF95NN_GHBtosY4QGEJmdJgPIpGDAv8QP5GxGQ,18514
33
34
  umap/locale/da/LC_MESSAGES/django.mo,sha256=iaJCTWGuBwECcHX4QuN1okL4mrFWcyQcXoxjKE8E2VA,6073
34
35
  umap/locale/da/LC_MESSAGES/django.po,sha256=1d1q7jWvVKi0a5JRDYQoLyMWRCit4VWfL-x-beJTyhQ,13103
35
- umap/locale/de/LC_MESSAGES/django.mo,sha256=SKwizZUL6B_v_XT4CWB7EOkQOOwhCS4TAUrkRepOJvM,11148
36
- umap/locale/de/LC_MESSAGES/django.po,sha256=bJlBDnn4L9UBc1itmz9ymIk1eji9HiKQ6MLGE6kxpmc,18007
36
+ umap/locale/de/LC_MESSAGES/django.mo,sha256=yNtUjelNlkj_CNPq5wg5Ac_je7PwSya9bAzZyDeJWNA,12206
37
+ umap/locale/de/LC_MESSAGES/django.po,sha256=yhWTil1WJ88O2doTHsy67d1p81PlW1mKv7rH-bR8r7s,18402
37
38
  umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9PbgLK6D0,15281
38
39
  umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
39
40
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
40
- umap/locale/en/LC_MESSAGES/django.po,sha256=tNFTLf6VffWfojIWRzq9Y7CXqrQYYniFdN1pi34t218,13359
41
- umap/locale/es/LC_MESSAGES/django.mo,sha256=FWziZWFL8XjPc36Y9fr9ipyA6kyFqstEI9lBpoaYiII,8913
42
- umap/locale/es/LC_MESSAGES/django.po,sha256=ZvVUgXzOKGsjI_8BwF8YC2ld6mnL5IKWFe_RIhnbZr8,17226
41
+ umap/locale/en/LC_MESSAGES/django.po,sha256=yqwHZ_5njb_K_qGzYNbo3TxsIeziZ-MniJMfUDEGmUw,13403
42
+ umap/locale/es/LC_MESSAGES/django.mo,sha256=lCSi3pyK8u8GXwNDm1dSOB0Y7L7ljwofV568cy6SEI8,12200
43
+ umap/locale/es/LC_MESSAGES/django.po,sha256=COIKWmLHIJhrhrxw7-EZWR_Zg4vSSUsl1ydQtk9oEuY,18534
43
44
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
44
45
  umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
45
46
  umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
@@ -48,8 +49,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=t4H1hC7blrnjOwIxILrqRuDsRAm_C8w3Z
48
49
  umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=hjk92LrZvSeOP-DzQpj_mp6ik97KiAXqANa7hQnOqbc,20435
49
50
  umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
50
51
  umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
51
- umap/locale/fr/LC_MESSAGES/django.mo,sha256=Sn8nXuBFRj4FltY3td4IakYJRpxnkoaZQ7ykctp7AKw,12248
52
- umap/locale/fr/LC_MESSAGES/django.po,sha256=Y_PyuLMsk4uFUHgYXmtnEcJt6Jn5UFK5oIX_14oo9Bk,18677
52
+ umap/locale/fr/LC_MESSAGES/django.mo,sha256=6EYuhoATrNqy-DRu2SekDAZGvJbbfabo2wid9x9kIgc,12342
53
+ umap/locale/fr/LC_MESSAGES/django.po,sha256=EyAqnd90CbBq5r_9xIEmliUx6qfFbnU7C7phIExMDC4,18739
53
54
  umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
54
55
  umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
55
56
  umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
@@ -78,8 +79,8 @@ umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk
78
79
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
79
80
  umap/locale/pl/LC_MESSAGES/django.mo,sha256=fMCMevGTw3C8Daq24P1m9gWFKvvZT4kXAd4JpRhjBns,10450
80
81
  umap/locale/pl/LC_MESSAGES/django.po,sha256=AWSgcqq7iLAc-k66VFjxqxz4E_TsFXvX1jl5fHc1LyE,17723
81
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=tJ2OdBQAlIFc7X7r7jSkmlx1aMX2k75NxD7Oorye1Zw,11323
82
- umap/locale/pt/LC_MESSAGES/django.po,sha256=5NCFcwaTN1wybawUpWCtf1XknNlAFcLMpCdewoLB-Bw,17926
82
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=LQeh3K8t5lLWF1sYiL4qxeSjPuuft1iWQrmAKGW_zBU,12262
83
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=kB6GAHqrO17NSjOaQ12Ia380WRK-bJNnsgEECqBO3sE,18294
83
84
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
84
85
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
85
86
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
@@ -113,8 +114,10 @@ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=GpWfCxD6P1AcPJKMRiAWvKQVcKkIQzvOw
113
114
  umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
115
  umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
116
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
117
+ umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
116
118
  umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
117
119
  umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
120
+ umap/management/commands/purge_purgatory.py,sha256=IXlDz06Od_tIam5Y1IAT45V3x7GondBH1sPF2yNCYD0,838
118
121
  umap/management/commands/run_websocket_server.py,sha256=TyECJWnmZ95KpVEWSaqfXywz5VwIEzPdypU2d6V541c,648
119
122
  umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
120
123
  umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
@@ -140,25 +143,25 @@ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQaya
140
143
  umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
141
144
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
145
  umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
143
- umap/settings/base.py,sha256=FY8DaaF3b9z-Nu0PKo4KRuLDqxm5LtCOlxtohzG3z2s,10447
146
+ umap/settings/base.py,sha256=Ag86hEOxaZ0j-moPEayrusPryti9849KCSrFyZrzmnc,10608
144
147
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
145
148
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
146
149
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- umap/static/umap/base.css,sha256=HJJ7fmkkXihBrV6_fAwAOYPAVyvIyAmKbGQ55J3RCFQ,16798
150
+ umap/static/umap/base.css,sha256=t52n1kFDOFZ7oVjLl_BORJuwC3ZIYfXdQWUfEQiQ6lY,16819
148
151
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
149
152
  umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
150
153
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
151
154
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
152
- umap/static/umap/map.css,sha256=v5LjwLgUowtzSXQkGdpwSBxfyOWATY57UAgGyMIPQ_8,36963
155
+ umap/static/umap/map.css,sha256=7hhZ2m8C9jWQmaYhKtRjwKmE__TSExcK-EewKRNQ4UA,37384
153
156
  umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
154
157
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
155
158
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
156
159
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
157
- umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
158
- umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
160
+ umap/static/umap/vars.css,sha256=xEyzO2LSadDuwnETrRs-28hxuehFoPHVO3LSFc9XyKY,1789
161
+ umap/static/umap/css/contextmenu.css,sha256=AdPajFTy2M_yHbkMKDYdh45gRO4amNd0OXRYYDNZSI4,437
159
162
  umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
160
- umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
161
- umap/static/umap/css/importers.css,sha256=qsUmVtV4pyy5yzhKsGqMoCqUhoD5RoFDo69TuI6rSgw,1326
163
+ umap/static/umap/css/icon.css,sha256=e9hadIEzsVJKnTVvueG0IGbNNeFIM1yqboJhsXVE0rs,3868
164
+ umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
162
165
  umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
163
166
  umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
164
167
  umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
@@ -175,10 +178,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
175
178
  umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
176
179
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
177
180
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
178
- umap/static/umap/img/16-white.svg,sha256=yPkRrnYx5VagQgmgR8fqOU5_LtRifaMKPzZP7PnEx3c,39878
179
- umap/static/umap/img/16.svg,sha256=MJM2z0mWeBZnSlDZjxt13CprKYIeZmIzUoORuFMRf8A,23939
180
- umap/static/umap/img/24-white.svg,sha256=Z9BBwVMcjO4QOaTZMS0bQS1hd_jaBQHD5NanB2nJhnM,17592
181
- umap/static/umap/img/24.svg,sha256=zZOHyTyuDINA7EForgVFWXosfsXD4-eQ8-Jzhn74gvQ,24878
181
+ umap/static/umap/img/16-white.svg,sha256=DmlXugDNednOGvl66xRwye387ttUxo7MHC_B2mGDcfY,41639
182
+ umap/static/umap/img/16.svg,sha256=l87Urig9ASu3tDxxTsTR5tF7vrqetVnpCLZVXx4N7mU,24704
183
+ umap/static/umap/img/24-white.svg,sha256=PwFtlnDjxhnPt0c99xIL0KU14dzHT6D1EvAaaE2H650,18139
184
+ umap/static/umap/img/24.svg,sha256=9dLNjDli7tiVsOaV7WXOIa7o3QzdV2Kp6gjBbTsdq2M,25387
182
185
  umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
183
186
  umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
184
187
  umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
@@ -199,6 +202,7 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
199
202
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
200
203
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
201
204
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
205
+ umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPMwOW4rJ4BfEeap50Y,3084
202
206
  umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
203
207
  umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
204
208
  umap/static/umap/img/importers/geodatamine.svg,sha256=LmNUU_nANL-q8vE1Y2rZ9_D0QRDFCgWIwf7fEUX_gwo,8133
@@ -206,58 +210,60 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
206
210
  umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
207
211
  umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
208
212
  umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
209
- umap/static/umap/img/source/16-white.svg,sha256=jwnyt-E_4QGPYVc3DKRByI0iI7vj55hoGDOF8QsTs8U,71911
210
- umap/static/umap/img/source/16.svg,sha256=b5Dm2yMk5bEAb6FvKRWPtk86-Y2Gp4gX8WL1W1sIYBc,45384
211
- umap/static/umap/img/source/24-white.svg,sha256=F4lvAvzlTaqUsVhB13PXl7X-r4oz6rWykgHv0Dxmdec,28439
212
- umap/static/umap/img/source/24.svg,sha256=zIuQN1fv_w0asmxzuiCh2TErV4za8Mqg6pK-4YKAt-w,37617
213
- umap/static/umap/js/umap.controls.js,sha256=z-ccPT7y3oJ2upt0mB0G08qPWs8slodSF5qR8ivml4g,35757
214
- umap/static/umap/js/umap.core.js,sha256=JXTrFJJ6Da_RNGqVcgw08VMtZIz4IGB83TqFKLeBHfw,7679
215
- umap/static/umap/js/umap.forms.js,sha256=AKASrtNbnrE3PMdejGE40oEgeU2yvfDqXdeowwZLd5o,31455
216
- umap/static/umap/js/umap.js,sha256=q1brPIZUJ5OG2G_r0hNs3NvRxAVoAnjhz2BWP6jdn-s,57697
213
+ umap/static/umap/img/source/16-white.svg,sha256=aQE1L1FGy46pqqxn8iSNcfur5GFP7JIbph3QE3q6FrE,74192
214
+ umap/static/umap/img/source/16.svg,sha256=Los-GMM0FlVBPotdqASVyeEb5LvM0sxZQ_qu6S_3W_0,52984
215
+ umap/static/umap/img/source/24-white.svg,sha256=t5713m3RdG9vunV2nUhLY4o4xT9v7ke3NY42g9FeAnE,29206
216
+ umap/static/umap/img/source/24.svg,sha256=2HY-QmZc2_eV3TyqGLlzqgJXCLVbrzKQV5Q6JLWgNiI,38319
217
+ umap/static/umap/js/umap.controls.js,sha256=vQGX6K37xLWo5TJ49DACIMaNRL1DCa_rbJtxftueh2Q,36495
218
+ umap/static/umap/js/umap.core.js,sha256=j-xy2ZKaCoS2zMRf7bwc9evgXOmJHnbXgYmOP6Ir9g0,7714
219
+ umap/static/umap/js/umap.forms.js,sha256=T-qC-xxLaY5FaQW-7T_6OKwBBU6HCRX9JK6BO3PYfn8,31554
220
+ umap/static/umap/js/umap.js,sha256=Upll7-qM1eyfNnQ1tjza3AfTIkwycJwrxOikbcQh-fM,57847
217
221
  umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
218
222
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
219
223
  umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
220
224
  umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
221
- umap/static/umap/js/modules/autocomplete.js,sha256=wkS653Cm7H2mFJrha5a7tvFPerEg1P0Blft9q8SIQmw,8573
222
- umap/static/umap/js/modules/browser.js,sha256=jEU8-rhgMsfXIMHToY-F6AMJEPRhKM9NXEcUxXC1hAU,7414
223
- umap/static/umap/js/modules/caption.js,sha256=Jz3P_pDeNq8z74Lk1yGSgSstp3rhkh9LzzlWI0PHHxg,3813
225
+ umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
226
+ umap/static/umap/js/modules/browser.js,sha256=FXM-Dau0gxqFj77k9FUPBuf6gvrcN6ezsf4myP1rHU0,9243
227
+ umap/static/umap/js/modules/caption.js,sha256=WVesRXhlIlr5SAiKDv7nOquihvq1pv-dDHsG6i3nQeU,4041
224
228
  umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
225
229
  umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
226
- umap/static/umap/js/modules/formatter.js,sha256=nY2FV4TsZJcdNdb9nQlxcI4pnZZckdxWLFKjQSZc72M,4391
227
- umap/static/umap/js/modules/global.js,sha256=t57saMq7iT_2ypWBv2eEx8IjH8lWGuB_sMJHVNyfETw,1944
230
+ umap/static/umap/js/modules/formatter.js,sha256=rdOA_HQ89euI1ttLm2CXCUdphMc5-oU-69qeV3hk1Rk,4473
231
+ umap/static/umap/js/modules/global.js,sha256=8s61zn5EKFfZi7j8Ek1-QOpb1D3uRsTEtb3Uv47IQVU,2005
228
232
  umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
229
233
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
230
- umap/static/umap/js/modules/importer.js,sha256=4BIQEUHJCaJ7WFrCn_DSPzBKjOw0B_BeAuXMqF8D4W4,8657
234
+ umap/static/umap/js/modules/importer.js,sha256=6wDIbz1MaPKSSAaVP7bpUSBxXoKI9vkaPh5z-z4TilI,8761
231
235
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
232
236
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
233
- umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
237
+ umap/static/umap/js/modules/permissions.js,sha256=huRVci6BwjCRbMbel9EdWS-JEd6F8Zese4RGADqLEQY,8302
234
238
  umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
235
239
  umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
236
240
  umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
237
- umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
238
- umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
239
- umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
240
- umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
241
- umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
242
- umap/static/umap/js/modules/data/features.js,sha256=Okk6dV7bPucJdalop9kEKISQ0KS7tsX4gWxoCGZV98o,26330
243
- umap/static/umap/js/modules/data/layer.js,sha256=hcEgr1xlIayfMOTGNRIWP9BwluZAnqgoJ1RSAcVZeLw,33195
244
- umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
241
+ umap/static/umap/js/modules/share.js,sha256=J7w9VXJZTSbrVFvC8wrqSlXrpYzGxDvK7g1slK0y9o8,7180
242
+ umap/static/umap/js/modules/slideshow.js,sha256=-GPd2LXMGwbTc1ZGzzFgJZ3Q4kFwp2BlLCYEL-dILnY,3445
243
+ umap/static/umap/js/modules/tableeditor.js,sha256=VxIrKAtIuxXmpsJAJ4IGZTC7EiuWtNu8YWDjIUkIbHg,9763
244
+ umap/static/umap/js/modules/urls.js,sha256=oKkD5jfZMk3752nOWRjpNxVBPUJVcJvNONjnjkKwaVc,876
245
+ umap/static/umap/js/modules/utils.js,sha256=2vkpCFszXXZqYUAgxClD7r8vpjOHcPOZAC6RprqLMEY,12035
246
+ umap/static/umap/js/modules/data/features.js,sha256=D7kDDjdXdjzijnJenQOCMprng5pLeckj5lpCfXJ7FWQ,30878
247
+ umap/static/umap/js/modules/data/layer.js,sha256=t9dzD-n7_7F2ECgWNZF39fWGJR1LnmeEay45xvKKzVo,33686
248
+ umap/static/umap/js/modules/importers/cadastrefr.js,sha256=OZpbtcQSxAf0iEJOFvyR59W4l4yJPwx2XZqiLAsx_aY,2083
249
+ umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
245
250
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
246
251
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
247
252
  umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeFAL6TMWMQlzkGLCSfym-4,3178
248
253
  umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
249
254
  umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
250
255
  umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
251
- umap/static/umap/js/modules/rendering/ui.js,sha256=2mRmfBO1gBlFzdh9VaQCupP4wj11YJFu-4hgMzHkvJo,17470
256
+ umap/static/umap/js/modules/rendering/ui.js,sha256=WXwRqs9I1JOJxGcc7-db8w_rbaQ3xggsez6uu-X5GqU,13116
252
257
  umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
253
- umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
258
+ umap/static/umap/js/modules/rendering/layers/classified.js,sha256=nAmmPUkDD2lRin0qTUsESQdBhkBkK_A5_9hIyMyglXc,14671
254
259
  umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
255
260
  umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
256
- umap/static/umap/js/modules/sync/engine.js,sha256=m2FIY-GvtB5zRwiGNMn0DbTQV3aBdVxgXpaAKND0nX8,2587
257
- umap/static/umap/js/modules/sync/updaters.js,sha256=_sQtHBI86mapqwSOKBNPWMBnXlEwnS1W4H5F4jdYuqU,3002
258
- umap/static/umap/js/modules/sync/websocket.js,sha256=v9UdTU1lFTOXWBFFQjvYrl9to8ug_m6XAmpjRZRQreU,640
259
- umap/static/umap/js/modules/ui/base.js,sha256=a5QgdgkaFZZMDq50kCgyaobUQdjvDecdTQC3lZ7-M5M,2418
260
- umap/static/umap/js/modules/ui/contextmenu.js,sha256=JY1b_z9jq5FKMMAAZuWUjjvzo3RTuoAA_COS55jcDmo,1493
261
+ umap/static/umap/js/modules/sync/engine.js,sha256=rV5Qqtk_jpe_lDx97NFhea90yTGv0mne4js-9xrNV1c,13070
262
+ umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
263
+ umap/static/umap/js/modules/sync/updaters.js,sha256=WP6hB2gyQKF18hOCy1Ll3UBeYRe2K_LLT9vTUOkPuNk,3184
264
+ umap/static/umap/js/modules/sync/websocket.js,sha256=1UtvsTAm-gkfpBRcLPykPvDyax3mQSxG0KOjWhqnAIU,647
265
+ umap/static/umap/js/modules/ui/base.js,sha256=8PN8TRIBqTANRufwVvV0XzOdaYQuRCnlWGbTGq8FZiM,2491
266
+ umap/static/umap/js/modules/ui/contextmenu.js,sha256=VzC94uGUt8DkzC60Gcbz-MxivfSITEqUC91Fkpq1gjk,2550
261
267
  umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
262
268
  umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
263
269
  umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
@@ -269,41 +275,41 @@ umap/static/umap/locale/ast.js,sha256=SubPKn5IvvFAbrxFX5Uij6vH3QVr1ikFsXGYKS2vW_
269
275
  umap/static/umap/locale/ast.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
270
276
  umap/static/umap/locale/bg.js,sha256=HU9dzYksADHHSzjZJZ60kOWtE8nhiMW11OhkmpWYPQk,32364
271
277
  umap/static/umap/locale/bg.json,sha256=TIiye2peZgV3WqC8n5I2lugq4aLc3OshaO280ztCVTw,32299
272
- umap/static/umap/locale/br.js,sha256=ykTF3JQLFuveu0FrCmblM9CJfgpcOwXBsIjFRuhwCBs,30974
273
- umap/static/umap/locale/br.json,sha256=8ydswgweAlrySO6CeTTrezUfjXGFHJIq4ylKvUc_LQw,30909
274
- umap/static/umap/locale/ca.js,sha256=r5lgmSCHoixlJz8LMFABX_sFYtUXvkcL9YdfPIlRXrw,30665
275
- umap/static/umap/locale/ca.json,sha256=Roh2OnGMSmhHO_gZD_r_pxq_oQEtLvGCvmMfghLX1rA,30600
276
- umap/static/umap/locale/cs_CZ.js,sha256=HW5X5jQyOhjOrzpj76c9hL-lmnkBRl3DP6_rbDzPMrs,31470
277
- umap/static/umap/locale/cs_CZ.json,sha256=LltuMTmj-sgIX43ASXBrNm07y9TAfBNQ-lAh_pQDYH4,31399
278
+ umap/static/umap/locale/br.js,sha256=UK3KjFWnXc9xPbIYQA74Z5jpweddhS3ZcuPfc8x-32A,31327
279
+ umap/static/umap/locale/br.json,sha256=x_bto9uVfYKP1lPZQuvhCcVVutXn2aa2MDKt8yAU9qs,31262
280
+ umap/static/umap/locale/ca.js,sha256=N1KYzrF5nRNiPA_Tkg_Uwo5ZKw-sD9AsV2_yoEiWKZQ,31376
281
+ umap/static/umap/locale/ca.json,sha256=9bEQ4CG6-wP9U-rpIsLxE5OO-006xOONyB9m4qJMuds,31311
282
+ umap/static/umap/locale/cs_CZ.js,sha256=OZxiZoP8040WraxdO2f5J7gFFwH0cbu56OwILE5blDY,32219
283
+ umap/static/umap/locale/cs_CZ.json,sha256=Ch1f3bmOzJ_jGJMb9r3VGxon6JeG3hdi1EOX-lB-WUs,32148
278
284
  umap/static/umap/locale/da.js,sha256=UOqYXpeJwAGIjxi9vEhq6_zE_GJnU3vIW-yjtwwER64,29655
279
285
  umap/static/umap/locale/da.json,sha256=nHZ5xFUXt98g-U5erLFGvqdpbVaGEhR8DGMh0jL-hDM,29590
280
- umap/static/umap/locale/de.js,sha256=IY6skgR65doPNNt0LhziMRIegZWMkFUkczWPQ3SMFYo,31981
281
- umap/static/umap/locale/de.json,sha256=iVvVJz-6INgCL-ywcP_zgpMycDxnwfe9RKXULcPNgfE,31916
286
+ umap/static/umap/locale/de.js,sha256=xDf9BY85Ar-mfhFUORgDCL2JLeU08U2UIW_FtNLS5S0,32365
287
+ umap/static/umap/locale/de.json,sha256=RA0e0pKtfyqZJWSSIYFGkwqT61BcCLTIH2qpQlvlOf4,32300
282
288
  umap/static/umap/locale/el.js,sha256=sa-U3r4Makich8A9KM5ZY43qGMu_bT1PrBsxfQIGcYo,40722
283
289
  umap/static/umap/locale/el.json,sha256=osruzu9kyf-_rzTPCfGE3k65iJN1DNVI1XHznZn3MWY,40657
284
- umap/static/umap/locale/en.js,sha256=uctXG7JWAWIkKvkCeKlkJbTu1aGUxP7gAHbrtAvJBCU,29391
285
- umap/static/umap/locale/en.json,sha256=X161FzO88ysidNWpzuWdA5THzTZ2bMBgBP1nQx27FbU,29326
290
+ umap/static/umap/locale/en.js,sha256=Advf7-TgdNO71jbrMBUupUClGNqhR8rFUlN2TxSXtAM,29909
291
+ umap/static/umap/locale/en.json,sha256=2_bvACFiQ5XGjJXyXN-zXdhFJPqgfT6CPCzNDf0_XhA,29844
286
292
  umap/static/umap/locale/en_US.json,sha256=Oh7wNoHcrN8yUjROyTZbOf7hA_UizteJx9VKkLRqQm8,28991
287
- umap/static/umap/locale/es.js,sha256=JF04Yjo58p5iI0PB87q2KqC0UZ5_glU5b6-4BCd4GuE,31685
288
- umap/static/umap/locale/es.json,sha256=ulTaC0DscZbXov9OvuceQ5c8MMyHlgpxKgUHSoHNH_I,31620
293
+ umap/static/umap/locale/es.js,sha256=yMicCSIiTFkf420jZhucvO3_IfPw_PtCc8itPQZ3fnQ,32797
294
+ umap/static/umap/locale/es.json,sha256=3LNyC3YFM4cO8aoOufS2AtmUT4Z7HrtiJXoOwjGWijk,32732
289
295
  umap/static/umap/locale/et.js,sha256=M0Nm-Q6fzUHSc23VghPpevytG_HwlV3CBqiAOy21CKo,29463
290
296
  umap/static/umap/locale/et.json,sha256=tyFaazZbHUEguCItz9WwqkCLUUJ6Q2Z_FoCQU43Kwlc,29398
291
- umap/static/umap/locale/eu.js,sha256=ygejmr9tsWYvFPgx129QYG8O65V3c3lqrIZvgFDel_M,31309
292
- umap/static/umap/locale/eu.json,sha256=ZJvvy5D46W3EkuNGjOCTiVDyISDuS1nxSMA1WD1BqXg,31244
293
- umap/static/umap/locale/fa_IR.js,sha256=ZpX-lCHnUBbVcOIOXU1b7c37G5dbRUcCdeCOdq1SvJw,38110
294
- umap/static/umap/locale/fa_IR.json,sha256=xJSk8Hxc3V3L1KinGnISqba7-DARWIPyRk0ecLOEIUI,38039
297
+ umap/static/umap/locale/eu.js,sha256=LRaS1-VLUnbpDs3eQeXGOJjvILnK0fM_PGKE5zDjCXQ,31548
298
+ umap/static/umap/locale/eu.json,sha256=1FGg0bY3166rx1HQKIXmnDtK5NrfVX0a1xTMmCJv4fA,31483
299
+ umap/static/umap/locale/fa_IR.js,sha256=wysDJtx5Qh1gmLliSY1nlkb1iiQ_gW0_wwbZhoMM1VA,38337
300
+ umap/static/umap/locale/fa_IR.json,sha256=aWEthk23gO9px5J4lAn5pSAVwslZIBaB7A18E6CQr_M,38266
295
301
  umap/static/umap/locale/fi.js,sha256=7FHHkRL27ZPFKY9AHYQpdh2Yxmr7nStFkyx0qFFMg-4,30135
296
302
  umap/static/umap/locale/fi.json,sha256=9Diss6QDm0eTgYy2xZNYXVI2akk5Dsgb6Ct6IUSbW7k,30070
297
- umap/static/umap/locale/fr.js,sha256=UXz9U_G_0kkcZWeCJnMFXmjQANLesryix4Q-WT9rYbY,32167
298
- umap/static/umap/locale/fr.json,sha256=FHVlkaBHZiVQP4sDD2w_cAZVnerWvQf0jBzmEovPmAA,32102
303
+ umap/static/umap/locale/fr.js,sha256=PSr2EPZZywF5g7yT7Rxhcms2MtFxTorcAlmomp-FYa4,32764
304
+ umap/static/umap/locale/fr.json,sha256=3Iy--oK9JeyLbM3dIQhvx7SVl22TbxGf_t6KCkELj60,32699
299
305
  umap/static/umap/locale/gl.js,sha256=090Z2Qo9MdULunWmqzup_jIyl0vNj98RLNtZ4G0nXeY,30690
300
306
  umap/static/umap/locale/gl.json,sha256=TXy5_yZwAKAP89ohPUz3Z7_5Ol0jGy4T6qrzWQs8zGg,30625
301
307
  umap/static/umap/locale/he.js,sha256=GO-lM4ghM4k5mbWHpHC6SQ_fpIFjfZzCMsbqT9ejf-k,32717
302
308
  umap/static/umap/locale/he.json,sha256=AsRd-e_CJ0a_5QLz2mUJy_dTh1P7_IEkGOreiD8LUTk,32652
303
309
  umap/static/umap/locale/hr.js,sha256=YsN1qxe9-pb8bvqi1Nr-kQdQhwdFZ0NfdIkHcSFTwuU,29438
304
310
  umap/static/umap/locale/hr.json,sha256=A27REEeWlZecgzhJQvoWAVWxmXul5NXlEf5b6o2H0SA,29373
305
- umap/static/umap/locale/hu.js,sha256=3wkmWdJorxdaz2zrnFQsBmTLFqBBFn3p7DXb9R9BWHA,33682
306
- umap/static/umap/locale/hu.json,sha256=ori5CbUyP3cMfThYuEHl_RExmGW17QlCV1MH9tGK4-A,33617
311
+ umap/static/umap/locale/hu.js,sha256=0fmkqqxjgSzEoKdQGMWL9jtYFmJrlYsBHo3RZIk4hcQ,33929
312
+ umap/static/umap/locale/hu.json,sha256=lQJPsQQcg125j6veuJyuTlMflj69ZLLe45ghNBlL2As,33864
307
313
  umap/static/umap/locale/id.js,sha256=xJ_xohs4JCGEVW1YQOrW2LGz6HVjKfqEeBXaPlBr57k,29267
308
314
  umap/static/umap/locale/id.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
309
315
  umap/static/umap/locale/is.js,sha256=1en-tJMUihl2-_hGQKhWMTavjTfZGrM31GZV7RJNnNw,30599
@@ -325,12 +331,12 @@ umap/static/umap/locale/no.json,sha256=mYj1ImMm-UQckMx2NuN9qtWSNctK7SQUEXEHg55ra
325
331
  umap/static/umap/locale/pl.js,sha256=xbR-Y6BFt4fMbe3tLxrBL5CbxGYHRAkBmCG9dEP5Ffs,31088
326
332
  umap/static/umap/locale/pl.json,sha256=vOBHjtxviK3hgvBUcHqclyCb0D-g7ncyoirJftPyqyk,31023
327
333
  umap/static/umap/locale/pl_PL.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
328
- umap/static/umap/locale/pt.js,sha256=HbZGMcVVzfj6RXe3rz-n31x5eypabAFbWKGFYXoPM3U,31968
329
- umap/static/umap/locale/pt.json,sha256=38hNP59aUlpRHpCRZG0_oRtDgatgEGOLxYemInT0CVI,31903
334
+ umap/static/umap/locale/pt.js,sha256=cetF0gJ16qN1mPhRUZvV_IzMi3O-W_nBP51T_8RSHJQ,32361
335
+ umap/static/umap/locale/pt.json,sha256=fqGtE8MemSoCOF16-zUW3Tp7iO1a3ONANcoUTaZpTm0,32296
330
336
  umap/static/umap/locale/pt_BR.js,sha256=efTwyMyURTiunberlzIqr4Z5ERGPsItZejYmyUW9qU0,30650
331
337
  umap/static/umap/locale/pt_BR.json,sha256=2q-Lq2caZMUi5OQtzTEwQS1uLELULzjj723t610CnoU,30579
332
- umap/static/umap/locale/pt_PT.js,sha256=dvJ_VLnB_G2CxLFs_YijFmamWrdnJ-Cfvvs5mI8AH44,31996
333
- umap/static/umap/locale/pt_PT.json,sha256=AyoMzXjxDcKaCNHjdMWdGXLPJaLEWY0x6FytobX-G84,31925
338
+ umap/static/umap/locale/pt_PT.js,sha256=bmDW6NyTXqsw0nS9ZDDXb3kHAEAg6hzeORbPd4Jk3ig,32340
339
+ umap/static/umap/locale/pt_PT.json,sha256=NzQ5e9vX4Vcl0AQMXbaXsdIGiCeBDkEW4QnvHBcYnuA,32269
334
340
  umap/static/umap/locale/ro.js,sha256=Y-OqPXR2D2aCEZWuCoyWlNSCbnD3VufbOX8z2vgnjyM,29296
335
341
  umap/static/umap/locale/ro.json,sha256=Fy2aOAvi2SnwZQAB801w1-__s_nx3RGwbp5Cf-9eDf4,29231
336
342
  umap/static/umap/locale/ru.js,sha256=pf4J79Col_9Tqv45w8uFv8WaPKXPgA7pyLF3x9hC1vw,36527
@@ -358,8 +364,8 @@ umap/static/umap/locale/zh.js,sha256=SjOsavnijVGgkODXCPnU_aDP4lrsTjwN8CIokqXo6-I
358
364
  umap/static/umap/locale/zh.json,sha256=4ZTMRh_3_QG27WXeHPxWt68FRS-7BFZk77Kf89knXw4,28909
359
365
  umap/static/umap/locale/zh_CN.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
360
366
  umap/static/umap/locale/zh_TW.Big5.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
361
- umap/static/umap/locale/zh_TW.js,sha256=ld5mBHFaENUG3pCm77qYtFHwPRmpULPYTeY7_hnMHPM,28791
362
- umap/static/umap/locale/zh_TW.json,sha256=lXKEYEldqKQWt_525y9WKBOQJPV796RbMVly1JV-6MI,28720
367
+ umap/static/umap/locale/zh_TW.js,sha256=BfsgSM3W_oNFY_6uSVi3RN8txM2sUvvDxRiDCwRzN6Y,29146
368
+ umap/static/umap/locale/zh_TW.json,sha256=Bk8NxZwy7OsG2xseNhg0JiuP064HKWbA6BIMBkMi-_g,29075
363
369
  umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
364
370
  umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
365
371
  umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
@@ -371,14 +377,13 @@ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ
371
377
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
372
378
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
373
379
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
374
- umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
375
- umap/static/umap/unittests/utils.js,sha256=BLsT1C2ZfauTB1jHKklTEOsRNUFcdiTNxz3dPyfK9SY,24033
376
- umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
377
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
378
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
380
+ umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
381
+ umap/static/umap/unittests/sync.js,sha256=JSyT4ZwuRF1mMUzLLJzjIs_6iZz8S2iF1imJGLpSdwQ,12751
382
+ umap/static/umap/unittests/utils.js,sha256=oVckWaCK26yR8nX9NlVEL_eVKf0i8Z-UNnK5K9xY9t0,25609
383
+ umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
379
384
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
380
- umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
381
- umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
385
+ umap/static/umap/vendors/dompurify/purify.es.js,sha256=z-0CPcG0TCk11WMdauq46gDt65U61y_i-ltN5dKc500,64057
386
+ umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=wzzJMafObQYxw2FUcIM4AJShakCHU1hiEm1MotxK79g,123512
382
387
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
383
388
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
384
389
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
@@ -391,7 +396,7 @@ umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_X
391
396
  umap/static/umap/vendors/fullscreen/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
392
397
  umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
393
398
  umap/static/umap/vendors/geojson-to-gpx/index.js,sha256=0Yj4TT2yEefWHMCX-0S2sEe7zx89nzN6rFiB-gWfw_s,6242
394
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=NC6IG_16yvWLfYWF1K8wIrO_eMzxFU7c5brjTCaw6R8,3202
399
+ umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=LIA6eoe2jK-I4fUdb4SDDXNGEPKTvVnYfX2nIO_dHOQ,2683
395
400
  umap/static/umap/vendors/hash/leaflet-hash.js,sha256=0gxt71nsjV0toCvIrBkXr1M5IecQXS39rv9In81hLpE,3462
396
401
  umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOhZgZo1SCenduc-SGo,5158
397
402
  umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
@@ -411,8 +416,8 @@ umap/static/umap/vendors/loading/Control.Loading.css,sha256=oDy5SfMp_Ew1KH2J2avM
411
416
  umap/static/umap/vendors/loading/Control.Loading.js,sha256=FquvQIblVRto7kZlJ5hTS0rpr9fzTyNmCCmQzsy5EnU,14143
412
417
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftUDgzY_VtFMamPDs0o3GER52S9Tk8IK-wOoE,2269
413
418
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
414
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJMoykxLOdGxOUzGJDlmr8MM6sFF--b1_sI,12701
415
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
419
+ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=43FlkezpyRF326OVLB4hJ2nwWATdloa0VVWKR727wI4,12712
420
+ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=CmhhyXJFHx6jWQidSqqQlQKmNN7bTiqiiTTTqIn5X7E,15816
416
421
  umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
417
422
  umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
418
423
  umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
@@ -425,8 +430,8 @@ umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82
425
430
  umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
426
431
  umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHuPlz6F-rSx-DRTgQquma3VRZI,34674
427
432
  umap/static/umap/vendors/photon/leaflet.photon.js,sha256=AAgrsDIbpaugU6-2u6024CRB2cvE1OCNek7N9zAVlgY,14730
428
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=9Q8lBzEmEHECakXADgxLzmJ42oBB8JB257npQWOyitk,23988
429
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=Xcmjnfovskjz0ft9rGff8xr6oozB0wgYE-k5Dyo2Z4U,195620
433
+ umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
434
+ umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
430
435
  umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89l-QykDhAy0Fm09kWGSrWI,34371
431
436
  umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=NBjflNKJL_uGfiPrRRja6IoswUQ2_kaNk3iV64WY2Uo,75780
432
437
  umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
@@ -445,15 +450,15 @@ umap/templates/umap/about_summary.html,sha256=5pvCvX34YHk_XCtZfcRSznvRwi_-UJMioD
445
450
  umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
446
451
  umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
447
452
  umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
448
- umap/templates/umap/css.html,sha256=j1oNsuz8g1Fc9rLGhIby9ngQpQYq42uYYn7Q_965aQk,2175
449
- umap/templates/umap/dashboard_menu.html,sha256=hwZQL2fsZruw2s_yA-NW5t_IP2bdpc4n4ksXIRvBROw,631
453
+ umap/templates/umap/css.html,sha256=lR84fa1TVT9aDwMOko2VhgjBMEWFZlembJajSVuTNcs,2068
454
+ umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
450
455
  umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
451
456
  umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
452
457
  umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
453
- umap/templates/umap/js.html,sha256=BbWAsL6UgGx4tGkxkaGgyBRBxDQO327qWEWTp-H4J74,2763
458
+ umap/templates/umap/js.html,sha256=15Hp845KXDZhTT4Hfjxo_W6c63CHOWUp6OeHIqGenyU,2472
454
459
  umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
455
460
  umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
456
- umap/templates/umap/map_detail.html,sha256=QBotZCdYGNv6aKgwkcX2sdanw8FXZLlMux49vV8dWAU,1165
461
+ umap/templates/umap/map_detail.html,sha256=xMOsbF7NWJ-mpShR0ciJ8MrTeG2OYDm8OIL0yHbW6eg,1192
457
462
  umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
458
463
  umap/templates/umap/map_init.html,sha256=mglKMOvxRbe9qhO8SYsK0q3xcPcqEdSepo1sszxmDrE,290
459
464
  umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
@@ -477,17 +482,20 @@ umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
482
  umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
478
483
  umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
479
484
  umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
480
- umap/tests/test_datalayer.py,sha256=auf3u3BDIPianpn08CHkEsKEGq-frseMagAJc1OxXEM,8552
485
+ umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
486
+ umap/tests/test_datalayer.py,sha256=6TI9-Tc5Fl2Bxe9vjxmfDV9BHd62ixIkTSEMOfWB8iA,9590
481
487
  umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
482
488
  umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
483
489
  umap/tests/test_map.py,sha256=yDSU75RxqCmXyiL90NZbrqvrYtmm6OFoc7SQ0kf0ei0,4874
484
- umap/tests/test_map_views.py,sha256=1bd8vqVq3hYQ4m00klMi6Blxcy2dGKzHKRAxx85vfHk,31898
490
+ umap/tests/test_map_views.py,sha256=JLKX0zPE7aqw8osVanylO00NDFCxPiMc3I-wGeV-SOc,32567
485
491
  umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
492
+ umap/tests/test_purge_purgatory.py,sha256=oQnsZqBFaJFDJxXtkkg2qzi1EFP57RpCwb6MQTupeIY,924
486
493
  umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
487
494
  umap/tests/test_team_views.py,sha256=vExhJ3c1cJ7vgxe0G20UzTKkzR5D2UgAapk09muUg5w,4481
488
495
  umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
489
496
  umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
490
497
  umap/tests/test_views.py,sha256=_zc48oUJ4iz6wZZmjE23RcNqaB17m4Rs5LBYEtrEGlM,16805
498
+ umap/tests/test_websocket_server.py,sha256=BQ9Sy5VC9kBAfPWVxqcXoi9yfq12nfNvBE_j5rTFk7w,696
491
499
  umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
492
500
  umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
493
501
  umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
@@ -495,7 +503,7 @@ umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4g
495
503
  umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
496
504
  umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
497
505
  umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
498
- umap/tests/fixtures/test_upload_data.csv,sha256=KZOO-DcXhdTgx2FrIYZz_ZNZAKOp8zpN_jCyfDw3PcQ,186
506
+ umap/tests/fixtures/test_upload_data.csv,sha256=6wI0zxHgmTOeFhO7JxEhlG98IZ8vpKzxbt8lbAiW6ZY,180
499
507
  umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
500
508
  umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-Vtg8eBmHfQ4KQ,5650
501
509
  umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY5LfXnChBaP8,1102
@@ -508,32 +516,32 @@ umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIx
508
516
  umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
509
517
  umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXEMcO0I,2436
510
518
  umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
511
- umap/tests/integration/test_anonymous_owned_map.py,sha256=nsj9VNJ-uP8gToR-eYxBipE20s3DACfQaddpmvwqUBs,10606
512
- umap/tests/integration/test_basics.py,sha256=_XC0ojQU_HpBvkIPSt1g_rW1B0vjmAko8FSJ7WOD67M,3760
513
- umap/tests/integration/test_browser.py,sha256=pFPeUlPG5Kpk9EhiHJmSenBpVRI3k15Ad8qBha48YJQ,17820
514
- umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
519
+ umap/tests/integration/test_anonymous_owned_map.py,sha256=d7YBsnO79NHRHgdYCYqmyALzeHtV__9dWObtvEfv0VM,10673
520
+ umap/tests/integration/test_basics.py,sha256=_aURyfOJen41AQtTvjQ2pHP5GNc1KVV6NRSspSuxKL0,3760
521
+ umap/tests/integration/test_browser.py,sha256=uhis-PUFERQEuasfZPRP2tLuq9GcaNeie4nx3n_7SL0,19977
522
+ umap/tests/integration/test_caption.py,sha256=ZZwI3kyZe-t4MTxUkfXu33CLhnX5QfDqqwvO_DN4BpU,1783
515
523
  umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
516
524
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
517
- umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
525
+ umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
518
526
  umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
519
527
  umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
520
528
  umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
521
- umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
522
- umap/tests/integration/test_draw_polygon.py,sha256=s_a1j2Ye3jq09VmALZM0k1j2wYgoSjtjtlwpc8Eh_Sg,25311
523
- umap/tests/integration/test_draw_polyline.py,sha256=9w7f0zDgzLKRpH_SPt80SAFbU2DfVwpCWFbbPCrzAg8,14756
524
- umap/tests/integration/test_edit_datalayer.py,sha256=gg55b6xwWo__-DC4at7YT4NcaFnxn47GPhlrd86NZ9s,9505
525
- umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
526
- umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
529
+ umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
530
+ umap/tests/integration/test_draw_polygon.py,sha256=Ub_1Witps_BLwMMmQ4M0vPIyQOEQ_Bq82znpJdWpCfY,25385
531
+ umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
532
+ umap/tests/integration/test_edit_datalayer.py,sha256=oZFEvjAC0XIHgWgwE683dAL95y1Mvl-SBEVaf_dQnR4,9342
533
+ umap/tests/integration/test_edit_map.py,sha256=d76M4J6rumDQ6sKaOyTA45dWAkwAOtoUuNkW-GsA-fo,7134
534
+ umap/tests/integration/test_edit_marker.py,sha256=sj4n2mCYQ-qZ02jFHA566Wg_y9F6oXb1AxddnthSQHI,4746
527
535
  umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
528
536
  umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
529
- umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
537
+ umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
530
538
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
531
- umap/tests/integration/test_import.py,sha256=kUqFLpFFigAzwjbYX9FOkDlpahjntkWBaF9TmrLQWAI,28985
532
- umap/tests/integration/test_map.py,sha256=WH_vNCsFTnfEKNyt9OHfpXa3BMS1fh1cqvSLSb_Nxtk,8726
539
+ umap/tests/integration/test_import.py,sha256=k_lrh8HhMLGtpuzYxREyCi_fAQTZboeq6Wd34_MkgV4,28995
540
+ umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
533
541
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
534
542
  umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
535
543
  umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
536
- umap/tests/integration/test_owned_map.py,sha256=lzdHaN9HTQ-bd_MJT1tOVVALRxq1UqNiVWWhAzp-caI,10374
544
+ umap/tests/integration/test_owned_map.py,sha256=v6s0mwXuMDYAzcYoskx3hYX3Nn6X-VdlRiNSHjxQsjg,10368
537
545
  umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
538
546
  umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
539
547
  umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
@@ -542,12 +550,12 @@ umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTA
542
550
  umap/tests/integration/test_tableeditor.py,sha256=C2s06rTnzbs_ULxfsyPVq4UkfpnuRxCvqsK2zaEYfa0,7838
543
551
  umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
544
552
  umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
545
- umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPXOaH-R26Myf6I0,4003
546
- umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
553
+ umap/tests/integration/test_view_marker.py,sha256=f_WqtVe0ZfDX_SOeNXFh54ubvhJWeu7Ox9_Rtb-yfZQ,5970
554
+ umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
547
555
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
548
- umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
549
- umap_project-2.6.3.dist-info/METADATA,sha256=irMirsq7CBXuBM_FHtrmlqzaVy-s--1T88wkuYSNbeI,2679
550
- umap_project-2.6.3.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
551
- umap_project-2.6.3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
552
- umap_project-2.6.3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
553
- umap_project-2.6.3.dist-info/RECORD,,
556
+ umap/tests/integration/test_websocket_sync.py,sha256=pcEoXgEFvLBdmQA_rGa5BcHE2eBe3P0qZ6X3j4goRzQ,12764
557
+ umap_project-2.7.0.dist-info/METADATA,sha256=EUcgxam0z96KnDDfSJiHTkydthDCBJzvxciZf-fYw60,2888
558
+ umap_project-2.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
559
+ umap_project-2.7.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
560
+ umap_project-2.7.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
561
+ umap_project-2.7.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- .leaflet-contextmenu{display:none;box-shadow:0 1px 7px rgba(0,0,0,0.4);-webkit-border-radius:4px;border-radius:4px;padding:4px 0;background-color:#fff;cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leaflet-contextmenu a.leaflet-contextmenu-item{display:block;color:#222;font-size:12px;line-height:20px;text-decoration:none;padding:0 12px;border-top:1px solid transparent;border-bottom:1px solid transparent;cursor:default;outline:0}.leaflet-contextmenu a.leaflet-contextmenu-item-disabled{opacity:.5}.leaflet-contextmenu a.leaflet-contextmenu-item.over{background-color:#f4f4f4;border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0}.leaflet-contextmenu a.leaflet-contextmenu-item-disabled.over{background-color:inherit;border-top:1px solid transparent;border-bottom:1px solid transparent}.leaflet-contextmenu-icon{margin:2px 8px 0 0;width:16px;height:16px;float:left;border:0}.leaflet-contextmenu-separator{border-bottom:1px solid #ccc;margin:5px 0}
@@ -1,7 +0,0 @@
1
- /*
2
- Leaflet.contextmenu, a context menu for Leaflet.
3
- (c) 2015, Adam Ratcliffe, GeoSmart Maps Limited
4
-
5
- @preserve
6
- */
7
- (function(t){var e;if(typeof define==="function"&&define.amd){define(["leaflet"],t)}else if(typeof module==="object"&&typeof module.exports==="object"){e=require("leaflet");module.exports=t(e)}else{if(typeof window.L==="undefined"){throw new Error("Leaflet must be loaded first")}t(window.L)}})(function(t){t.Map.mergeOptions({contextmenuItems:[]});t.Map.ContextMenu=t.Handler.extend({_touchstart:t.Browser.msPointer?"MSPointerDown":t.Browser.pointer?"pointerdown":"touchstart",statics:{BASE_CLS:"leaflet-contextmenu"},initialize:function(e){t.Handler.prototype.initialize.call(this,e);this._items=[];this._visible=false;var n=this._container=t.DomUtil.create("div",t.Map.ContextMenu.BASE_CLS,e._container);n.style.zIndex=1e4;n.style.position="absolute";if(e.options.contextmenuWidth){n.style.width=e.options.contextmenuWidth+"px"}this._createItems();t.DomEvent.on(n,"click",t.DomEvent.stop).on(n,"mousedown",t.DomEvent.stop).on(n,"dblclick",t.DomEvent.stop).on(n,"contextmenu",t.DomEvent.stop)},addHooks:function(){var e=this._map.getContainer();t.DomEvent.on(e,"mouseleave",this._hide,this).on(document,"keydown",this._onKeyDown,this);if(t.Browser.touch){t.DomEvent.on(document,this._touchstart,this._hide,this)}this._map.on({contextmenu:this._show,mousedown:this._hide,movestart:this._hide,zoomstart:this._hide},this)},removeHooks:function(){var e=this._map.getContainer();t.DomEvent.off(e,"mouseleave",this._hide,this).off(document,"keydown",this._onKeyDown,this);if(t.Browser.touch){t.DomEvent.off(document,this._touchstart,this._hide,this)}this._map.off({contextmenu:this._show,mousedown:this._hide,movestart:this._hide,zoomstart:this._hide},this)},showAt:function(e,n){if(e instanceof t.LatLng){e=this._map.latLngToContainerPoint(e)}this._showAtPoint(e,n)},hide:function(){this._hide()},addItem:function(t){return this.insertItem(t)},insertItem:function(t,e){e=e!==undefined?e:this._items.length;var n=this._createItem(this._container,t,e);this._items.push(n);this._sizeChanged=true;this._map.fire("contextmenu.additem",{contextmenu:this,el:n.el,index:e});return n.el},removeItem:function(e){var n=this._container;if(!isNaN(e)){e=n.children[e]}if(e){this._removeItem(t.Util.stamp(e));this._sizeChanged=true;this._map.fire("contextmenu.removeitem",{contextmenu:this,el:e});return e}return null},removeAllItems:function(){var e=this._container.children,n;while(e.length){n=e[0];this._removeItem(t.Util.stamp(n))}return e},hideAllItems:function(){var t,e,n;for(e=0,n=this._items.length;e<n;e++){t=this._items[e];t.el.style.display="none"}},showAllItems:function(){var t,e,n;for(e=0,n=this._items.length;e<n;e++){t=this._items[e];t.el.style.display=""}},setDisabled:function(e,n){var i=this._container,o=t.Map.ContextMenu.BASE_CLS+"-item";if(!isNaN(e)){e=i.children[e]}if(e&&t.DomUtil.hasClass(e,o)){if(n){t.DomUtil.addClass(e,o+"-disabled");this._map.fire("contextmenu.disableitem",{contextmenu:this,el:e})}else{t.DomUtil.removeClass(e,o+"-disabled");this._map.fire("contextmenu.enableitem",{contextmenu:this,el:e})}}},isVisible:function(){return this._visible},_createItems:function(){var t=this._map.options.contextmenuItems,e,n,i;for(n=0,i=t.length;n<i;n++){this._items.push(this._createItem(this._container,t[n]))}},_createItem:function(e,n,i){if(n.separator||n==="-"){return this._createSeparator(e,i)}var o=t.Map.ContextMenu.BASE_CLS+"-item",s=n.disabled?o+" "+o+"-disabled":o,h=this._insertElementAt("a",s,e,i),r=this._createEventHandler(h,n.callback,n.context,n.hideOnSelect),a=this._getIcon(n),m=this._getIconCls(n),u="";if(a){u='<img class="'+t.Map.ContextMenu.BASE_CLS+'-icon" src="'+a+'"/>'}else if(m){u='<span class="'+t.Map.ContextMenu.BASE_CLS+"-icon "+m+'"></span>'}h.innerHTML=u+n.text;h.href="#";t.DomEvent.on(h,"mouseover",this._onItemMouseOver,this).on(h,"mouseout",this._onItemMouseOut,this).on(h,"mousedown",t.DomEvent.stopPropagation).on(h,"click",r);if(t.Browser.touch){t.DomEvent.on(h,this._touchstart,t.DomEvent.stopPropagation)}if(!t.Browser.pointer){t.DomEvent.on(h,"click",this._onItemMouseOut,this)}return{id:t.Util.stamp(h),el:h,callback:r}},_removeItem:function(e){var n,i,o,s,h;for(o=0,s=this._items.length;o<s;o++){n=this._items[o];if(n.id===e){i=n.el;h=n.callback;if(h){t.DomEvent.off(i,"mouseover",this._onItemMouseOver,this).off(i,"mouseover",this._onItemMouseOut,this).off(i,"mousedown",t.DomEvent.stopPropagation).off(i,"click",h);if(t.Browser.touch){t.DomEvent.off(i,this._touchstart,t.DomEvent.stopPropagation)}if(!t.Browser.pointer){t.DomEvent.on(i,"click",this._onItemMouseOut,this)}}this._container.removeChild(i);this._items.splice(o,1);return n}}return null},_createSeparator:function(e,n){var i=this._insertElementAt("div",t.Map.ContextMenu.BASE_CLS+"-separator",e,n);return{id:t.Util.stamp(i),el:i}},_createEventHandler:function(e,n,i,o){var s=this,h=this._map,r=t.Map.ContextMenu.BASE_CLS+"-item-disabled",o=o!==undefined?o:true;return function(a){if(t.DomUtil.hasClass(e,r)){return}if(o){s._hide()}if(n){n.call(i||h,s._showLocation)}s._map.fire("contextmenu.select",{contextmenu:s,el:e})}},_insertElementAt:function(t,e,n,i){var o,s=document.createElement(t);s.className=e;if(i!==undefined){o=n.children[i]}if(o){n.insertBefore(s,o)}else{n.appendChild(s)}return s},_show:function(t){this._showAtPoint(t.containerPoint,t)},_showAtPoint:function(e,n){if(this._items.length){var i=this._map,o=i.containerPointToLayerPoint(e),s=i.layerPointToLatLng(o),h=t.extend(n||{},{contextmenu:this});this._showLocation={latlng:s,layerPoint:o,containerPoint:e};if(n&&n.relatedTarget){this._showLocation.relatedTarget=n.relatedTarget}this._setPosition(e);if(!this._visible){this._container.style.display="block";this._visible=true}this._map.fire("contextmenu.show",h)}},_hide:function(){if(this._visible){this._visible=false;this._container.style.display="none";this._map.fire("contextmenu.hide",{contextmenu:this})}},_getIcon:function(e){return t.Browser.retina&&e.retinaIcon||e.icon},_getIconCls:function(e){return t.Browser.retina&&e.retinaIconCls||e.iconCls},_setPosition:function(e){var n=this._map.getSize(),i=this._container,o=this._getElementSize(i),s;if(this._map.options.contextmenuAnchor){s=t.point(this._map.options.contextmenuAnchor);e=e.add(s)}i._leaflet_pos=e;if(e.x+o.x>n.x){i.style.left="auto";i.style.right=Math.min(Math.max(n.x-e.x,0),n.x-o.x-1)+"px"}else{i.style.left=Math.max(e.x,0)+"px";i.style.right="auto"}if(e.y+o.y>n.y){i.style.top="auto";i.style.bottom=Math.min(Math.max(n.y-e.y,0),n.y-o.y-1)+"px"}else{i.style.top=Math.max(e.y,0)+"px";i.style.bottom="auto"}},_getElementSize:function(t){var e=this._size,n=t.style.display;if(!e||this._sizeChanged){e={};t.style.left="-999999px";t.style.right="auto";t.style.display="block";e.x=t.offsetWidth;e.y=t.offsetHeight;t.style.left="auto";t.style.display=n;this._sizeChanged=false}return e},_onKeyDown:function(t){var e=t.keyCode;if(e===27){this._hide()}},_onItemMouseOver:function(e){t.DomUtil.addClass(e.target||e.srcElement,"over")},_onItemMouseOut:function(e){t.DomUtil.removeClass(e.target||e.srcElement,"over")}});t.Map.addInitHook("addHandler","contextmenu",t.Map.ContextMenu);t.Mixin.ContextMenu={bindContextMenu:function(e){t.setOptions(this,e);this._initContextMenu();return this},unbindContextMenu:function(){this.off("contextmenu",this._showContextMenu,this);return this},addContextMenuItem:function(t){this.options.contextmenuItems.push(t)},removeContextMenuItemWithIndex:function(t){var e=[];for(var n=0;n<this.options.contextmenuItems.length;n++){if(this.options.contextmenuItems[n].index==t){e.push(n)}}var i=e.pop();while(i!==undefined){this.options.contextmenuItems.splice(i,1);i=e.pop()}},replaceContextMenuItem:function(t){this.removeContextMenuItemWithIndex(t.index);this.addContextMenuItem(t)},_initContextMenu:function(){this._items=[];this.on("contextmenu",this._showContextMenu,this)},_showContextMenu:function(e){var n,i,o,s,h;if(this._map.contextmenu){i=t.extend({relatedTarget:this},e);o=this._map.mouseEventToContainerPoint(e.originalEvent);if(!this.options.contextmenuInheritItems){this._map.contextmenu.hideAllItems()}for(s=0,h=this.options.contextmenuItems.length;s<h;s++){n=this.options.contextmenuItems[s];this._items.push(this._map.contextmenu.insertItem(n,n.index))}this._map.once("contextmenu.hide",this._hideContextMenu,this);this._map.contextmenu.showAt(o,i)}},_hideContextMenu:function(){var t,e;for(t=0,e=this._items.length;t<e;t++){this._map.contextmenu.removeItem(this._items[t])}this._items.length=0;if(!this.options.contextmenuInheritItems){this._map.contextmenu.showAllItems()}}};var e=[t.Marker,t.Path],n={contextmenu:false,contextmenuItems:[],contextmenuInheritItems:true},i,o,s;for(o=0,s=e.length;o<s;o++){i=e[o];if(!i.prototype.options){i.prototype.options=n}else{i.mergeOptions(n)}i.addInitHook(function(){if(this.options.contextmenu){this._initContextMenu()}});i.include(t.Mixin.ContextMenu)}return t.Map.ContextMenu});