umap-project 2.6.3__py3-none-any.whl → 2.7.0b0__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.
- umap/__init__.py +1 -1
- umap/admin.py +64 -1
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +2 -0
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +5 -0
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +3 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +4 -1
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +7 -1
- umap/static/umap/js/modules/caption.js +6 -1
- umap/static/umap/js/modules/data/features.js +176 -2
- umap/static/umap/js/modules/data/layer.js +31 -26
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importers/communesfr.js +13 -1
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/ui.js +37 -212
- umap/static/umap/js/modules/sync/engine.js +365 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +4 -4
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +34 -17
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +5 -1
- umap/static/umap/js/umap.controls.js +47 -47
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +95 -112
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +21 -12
- umap/static/umap/locale/ca.json +21 -12
- umap/static/umap/locale/cs_CZ.js +87 -78
- umap/static/umap/locale/cs_CZ.json +87 -78
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/en.js +9 -2
- umap/static/umap/locale/en.json +9 -2
- umap/static/umap/locale/eu.js +10 -3
- umap/static/umap/locale/eu.json +10 -3
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fr.js +11 -4
- umap/static/umap/locale/fr.json +11 -4
- umap/static/umap/locale/hu.js +10 -3
- umap/static/umap/locale/hu.json +10 -3
- umap/static/umap/locale/pt.js +17 -8
- umap/static/umap/locale/pt.json +17 -8
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +7 -22
- umap/static/umap/unittests/hlc.js +158 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +23 -0
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -4
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_datalayer.py +5 -0
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +12 -8
- umap/tests/integration/test_edit_datalayer.py +4 -6
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_import.py +5 -0
- umap/tests/integration/test_map.py +5 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/RECORD +102 -97
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
2
|
-
umap/admin.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=fCHwe9mUwApiRsmXZOhhZ0lfoy3Sv_1gsRbkHsMLuO4,20
|
|
2
|
+
umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
|
-
umap/context_processors.py,sha256=
|
|
5
|
+
umap/context_processors.py,sha256=JugzLQSEybdR-XDYKaUQw7RVGhAqcuuA5cyzeW9lRf4,605
|
|
6
6
|
umap/decorators.py,sha256=t3YdQLuV0WrqMo2bHEbhkpzmxZe0gRNtzUvczruCn-A,2342
|
|
7
7
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
8
8
|
umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
|
|
9
9
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
10
10
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
11
|
-
umap/models.py,sha256=
|
|
11
|
+
umap/models.py,sha256=DHN0eRDEUQnFHB7kJRfLyNuNOzi5H5H_r9qZEkvHdbQ,19963
|
|
12
12
|
umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
13
|
-
umap/urls.py,sha256=
|
|
13
|
+
umap/urls.py,sha256=rr4fr3uXn0ZoQX5MjlJ8veTVoFVcdee2V8VZfzUHQNc,7561
|
|
14
14
|
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
-
umap/views.py,sha256=
|
|
16
|
-
umap/websocket_server.py,sha256=
|
|
15
|
+
umap/views.py,sha256=IiR3oDMEjAHp3wF0ErYxBcF3HkBsxa6JX66ffhm-ShU,45224
|
|
16
|
+
umap/websocket_server.py,sha256=D9sTHhKg0DG37b8bw7KWTKMDc6TPyTkNLCVkh2mlFOo,6604
|
|
17
17
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
18
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
19
19
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
|
|
@@ -28,16 +28,16 @@ umap/locale/br/LC_MESSAGES/django.mo,sha256=B16I45ITutbDQcJhPkoMpoEWqUpT5qR2qOOF
|
|
|
28
28
|
umap/locale/br/LC_MESSAGES/django.po,sha256=qaXfnEsQTNfwJ4mDFzJ2XkxuT5maqpGizRQh445f0f8,17395
|
|
29
29
|
umap/locale/ca/LC_MESSAGES/django.mo,sha256=5BMkHNTA4hk-XIxcxMxYzqgdOlLm6ydFum2LzTOk_8A,8671
|
|
30
30
|
umap/locale/ca/LC_MESSAGES/django.po,sha256=MhGl8xM4myBR4qc-4xv7yQ_U_R2fZXniDZMDdgEbb0A,16705
|
|
31
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256
|
|
32
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
31
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=-fyKJPNSCZpKRua8ONrlaFQl6TKa9IO5d5RqXt0nSJ4,12227
|
|
32
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=NGJTtWF95NN_GHBtosY4QGEJmdJgPIpGDAv8QP5GxGQ,18514
|
|
33
33
|
umap/locale/da/LC_MESSAGES/django.mo,sha256=iaJCTWGuBwECcHX4QuN1okL4mrFWcyQcXoxjKE8E2VA,6073
|
|
34
34
|
umap/locale/da/LC_MESSAGES/django.po,sha256=1d1q7jWvVKi0a5JRDYQoLyMWRCit4VWfL-x-beJTyhQ,13103
|
|
35
|
-
umap/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
36
|
-
umap/locale/de/LC_MESSAGES/django.po,sha256=
|
|
35
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=yNtUjelNlkj_CNPq5wg5Ac_je7PwSya9bAzZyDeJWNA,12206
|
|
36
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=yhWTil1WJ88O2doTHsy67d1p81PlW1mKv7rH-bR8r7s,18402
|
|
37
37
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9PbgLK6D0,15281
|
|
38
38
|
umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
|
|
39
39
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
40
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
40
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=yqwHZ_5njb_K_qGzYNbo3TxsIeziZ-MniJMfUDEGmUw,13403
|
|
41
41
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=FWziZWFL8XjPc36Y9fr9ipyA6kyFqstEI9lBpoaYiII,8913
|
|
42
42
|
umap/locale/es/LC_MESSAGES/django.po,sha256=ZvVUgXzOKGsjI_8BwF8YC2ld6mnL5IKWFe_RIhnbZr8,17226
|
|
43
43
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
|
|
@@ -48,8 +48,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=t4H1hC7blrnjOwIxILrqRuDsRAm_C8w3Z
|
|
|
48
48
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=hjk92LrZvSeOP-DzQpj_mp6ik97KiAXqANa7hQnOqbc,20435
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
50
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
52
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=6EYuhoATrNqy-DRu2SekDAZGvJbbfabo2wid9x9kIgc,12342
|
|
52
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=EyAqnd90CbBq5r_9xIEmliUx6qfFbnU7C7phIExMDC4,18739
|
|
53
53
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
|
|
54
54
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
|
|
55
55
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
|
|
@@ -78,8 +78,8 @@ umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk
|
|
|
78
78
|
umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
|
|
79
79
|
umap/locale/pl/LC_MESSAGES/django.mo,sha256=fMCMevGTw3C8Daq24P1m9gWFKvvZT4kXAd4JpRhjBns,10450
|
|
80
80
|
umap/locale/pl/LC_MESSAGES/django.po,sha256=AWSgcqq7iLAc-k66VFjxqxz4E_TsFXvX1jl5fHc1LyE,17723
|
|
81
|
-
umap/locale/pt/LC_MESSAGES/django.mo,sha256=
|
|
82
|
-
umap/locale/pt/LC_MESSAGES/django.po,sha256=
|
|
81
|
+
umap/locale/pt/LC_MESSAGES/django.mo,sha256=LQeh3K8t5lLWF1sYiL4qxeSjPuuft1iWQrmAKGW_zBU,12262
|
|
82
|
+
umap/locale/pt/LC_MESSAGES/django.po,sha256=kB6GAHqrO17NSjOaQ12Ia380WRK-bJNnsgEECqBO3sE,18294
|
|
83
83
|
umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
|
|
84
84
|
umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
|
|
85
85
|
umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
|
|
@@ -113,8 +113,10 @@ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=GpWfCxD6P1AcPJKMRiAWvKQVcKkIQzvOw
|
|
|
113
113
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
116
|
+
umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
|
|
116
117
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
117
118
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
119
|
+
umap/management/commands/purge_purgatory.py,sha256=IXlDz06Od_tIam5Y1IAT45V3x7GondBH1sPF2yNCYD0,838
|
|
118
120
|
umap/management/commands/run_websocket_server.py,sha256=TyECJWnmZ95KpVEWSaqfXywz5VwIEzPdypU2d6V541c,648
|
|
119
121
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
120
122
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
@@ -140,24 +142,24 @@ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQaya
|
|
|
140
142
|
umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
|
|
141
143
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
144
|
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
143
|
-
umap/settings/base.py,sha256=
|
|
145
|
+
umap/settings/base.py,sha256=jKn7LABSI_QGUPzHaeLqAk5BKyAVcqmW9R-kGRcbHEs,10566
|
|
144
146
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
145
147
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
146
148
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
-
umap/static/umap/base.css,sha256=
|
|
149
|
+
umap/static/umap/base.css,sha256=t52n1kFDOFZ7oVjLl_BORJuwC3ZIYfXdQWUfEQiQ6lY,16819
|
|
148
150
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
149
151
|
umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
|
|
150
152
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
151
153
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
152
|
-
umap/static/umap/map.css,sha256=
|
|
154
|
+
umap/static/umap/map.css,sha256=d1H3DYlSUP1HR2trp9_vnMg3_wp56xwsOY1jzO1Kxx0,36497
|
|
153
155
|
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
154
156
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
155
157
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
156
158
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
157
159
|
umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
|
|
158
|
-
umap/static/umap/css/contextmenu.css,sha256=
|
|
160
|
+
umap/static/umap/css/contextmenu.css,sha256=ozBmOn9N6zCvD-JUSj6oWgZawTR6OVhRrQmkARY-KS4,440
|
|
159
161
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
160
|
-
umap/static/umap/css/icon.css,sha256=
|
|
162
|
+
umap/static/umap/css/icon.css,sha256=e9hadIEzsVJKnTVvueG0IGbNNeFIM1yqboJhsXVE0rs,3868
|
|
161
163
|
umap/static/umap/css/importers.css,sha256=qsUmVtV4pyy5yzhKsGqMoCqUhoD5RoFDo69TuI6rSgw,1326
|
|
162
164
|
umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
|
|
163
165
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
@@ -175,8 +177,8 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
175
177
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
176
178
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
177
179
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
178
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
179
|
-
umap/static/umap/img/16.svg,sha256=
|
|
180
|
+
umap/static/umap/img/16-white.svg,sha256=DmlXugDNednOGvl66xRwye387ttUxo7MHC_B2mGDcfY,41639
|
|
181
|
+
umap/static/umap/img/16.svg,sha256=ik3vCzAnfc7vplTqXoDA8ltDYerhDW6gu_9P3bvoq6c,24725
|
|
180
182
|
umap/static/umap/img/24-white.svg,sha256=Z9BBwVMcjO4QOaTZMS0bQS1hd_jaBQHD5NanB2nJhnM,17592
|
|
181
183
|
umap/static/umap/img/24.svg,sha256=zZOHyTyuDINA7EForgVFWXosfsXD4-eQ8-Jzhn74gvQ,24878
|
|
182
184
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
@@ -206,58 +208,59 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
|
|
|
206
208
|
umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
|
|
207
209
|
umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
|
|
208
210
|
umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
|
|
209
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
210
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
211
|
+
umap/static/umap/img/source/16-white.svg,sha256=aQE1L1FGy46pqqxn8iSNcfur5GFP7JIbph3QE3q6FrE,74192
|
|
212
|
+
umap/static/umap/img/source/16.svg,sha256=U3cXEecGdlLm3X-4rrLk2c6-OJgGeRRt9ZBVMaswEZQ,46531
|
|
211
213
|
umap/static/umap/img/source/24-white.svg,sha256=F4lvAvzlTaqUsVhB13PXl7X-r4oz6rWykgHv0Dxmdec,28439
|
|
212
214
|
umap/static/umap/img/source/24.svg,sha256=zIuQN1fv_w0asmxzuiCh2TErV4za8Mqg6pK-4YKAt-w,37617
|
|
213
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
214
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
215
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
216
|
-
umap/static/umap/js/umap.js,sha256
|
|
215
|
+
umap/static/umap/js/umap.controls.js,sha256=nwpKvihCEqJMbxlEUsB57JvdNKpnlSf4KpO-VmbqTLI,35878
|
|
216
|
+
umap/static/umap/js/umap.core.js,sha256=xIy3DGUMw1A2SD1-CbBmjN_Xh2wvRgE4ZA2k5tC41Qs,7710
|
|
217
|
+
umap/static/umap/js/umap.forms.js,sha256=T-qC-xxLaY5FaQW-7T_6OKwBBU6HCRX9JK6BO3PYfn8,31554
|
|
218
|
+
umap/static/umap/js/umap.js,sha256=-L8SM61LhPifvicxeNlvVFzjWuWLFQ2n8d7m0PORLnc,57624
|
|
217
219
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
218
220
|
umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
|
|
219
221
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
220
222
|
umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
|
|
221
|
-
umap/static/umap/js/modules/autocomplete.js,sha256=
|
|
222
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
223
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
223
|
+
umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
|
|
224
|
+
umap/static/umap/js/modules/browser.js,sha256=uQQMY_N4ykh_HQGa_kaztNV5KsXkd78YvPUuN1gGDvs,7573
|
|
225
|
+
umap/static/umap/js/modules/caption.js,sha256=bNApBULuZT2hewbdBtN5WgFGYLgovnS0EYcm_P-VyLc,3859
|
|
224
226
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
225
227
|
umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
|
|
226
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
227
|
-
umap/static/umap/js/modules/global.js,sha256=
|
|
228
|
+
umap/static/umap/js/modules/formatter.js,sha256=rdOA_HQ89euI1ttLm2CXCUdphMc5-oU-69qeV3hk1Rk,4473
|
|
229
|
+
umap/static/umap/js/modules/global.js,sha256=8s61zn5EKFfZi7j8Ek1-QOpb1D3uRsTEtb3Uv47IQVU,2005
|
|
228
230
|
umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
|
|
229
231
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
230
232
|
umap/static/umap/js/modules/importer.js,sha256=4BIQEUHJCaJ7WFrCn_DSPzBKjOw0B_BeAuXMqF8D4W4,8657
|
|
231
233
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
232
234
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
233
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
235
|
+
umap/static/umap/js/modules/permissions.js,sha256=huRVci6BwjCRbMbel9EdWS-JEd6F8Zese4RGADqLEQY,8302
|
|
234
236
|
umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
|
|
235
237
|
umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
|
|
236
238
|
umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
|
|
237
239
|
umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
|
|
238
240
|
umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
|
|
239
241
|
umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
|
|
240
|
-
umap/static/umap/js/modules/urls.js,sha256=
|
|
241
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
242
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
243
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
244
|
-
umap/static/umap/js/modules/importers/communesfr.js,sha256=
|
|
242
|
+
umap/static/umap/js/modules/urls.js,sha256=oKkD5jfZMk3752nOWRjpNxVBPUJVcJvNONjnjkKwaVc,876
|
|
243
|
+
umap/static/umap/js/modules/utils.js,sha256=dfq-ZwRCu1wYf7uB3L6bd_mrRe3S6n6r9cF7tDf1uWI,11511
|
|
244
|
+
umap/static/umap/js/modules/data/features.js,sha256=D7kDDjdXdjzijnJenQOCMprng5pLeckj5lpCfXJ7FWQ,30878
|
|
245
|
+
umap/static/umap/js/modules/data/layer.js,sha256=tl_wuBYr3NgixM31TZF7MLlVqfVUBrwtwZ-6yBsO2F8,33296
|
|
246
|
+
umap/static/umap/js/modules/importers/communesfr.js,sha256=hfaLAkR-FtUWTs6tF6trqk-GcaODs7iI3KMN2iBAA6U,1700
|
|
245
247
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
246
248
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
|
|
247
249
|
umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeFAL6TMWMQlzkGLCSfym-4,3178
|
|
248
250
|
umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
|
|
249
251
|
umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
|
|
250
252
|
umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
|
|
251
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
253
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=XLJFyL_ociMsVpb-yEvVH0_OCeQjRb2hy4_d9TwhjXk,12569
|
|
252
254
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
|
|
253
255
|
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
|
|
254
256
|
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
|
|
255
257
|
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
|
|
256
|
-
umap/static/umap/js/modules/sync/engine.js,sha256=
|
|
257
|
-
umap/static/umap/js/modules/sync/
|
|
258
|
-
umap/static/umap/js/modules/sync/
|
|
259
|
-
umap/static/umap/js/modules/
|
|
260
|
-
umap/static/umap/js/modules/ui/
|
|
258
|
+
umap/static/umap/js/modules/sync/engine.js,sha256=aX7FyE9N0rV0cqHA5wlhf4cEYy7EuyjuHG027NO28S0,12884
|
|
259
|
+
umap/static/umap/js/modules/sync/hlc.js,sha256=gdyRDYx3341csuCDTv8EYHYmJkQLJd5HLYE-kT_i834,2985
|
|
260
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=MYkEyOO7iafzctJrSSBVPfLAbRUXjAyIvXIBsCMI-UY,2930
|
|
261
|
+
umap/static/umap/js/modules/sync/websocket.js,sha256=1UtvsTAm-gkfpBRcLPykPvDyax3mQSxG0KOjWhqnAIU,647
|
|
262
|
+
umap/static/umap/js/modules/ui/base.js,sha256=8PN8TRIBqTANRufwVvV0XzOdaYQuRCnlWGbTGq8FZiM,2491
|
|
263
|
+
umap/static/umap/js/modules/ui/contextmenu.js,sha256=QflpIfeLJRNFJrOUtBaaiDuPIH9xz0wzR8BfAz5X6cc,2015
|
|
261
264
|
umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
|
|
262
265
|
umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
|
|
263
266
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
|
|
@@ -269,41 +272,41 @@ umap/static/umap/locale/ast.js,sha256=SubPKn5IvvFAbrxFX5Uij6vH3QVr1ikFsXGYKS2vW_
|
|
|
269
272
|
umap/static/umap/locale/ast.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
270
273
|
umap/static/umap/locale/bg.js,sha256=HU9dzYksADHHSzjZJZ60kOWtE8nhiMW11OhkmpWYPQk,32364
|
|
271
274
|
umap/static/umap/locale/bg.json,sha256=TIiye2peZgV3WqC8n5I2lugq4aLc3OshaO280ztCVTw,32299
|
|
272
|
-
umap/static/umap/locale/br.js,sha256=
|
|
273
|
-
umap/static/umap/locale/br.json,sha256=
|
|
274
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
275
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
276
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
277
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
275
|
+
umap/static/umap/locale/br.js,sha256=UK3KjFWnXc9xPbIYQA74Z5jpweddhS3ZcuPfc8x-32A,31327
|
|
276
|
+
umap/static/umap/locale/br.json,sha256=x_bto9uVfYKP1lPZQuvhCcVVutXn2aa2MDKt8yAU9qs,31262
|
|
277
|
+
umap/static/umap/locale/ca.js,sha256=7VEhFIMfPenA-SlyauVAHtMQjUyDYdOKVIQTvfoiN_8,31079
|
|
278
|
+
umap/static/umap/locale/ca.json,sha256=68YqbO1PC8QKH6NzGgZAk21--6cYpA2qVGIujM5j3Gg,31014
|
|
279
|
+
umap/static/umap/locale/cs_CZ.js,sha256=OZxiZoP8040WraxdO2f5J7gFFwH0cbu56OwILE5blDY,32219
|
|
280
|
+
umap/static/umap/locale/cs_CZ.json,sha256=Ch1f3bmOzJ_jGJMb9r3VGxon6JeG3hdi1EOX-lB-WUs,32148
|
|
278
281
|
umap/static/umap/locale/da.js,sha256=UOqYXpeJwAGIjxi9vEhq6_zE_GJnU3vIW-yjtwwER64,29655
|
|
279
282
|
umap/static/umap/locale/da.json,sha256=nHZ5xFUXt98g-U5erLFGvqdpbVaGEhR8DGMh0jL-hDM,29590
|
|
280
|
-
umap/static/umap/locale/de.js,sha256=
|
|
281
|
-
umap/static/umap/locale/de.json,sha256=
|
|
283
|
+
umap/static/umap/locale/de.js,sha256=xDf9BY85Ar-mfhFUORgDCL2JLeU08U2UIW_FtNLS5S0,32365
|
|
284
|
+
umap/static/umap/locale/de.json,sha256=RA0e0pKtfyqZJWSSIYFGkwqT61BcCLTIH2qpQlvlOf4,32300
|
|
282
285
|
umap/static/umap/locale/el.js,sha256=sa-U3r4Makich8A9KM5ZY43qGMu_bT1PrBsxfQIGcYo,40722
|
|
283
286
|
umap/static/umap/locale/el.json,sha256=osruzu9kyf-_rzTPCfGE3k65iJN1DNVI1XHznZn3MWY,40657
|
|
284
|
-
umap/static/umap/locale/en.js,sha256=
|
|
285
|
-
umap/static/umap/locale/en.json,sha256=
|
|
287
|
+
umap/static/umap/locale/en.js,sha256=L8vZwGA7wi2WxEHB88-ogUT2-lrulVm6f91Q7ogLuaE,29629
|
|
288
|
+
umap/static/umap/locale/en.json,sha256=SC08KG3v_iovSOPAXlNtoax3c1HM80KSbDRoYZlE6qs,29564
|
|
286
289
|
umap/static/umap/locale/en_US.json,sha256=Oh7wNoHcrN8yUjROyTZbOf7hA_UizteJx9VKkLRqQm8,28991
|
|
287
290
|
umap/static/umap/locale/es.js,sha256=JF04Yjo58p5iI0PB87q2KqC0UZ5_glU5b6-4BCd4GuE,31685
|
|
288
291
|
umap/static/umap/locale/es.json,sha256=ulTaC0DscZbXov9OvuceQ5c8MMyHlgpxKgUHSoHNH_I,31620
|
|
289
292
|
umap/static/umap/locale/et.js,sha256=M0Nm-Q6fzUHSc23VghPpevytG_HwlV3CBqiAOy21CKo,29463
|
|
290
293
|
umap/static/umap/locale/et.json,sha256=tyFaazZbHUEguCItz9WwqkCLUUJ6Q2Z_FoCQU43Kwlc,29398
|
|
291
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
292
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
293
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
294
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
294
|
+
umap/static/umap/locale/eu.js,sha256=LRaS1-VLUnbpDs3eQeXGOJjvILnK0fM_PGKE5zDjCXQ,31548
|
|
295
|
+
umap/static/umap/locale/eu.json,sha256=1FGg0bY3166rx1HQKIXmnDtK5NrfVX0a1xTMmCJv4fA,31483
|
|
296
|
+
umap/static/umap/locale/fa_IR.js,sha256=wysDJtx5Qh1gmLliSY1nlkb1iiQ_gW0_wwbZhoMM1VA,38337
|
|
297
|
+
umap/static/umap/locale/fa_IR.json,sha256=aWEthk23gO9px5J4lAn5pSAVwslZIBaB7A18E6CQr_M,38266
|
|
295
298
|
umap/static/umap/locale/fi.js,sha256=7FHHkRL27ZPFKY9AHYQpdh2Yxmr7nStFkyx0qFFMg-4,30135
|
|
296
299
|
umap/static/umap/locale/fi.json,sha256=9Diss6QDm0eTgYy2xZNYXVI2akk5Dsgb6Ct6IUSbW7k,30070
|
|
297
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
298
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
300
|
+
umap/static/umap/locale/fr.js,sha256=W0xifum_5NJ25jrm9mdvD5hrOM95o-sPd_9sPxZA2pU,32443
|
|
301
|
+
umap/static/umap/locale/fr.json,sha256=GII3-1zYvrdj_DDj-0X_7ZJT-TyxS492-BDXAWeVANc,32378
|
|
299
302
|
umap/static/umap/locale/gl.js,sha256=090Z2Qo9MdULunWmqzup_jIyl0vNj98RLNtZ4G0nXeY,30690
|
|
300
303
|
umap/static/umap/locale/gl.json,sha256=TXy5_yZwAKAP89ohPUz3Z7_5Ol0jGy4T6qrzWQs8zGg,30625
|
|
301
304
|
umap/static/umap/locale/he.js,sha256=GO-lM4ghM4k5mbWHpHC6SQ_fpIFjfZzCMsbqT9ejf-k,32717
|
|
302
305
|
umap/static/umap/locale/he.json,sha256=AsRd-e_CJ0a_5QLz2mUJy_dTh1P7_IEkGOreiD8LUTk,32652
|
|
303
306
|
umap/static/umap/locale/hr.js,sha256=YsN1qxe9-pb8bvqi1Nr-kQdQhwdFZ0NfdIkHcSFTwuU,29438
|
|
304
307
|
umap/static/umap/locale/hr.json,sha256=A27REEeWlZecgzhJQvoWAVWxmXul5NXlEf5b6o2H0SA,29373
|
|
305
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
306
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
308
|
+
umap/static/umap/locale/hu.js,sha256=0fmkqqxjgSzEoKdQGMWL9jtYFmJrlYsBHo3RZIk4hcQ,33929
|
|
309
|
+
umap/static/umap/locale/hu.json,sha256=lQJPsQQcg125j6veuJyuTlMflj69ZLLe45ghNBlL2As,33864
|
|
307
310
|
umap/static/umap/locale/id.js,sha256=xJ_xohs4JCGEVW1YQOrW2LGz6HVjKfqEeBXaPlBr57k,29267
|
|
308
311
|
umap/static/umap/locale/id.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
309
312
|
umap/static/umap/locale/is.js,sha256=1en-tJMUihl2-_hGQKhWMTavjTfZGrM31GZV7RJNnNw,30599
|
|
@@ -325,12 +328,12 @@ umap/static/umap/locale/no.json,sha256=mYj1ImMm-UQckMx2NuN9qtWSNctK7SQUEXEHg55ra
|
|
|
325
328
|
umap/static/umap/locale/pl.js,sha256=xbR-Y6BFt4fMbe3tLxrBL5CbxGYHRAkBmCG9dEP5Ffs,31088
|
|
326
329
|
umap/static/umap/locale/pl.json,sha256=vOBHjtxviK3hgvBUcHqclyCb0D-g7ncyoirJftPyqyk,31023
|
|
327
330
|
umap/static/umap/locale/pl_PL.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
328
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
329
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
331
|
+
umap/static/umap/locale/pt.js,sha256=cetF0gJ16qN1mPhRUZvV_IzMi3O-W_nBP51T_8RSHJQ,32361
|
|
332
|
+
umap/static/umap/locale/pt.json,sha256=fqGtE8MemSoCOF16-zUW3Tp7iO1a3ONANcoUTaZpTm0,32296
|
|
330
333
|
umap/static/umap/locale/pt_BR.js,sha256=efTwyMyURTiunberlzIqr4Z5ERGPsItZejYmyUW9qU0,30650
|
|
331
334
|
umap/static/umap/locale/pt_BR.json,sha256=2q-Lq2caZMUi5OQtzTEwQS1uLELULzjj723t610CnoU,30579
|
|
332
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
333
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
335
|
+
umap/static/umap/locale/pt_PT.js,sha256=bmDW6NyTXqsw0nS9ZDDXb3kHAEAg6hzeORbPd4Jk3ig,32340
|
|
336
|
+
umap/static/umap/locale/pt_PT.json,sha256=NzQ5e9vX4Vcl0AQMXbaXsdIGiCeBDkEW4QnvHBcYnuA,32269
|
|
334
337
|
umap/static/umap/locale/ro.js,sha256=Y-OqPXR2D2aCEZWuCoyWlNSCbnD3VufbOX8z2vgnjyM,29296
|
|
335
338
|
umap/static/umap/locale/ro.json,sha256=Fy2aOAvi2SnwZQAB801w1-__s_nx3RGwbp5Cf-9eDf4,29231
|
|
336
339
|
umap/static/umap/locale/ru.js,sha256=pf4J79Col_9Tqv45w8uFv8WaPKXPgA7pyLF3x9hC1vw,36527
|
|
@@ -358,8 +361,8 @@ umap/static/umap/locale/zh.js,sha256=SjOsavnijVGgkODXCPnU_aDP4lrsTjwN8CIokqXo6-I
|
|
|
358
361
|
umap/static/umap/locale/zh.json,sha256=4ZTMRh_3_QG27WXeHPxWt68FRS-7BFZk77Kf89knXw4,28909
|
|
359
362
|
umap/static/umap/locale/zh_CN.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
360
363
|
umap/static/umap/locale/zh_TW.Big5.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
361
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
362
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
364
|
+
umap/static/umap/locale/zh_TW.js,sha256=BfsgSM3W_oNFY_6uSVi3RN8txM2sUvvDxRiDCwRzN6Y,29146
|
|
365
|
+
umap/static/umap/locale/zh_TW.json,sha256=Bk8NxZwy7OsG2xseNhg0JiuP064HKWbA6BIMBkMi-_g,29075
|
|
363
366
|
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
364
367
|
umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
|
|
365
368
|
umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
|
|
@@ -371,11 +374,10 @@ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ
|
|
|
371
374
|
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
372
375
|
umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
|
|
373
376
|
umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
|
|
374
|
-
umap/static/umap/unittests/
|
|
375
|
-
umap/static/umap/unittests/
|
|
377
|
+
umap/static/umap/unittests/hlc.js,sha256=HVlFEzvJ8spMErVvKpoKlUwdaDDTU4xxecg8fdVeoRU,5129
|
|
378
|
+
umap/static/umap/unittests/sync.js,sha256=JSyT4ZwuRF1mMUzLLJzjIs_6iZz8S2iF1imJGLpSdwQ,12751
|
|
379
|
+
umap/static/umap/unittests/utils.js,sha256=H-eKixI2F203GwZ36cvXtzbiWu-dGF5UXNS2_9ahnok,24647
|
|
376
380
|
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
|
|
379
381
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
|
|
380
382
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
|
|
381
383
|
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
|
|
@@ -391,7 +393,7 @@ umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_X
|
|
|
391
393
|
umap/static/umap/vendors/fullscreen/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
|
|
392
394
|
umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
|
|
393
395
|
umap/static/umap/vendors/geojson-to-gpx/index.js,sha256=0Yj4TT2yEefWHMCX-0S2sEe7zx89nzN6rFiB-gWfw_s,6242
|
|
394
|
-
umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=
|
|
396
|
+
umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=LIA6eoe2jK-I4fUdb4SDDXNGEPKTvVnYfX2nIO_dHOQ,2683
|
|
395
397
|
umap/static/umap/vendors/hash/leaflet-hash.js,sha256=0gxt71nsjV0toCvIrBkXr1M5IecQXS39rv9In81hLpE,3462
|
|
396
398
|
umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOhZgZo1SCenduc-SGo,5158
|
|
397
399
|
umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
|
|
@@ -446,11 +448,11 @@ umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscx
|
|
|
446
448
|
umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
|
|
447
449
|
umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
|
|
448
450
|
umap/templates/umap/css.html,sha256=j1oNsuz8g1Fc9rLGhIby9ngQpQYq42uYYn7Q_965aQk,2175
|
|
449
|
-
umap/templates/umap/dashboard_menu.html,sha256=
|
|
451
|
+
umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
|
|
450
452
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
453
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
454
|
umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
|
|
453
|
-
umap/templates/umap/js.html,sha256=
|
|
455
|
+
umap/templates/umap/js.html,sha256=IUoZAJ5Ku4KAoLKZD0ERDhqfcDp5hEC1rC59sKYYVyo,2557
|
|
454
456
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
455
457
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
456
458
|
umap/templates/umap/map_detail.html,sha256=QBotZCdYGNv6aKgwkcX2sdanw8FXZLlMux49vV8dWAU,1165
|
|
@@ -477,17 +479,20 @@ umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
477
479
|
umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
|
|
478
480
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
479
481
|
umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
|
|
480
|
-
umap/tests/
|
|
482
|
+
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
483
|
+
umap/tests/test_datalayer.py,sha256=6TI9-Tc5Fl2Bxe9vjxmfDV9BHd62ixIkTSEMOfWB8iA,9590
|
|
481
484
|
umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
|
|
482
485
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
483
486
|
umap/tests/test_map.py,sha256=yDSU75RxqCmXyiL90NZbrqvrYtmm6OFoc7SQ0kf0ei0,4874
|
|
484
|
-
umap/tests/test_map_views.py,sha256=
|
|
487
|
+
umap/tests/test_map_views.py,sha256=IPKUbFZ7JcZWBqkCjDPSIRZ35lGrRu7cA0EFzwXnxu0,31939
|
|
485
488
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
489
|
+
umap/tests/test_purge_purgatory.py,sha256=oQnsZqBFaJFDJxXtkkg2qzi1EFP57RpCwb6MQTupeIY,924
|
|
486
490
|
umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
|
|
487
491
|
umap/tests/test_team_views.py,sha256=vExhJ3c1cJ7vgxe0G20UzTKkzR5D2UgAapk09muUg5w,4481
|
|
488
492
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
489
493
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
490
494
|
umap/tests/test_views.py,sha256=_zc48oUJ4iz6wZZmjE23RcNqaB17m4Rs5LBYEtrEGlM,16805
|
|
495
|
+
umap/tests/test_websocket_server.py,sha256=BQ9Sy5VC9kBAfPWVxqcXoi9yfq12nfNvBE_j5rTFk7w,696
|
|
491
496
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
492
497
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
493
498
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
@@ -508,32 +513,32 @@ umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIx
|
|
|
508
513
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
509
514
|
umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXEMcO0I,2436
|
|
510
515
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
511
|
-
umap/tests/integration/test_anonymous_owned_map.py,sha256=
|
|
512
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
516
|
+
umap/tests/integration/test_anonymous_owned_map.py,sha256=d7YBsnO79NHRHgdYCYqmyALzeHtV__9dWObtvEfv0VM,10673
|
|
517
|
+
umap/tests/integration/test_basics.py,sha256=_aURyfOJen41AQtTvjQ2pHP5GNc1KVV6NRSspSuxKL0,3760
|
|
513
518
|
umap/tests/integration/test_browser.py,sha256=pFPeUlPG5Kpk9EhiHJmSenBpVRI3k15Ad8qBha48YJQ,17820
|
|
514
519
|
umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
|
|
515
520
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
516
521
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
517
|
-
umap/tests/integration/test_circles_layer.py,sha256=
|
|
522
|
+
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
518
523
|
umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
|
|
519
524
|
umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
|
|
520
525
|
umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
|
|
521
|
-
umap/tests/integration/test_datalayer.py,sha256=
|
|
522
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
523
|
-
umap/tests/integration/test_draw_polyline.py,sha256=
|
|
524
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
525
|
-
umap/tests/integration/test_edit_map.py,sha256=
|
|
526
|
+
umap/tests/integration/test_datalayer.py,sha256=CC9EOkcENu0Rz_k4_qmwaAKDxU7OFlJiuFE3OVjO4Z4,5614
|
|
527
|
+
umap/tests/integration/test_draw_polygon.py,sha256=Ub_1Witps_BLwMMmQ4M0vPIyQOEQ_Bq82znpJdWpCfY,25385
|
|
528
|
+
umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
|
|
529
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=JZPkX8U7g3LlbBBs9RfIZc2l-UyZpPybR3ioO1KI2cU,9365
|
|
530
|
+
umap/tests/integration/test_edit_map.py,sha256=Qt1QypkFNDwA4KPo_qxHbJGb3c4prDaJTuwgtrgGxGE,7110
|
|
526
531
|
umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
|
|
527
532
|
umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
|
|
528
533
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
529
534
|
umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
|
|
530
535
|
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
531
|
-
umap/tests/integration/test_import.py,sha256=
|
|
532
|
-
umap/tests/integration/test_map.py,sha256=
|
|
536
|
+
umap/tests/integration/test_import.py,sha256=QDx25gKJyiOO4vWQdzfL7vPLvM2-ttbLs2xKG2Iubrc,29128
|
|
537
|
+
umap/tests/integration/test_map.py,sha256=CMyVfl_MxdIh8FjkKW-NoKNt-vPmzLOyI5Vp0P1254E,8869
|
|
533
538
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
534
539
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
535
540
|
umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
|
|
536
|
-
umap/tests/integration/test_owned_map.py,sha256=
|
|
541
|
+
umap/tests/integration/test_owned_map.py,sha256=v6s0mwXuMDYAzcYoskx3hYX3Nn6X-VdlRiNSHjxQsjg,10368
|
|
537
542
|
umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
|
|
538
543
|
umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
|
|
539
544
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
@@ -543,11 +548,11 @@ umap/tests/integration/test_tableeditor.py,sha256=C2s06rTnzbs_ULxfsyPVq4UkfpnuRx
|
|
|
543
548
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
544
549
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
545
550
|
umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPXOaH-R26Myf6I0,4003
|
|
546
|
-
umap/tests/integration/test_view_polygon.py,sha256=
|
|
551
|
+
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
547
552
|
umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
|
|
548
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
549
|
-
umap_project-2.
|
|
550
|
-
umap_project-2.
|
|
551
|
-
umap_project-2.
|
|
552
|
-
umap_project-2.
|
|
553
|
-
umap_project-2.
|
|
553
|
+
umap/tests/integration/test_websocket_sync.py,sha256=pcEoXgEFvLBdmQA_rGa5BcHE2eBe3P0qZ6X3j4goRzQ,12764
|
|
554
|
+
umap_project-2.7.0b0.dist-info/METADATA,sha256=iN63dwi-Q2njSvl2hNnOB7Akrp2Wa4F2v9k1gAr17JQ,2682
|
|
555
|
+
umap_project-2.7.0b0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
556
|
+
umap_project-2.7.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
557
|
+
umap_project-2.7.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
558
|
+
umap_project-2.7.0b0.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});
|
|
File without changes
|
|
File without changes
|
|
File without changes
|