umap-project 2.0.4__py3-none-any.whl → 2.1.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.
- umap/__init__.py +1 -1
- umap/fields.py +3 -1
- umap/locale/br/LC_MESSAGES/django.po +76 -71
- umap/locale/en/LC_MESSAGES/django.po +41 -41
- umap/locale/hu/LC_MESSAGES/django.po +42 -42
- umap/locale/it/LC_MESSAGES/django.po +64 -58
- umap/locale/ms/LC_MESSAGES/django.po +62 -57
- umap/migrations/0018_datalayer_uuid.py +62 -0
- umap/migrations/0019_migrate_internal_remote_datalayers.py +52 -0
- umap/models.py +20 -3
- umap/settings/base.py +1 -0
- umap/settings/dev.py +1 -0
- umap/static/umap/js/modules/browser.js +2 -2
- umap/static/umap/js/modules/global.js +14 -4
- umap/static/umap/js/modules/i18n.js +35 -0
- umap/static/umap/js/modules/leaflet-configure.js +7 -0
- umap/static/umap/js/modules/schema.js +388 -0
- umap/static/umap/js/modules/urls.js +17 -2
- umap/static/umap/js/modules/utils.js +24 -0
- umap/static/umap/js/umap.controls.js +9 -10
- umap/static/umap/js/umap.core.js +5 -5
- umap/static/umap/js/umap.features.js +23 -9
- umap/static/umap/js/umap.forms.js +49 -299
- umap/static/umap/js/umap.icon.js +2 -2
- umap/static/umap/js/umap.js +26 -129
- umap/static/umap/js/umap.layer.js +9 -9
- umap/static/umap/js/umap.popup.js +3 -0
- umap/static/umap/js/umap.share.js +1 -1
- umap/static/umap/locale/am_ET.json +229 -225
- umap/static/umap/locale/ar.json +229 -225
- umap/static/umap/locale/ast.json +229 -225
- umap/static/umap/locale/bg.json +229 -225
- umap/static/umap/locale/br.json +237 -233
- umap/static/umap/locale/ca.json +229 -225
- umap/static/umap/locale/cs_CZ.json +229 -225
- umap/static/umap/locale/da.json +229 -225
- umap/static/umap/locale/de.json +229 -225
- umap/static/umap/locale/el.json +229 -225
- umap/static/umap/locale/en.json +230 -233
- umap/static/umap/locale/en_US.json +229 -225
- umap/static/umap/locale/es.json +229 -225
- umap/static/umap/locale/et.json +229 -225
- umap/static/umap/locale/eu.json +226 -198
- umap/static/umap/locale/fa_IR.json +229 -225
- umap/static/umap/locale/fi.json +229 -225
- umap/static/umap/locale/fr.json +229 -232
- umap/static/umap/locale/gl.json +229 -225
- umap/static/umap/locale/he.json +229 -225
- umap/static/umap/locale/hr.json +229 -225
- umap/static/umap/locale/hu.json +229 -232
- umap/static/umap/locale/id.json +229 -225
- umap/static/umap/locale/is.json +229 -225
- umap/static/umap/locale/it.json +229 -232
- umap/static/umap/locale/ja.json +229 -225
- umap/static/umap/locale/ko.json +229 -225
- umap/static/umap/locale/lt.json +229 -225
- umap/static/umap/locale/ms.json +229 -232
- umap/static/umap/locale/nl.json +232 -228
- umap/static/umap/locale/no.json +229 -225
- umap/static/umap/locale/pl.json +229 -225
- umap/static/umap/locale/pl_PL.json +229 -225
- umap/static/umap/locale/pt.json +229 -225
- umap/static/umap/locale/pt_BR.json +229 -225
- umap/static/umap/locale/pt_PT.json +229 -225
- umap/static/umap/locale/ro.json +229 -225
- umap/static/umap/locale/ru.json +229 -225
- umap/static/umap/locale/sk_SK.json +229 -225
- umap/static/umap/locale/sl.json +229 -225
- umap/static/umap/locale/sr.json +229 -225
- umap/static/umap/locale/sv.json +229 -225
- umap/static/umap/locale/th_TH.json +229 -225
- umap/static/umap/locale/tr.json +229 -225
- umap/static/umap/locale/uk_UA.json +229 -225
- umap/static/umap/locale/vi.json +229 -225
- umap/static/umap/locale/vi_VN.json +229 -225
- umap/static/umap/locale/zh.json +229 -225
- umap/static/umap/locale/zh_CN.json +229 -225
- umap/static/umap/locale/zh_TW.Big5.json +229 -225
- umap/static/umap/locale/zh_TW.json +229 -232
- umap/static/umap/test/index.html +0 -2
- umap/static/umap/{test → unittests}/URLs.js +5 -0
- umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7064 -7064
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/templates/umap/js.html +8 -6
- umap/templatetags/umap_tags.py +3 -2
- umap/tests/integration/test_browser.py +40 -0
- umap/tests/integration/test_collaborative_editing.py +72 -3
- umap/tests/integration/test_export_map.py +226 -9
- umap/tests/integration/test_features_id_generation.py +51 -0
- umap/tests/integration/test_owned_map.py +14 -1
- umap/tests/integration/test_statics.py +3 -3
- umap/tests/integration/test_tilelayer.py +3 -3
- umap/tests/settings.py +3 -3
- umap/tests/test_datalayer_views.py +67 -20
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_merge_features.py +25 -5
- umap/urls.py +12 -12
- umap/utils.py +7 -0
- umap/views.py +56 -47
- umap/wsgi.py +1 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.0.dist-info}/METADATA +9 -9
- {umap_project-2.0.4.dist-info → umap_project-2.1.0.dist-info}/RECORD +105 -99
- umap/static/umap/test/Map.Export.js +0 -106
- {umap_project-2.0.4.dist-info → umap_project-2.1.0.dist-info}/WHEEL +0 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.0.4.dist-info → umap_project-2.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -19,7 +19,7 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.11.2
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django==5.0.
|
|
22
|
+
Requires-Dist: django==5.0.3
|
|
23
23
|
Requires-Dist: pillow==10.2.0
|
|
24
24
|
Requires-Dist: psycopg==3.1.18
|
|
25
25
|
Requires-Dist: rcssmin==1.1.2
|
|
@@ -29,22 +29,22 @@ Requires-Dist: social-auth-app-django==5.4.0
|
|
|
29
29
|
Requires-Dist: social-auth-core==4.5.3
|
|
30
30
|
Provides-Extra: dev
|
|
31
31
|
Requires-Dist: djlint==1.34.1; extra == 'dev'
|
|
32
|
-
Requires-Dist: hatch==1.9.
|
|
32
|
+
Requires-Dist: hatch==1.9.4; extra == 'dev'
|
|
33
33
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
34
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
34
|
+
Requires-Dist: mkdocs-material==9.5.14; extra == 'dev'
|
|
35
35
|
Requires-Dist: mkdocs==1.5.3; extra == 'dev'
|
|
36
|
-
Requires-Dist: pymdown-extensions==10.7; extra == 'dev'
|
|
37
|
-
Requires-Dist: ruff==0.
|
|
36
|
+
Requires-Dist: pymdown-extensions==10.7.1; extra == 'dev'
|
|
37
|
+
Requires-Dist: ruff==0.3.3; extra == 'dev'
|
|
38
38
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
39
39
|
Provides-Extra: docker
|
|
40
40
|
Requires-Dist: uwsgi==2.0.24; extra == 'docker'
|
|
41
41
|
Provides-Extra: test
|
|
42
42
|
Requires-Dist: factory-boy==3.2.1; extra == 'test'
|
|
43
43
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
44
|
-
Requires-Dist: pytest-django==4.
|
|
45
|
-
Requires-Dist: pytest-playwright==0.4.
|
|
44
|
+
Requires-Dist: pytest-django==4.8.0; extra == 'test'
|
|
45
|
+
Requires-Dist: pytest-playwright==0.4.4; extra == 'test'
|
|
46
46
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
47
|
-
Requires-Dist: pytest==
|
|
47
|
+
Requires-Dist: pytest==8.0.2; extra == 'test'
|
|
48
48
|
Description-Content-Type: text/markdown
|
|
49
49
|
|
|
50
50
|
# uMap project
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=NUYNa7PhqumIE5zRl-LPrL7HPtV6WkBx8Yf93ea7cEs,18
|
|
2
2
|
umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
5
|
umap/context_processors.py,sha256=HhRfnUElWwWCMk9vtXkyR3fpPcpagSpvRpqh8jYL8Lk,448
|
|
6
6
|
umap/decorators.py,sha256=ocbT65HKHy6rB8zVvuJfSYWbI7-se8wuvcuFQr-34n0,2004
|
|
7
|
-
umap/fields.py,sha256=
|
|
7
|
+
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
8
8
|
umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
|
|
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=Ol1AqtsSwNXCU67yJxCyWxF8EVpHIWLjZy4rcHPHZn0,17180
|
|
12
12
|
umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
|
|
13
|
-
umap/urls.py,sha256=
|
|
14
|
-
umap/utils.py,sha256
|
|
15
|
-
umap/views.py,sha256=
|
|
16
|
-
umap/wsgi.py,sha256=
|
|
13
|
+
umap/urls.py,sha256=frMCdfDQ2QB39xxqI8I12EeT-yChn5KDwDp-kQxp930,6876
|
|
14
|
+
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
+
umap/views.py,sha256=o91hRkYlMZP9QjH-BrD_2T4SV40C7vwmhOeBr80ijdg,41020
|
|
16
|
+
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
17
17
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
18
18
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
|
|
19
19
|
umap/locale/am_ET/LC_MESSAGES/django.po,sha256=4P1f7uKxOChVEGdNSgIinEmlIlllXyR-3ct55sbQBtg,13266
|
|
@@ -24,7 +24,7 @@ umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRR
|
|
|
24
24
|
umap/locale/bg/LC_MESSAGES/django.mo,sha256=YisH_thI9rdxn7wmQ5tEHComNK7TmLxP4fcDk1QGqf4,5921
|
|
25
25
|
umap/locale/bg/LC_MESSAGES/django.po,sha256=nlyZIP-psj_Jqafk4E6rO5-pEMMO_awNxYoANRXPHQA,13713
|
|
26
26
|
umap/locale/br/LC_MESSAGES/django.mo,sha256=yMuZQojNDzsoPh0xpvJCdn1IuVzD0UtoPbpkiWBz4QE,8707
|
|
27
|
-
umap/locale/br/LC_MESSAGES/django.po,sha256=
|
|
27
|
+
umap/locale/br/LC_MESSAGES/django.po,sha256=qygsPR_EYl2JrDuCx8p0b0IHV7l99BDyAYKPDQ_Q3WY,14711
|
|
28
28
|
umap/locale/ca/LC_MESSAGES/django.mo,sha256=1R7hKhSAkV1LM2HQ4lc54I9YwhGb_D8JddncpxK8Umg,7512
|
|
29
29
|
umap/locale/ca/LC_MESSAGES/django.po,sha256=P5vksWA9RkuW5Xf3h9NyGQqanSNJh5c6yH5PAV4p380,13707
|
|
30
30
|
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=fVq09prm674l3druK5S6gu7Xbo2SAykOFMnNReJUB1M,9209
|
|
@@ -36,7 +36,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
|
|
|
36
36
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
|
|
37
37
|
umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
|
|
38
38
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
39
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=D9GmEm1jBaKyYk6S5eUR3oBtw0TyscH6dsYwbODxd3M,10790
|
|
40
40
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
|
|
41
41
|
umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
|
|
42
42
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
|
|
@@ -56,13 +56,13 @@ umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6t
|
|
|
56
56
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
57
57
|
umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
|
|
58
58
|
umap/locale/hu/LC_MESSAGES/django.mo,sha256=5Sgl3mI9651nDWdsd3WoKFREdFd0kTHbIAWCnlMNv34,10460
|
|
59
|
-
umap/locale/hu/LC_MESSAGES/django.po,sha256=
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=Rxztnol_ufMta9xiC_ZqeRAXPtuBMVwAdV1beihQCek,15164
|
|
60
60
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
62
62
|
umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
|
|
63
63
|
umap/locale/is/LC_MESSAGES/django.po,sha256=tkEdFtLUQlSwn7AcpKrHJEpw__HNEHkJzqABkVk4pUk,13438
|
|
64
64
|
umap/locale/it/LC_MESSAGES/django.mo,sha256=xJ0oc0hX21aUHPkR_8fmG8h9fH9cVL2WRcGZ7oKvhvE,10053
|
|
65
|
-
umap/locale/it/LC_MESSAGES/django.po,sha256=
|
|
65
|
+
umap/locale/it/LC_MESSAGES/django.po,sha256=F-jYT2dKOJM1TaH5DK7cQPLK7swxSlPzuZ76_cue2hE,15266
|
|
66
66
|
umap/locale/ja/LC_MESSAGES/django.mo,sha256=aul0MIkp-B49WhZofKy7_gi9wqFe_Cq3Vrq7kU_z6DA,6636
|
|
67
67
|
umap/locale/ja/LC_MESSAGES/django.po,sha256=YjBmabk41z6CCvwAuPhyprUYJLXKsJoCp5_njUyVIm0,13543
|
|
68
68
|
umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG20CSC5Q8,6607
|
|
@@ -70,7 +70,7 @@ umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0b
|
|
|
70
70
|
umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
|
|
71
71
|
umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
|
|
72
72
|
umap/locale/ms/LC_MESSAGES/django.mo,sha256=88GIQO91aWcTDt7CK4f5ea6IR8KOLR23K6AVOAvE7eY,9874
|
|
73
|
-
umap/locale/ms/LC_MESSAGES/django.po,sha256=
|
|
73
|
+
umap/locale/ms/LC_MESSAGES/django.po,sha256=dGDEpdNNFSMcTwAOTuEbberEGqIyAT28KbYsA8gq8Nk,14661
|
|
74
74
|
umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
|
|
75
75
|
umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
|
|
76
76
|
umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
|
|
@@ -131,10 +131,12 @@ umap/migrations/0014_map_created_at.py,sha256=VcK1r2MNFJ5wt07_gRWJRf_fF22_GbYhpO
|
|
|
131
131
|
umap/migrations/0015_alter_pictogram_pictogram.py,sha256=ABoM7PXhcO6R2AM_XH6KITyhnP_dtw9d2xc5XVJiH7c,392
|
|
132
132
|
umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI9czwcQRkTHcX0,416
|
|
133
133
|
umap/migrations/0017_migrate_to_openstreetmap_oauth2.py,sha256=b8VTzVGK_PJCHfTsc8o8HlGiwzjklcziYKIuoZzFwYE,393
|
|
134
|
+
umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDEMfFWW0CUk,1927
|
|
135
|
+
umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
|
|
134
136
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
137
|
umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,1597
|
|
136
|
-
umap/settings/base.py,sha256=
|
|
137
|
-
umap/settings/dev.py,sha256=
|
|
138
|
+
umap/settings/base.py,sha256=rtulVGGfqaBJoZMvXeu9QrkOg-g3QhkXYTmgSEPjSOM,9844
|
|
139
|
+
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
138
140
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
139
141
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
142
|
umap/static/umap/base.css,sha256=YQtsvzIJJe9O8F34z9lev3vIGM-JwM9lZcvMJGYqzDI,21590
|
|
@@ -184,140 +186,143 @@ umap/static/umap/img/source/16.svg,sha256=OHwbeoiEMXfGLSzCauzOdBEkNzCr_sC4sNB1sT
|
|
|
184
186
|
umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
|
|
185
187
|
umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
|
|
186
188
|
umap/static/umap/js/umap.autocomplete.js,sha256=h3Ap9towVTChGSSZaMCrhWjQUPCrGcvW6fD46dD3pTs,7740
|
|
187
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
188
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
189
|
+
umap/static/umap/js/umap.controls.js,sha256=LnfUQ4bGc5NojBx9o-BzAjPCvCE_8NuJ_RZYs7hQjxA,43967
|
|
190
|
+
umap/static/umap/js/umap.core.js,sha256=aiTfkNI8Z13OiblpYEis6YrRNOObhVn70uikgBkkCIc,26116
|
|
189
191
|
umap/static/umap/js/umap.datalayer.permissions.js,sha256=kpGb7sZKdcSj0QhmGZ56LFtubysc68S48e3YzeXQNNs,1947
|
|
190
|
-
umap/static/umap/js/umap.features.js,sha256=
|
|
191
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
192
|
-
umap/static/umap/js/umap.icon.js,sha256=
|
|
192
|
+
umap/static/umap/js/umap.features.js,sha256=S6WYoRy63H5cvDpxOESWu6xkGksWpSYGbYyOXkWNuUQ,34677
|
|
193
|
+
umap/static/umap/js/umap.forms.js,sha256=KOtUkqVA7rmwi7O5PPqj_t3QusCqkRRbEbc2lcIENY0,26940
|
|
194
|
+
umap/static/umap/js/umap.icon.js,sha256=woRRVru2jSOl0Ah5DAl2vZCTg3rsPeNSoTt57IIcUOg,7546
|
|
193
195
|
umap/static/umap/js/umap.importer.js,sha256=B4kzV0VWrQK7ovIb2LDDdyaDK6tY7Q6TQejXtR8IakM,5305
|
|
194
|
-
umap/static/umap/js/umap.js,sha256=
|
|
195
|
-
umap/static/umap/js/umap.layer.js,sha256=
|
|
196
|
+
umap/static/umap/js/umap.js,sha256=TjWMc3Ardf7wjr895lKM7ZmvoVG8F78_FhtF8VC2rt0,55950
|
|
197
|
+
umap/static/umap/js/umap.layer.js,sha256=nvAihcDr6XFIZ-eSWgKkqXM5GJWmOeuKZBJnL28lkS4,47423
|
|
196
198
|
umap/static/umap/js/umap.permissions.js,sha256=d7M3aoQ4QliSD7lFnCWgoUN4pHax1-6JnerH8BjvubY,6097
|
|
197
|
-
umap/static/umap/js/umap.popup.js,sha256=
|
|
198
|
-
umap/static/umap/js/umap.share.js,sha256=
|
|
199
|
+
umap/static/umap/js/umap.popup.js,sha256=jZzwRbH3iIJlq35XiZa5Ugnw3KkplWckEgJmW7CAOWY,10108
|
|
200
|
+
umap/static/umap/js/umap.share.js,sha256=36IjZW9Gd_b-1OMD95-hJaKc2etPazILCDNS4iZJqCA,7774
|
|
199
201
|
umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
|
|
200
202
|
umap/static/umap/js/umap.tableeditor.js,sha256=GP5fYBTRAw7hLVB_k2H2KvECOBU6DLQF-MIZhsY3UAo,4075
|
|
201
203
|
umap/static/umap/js/umap.ui.js,sha256=xHj0owBiDTgahLsj6fKq3ur0JgNwJFu9BtT4uzbDQag,7699
|
|
202
204
|
umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
|
|
203
|
-
umap/static/umap/js/modules/browser.js,sha256
|
|
204
|
-
umap/static/umap/js/modules/global.js,sha256=
|
|
205
|
+
umap/static/umap/js/modules/browser.js,sha256=-RPyTmnd8_d9FhkmL4wP3DlQHkaoA9QIAdkCwoEptpA,5477
|
|
206
|
+
umap/static/umap/js/modules/global.js,sha256=tp8tCmAqKlSVNPi7w3n9wiMTb5Wh-DVh_XedZz_Lo60,454
|
|
207
|
+
umap/static/umap/js/modules/i18n.js,sha256=5EmqVuxda24BvXPZb8uOXNc21vHs7Rx8RF9fVZsnTR8,1207
|
|
208
|
+
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
205
209
|
umap/static/umap/js/modules/request.js,sha256=7qMUuC5Q2Ql0U8bbojUMSdGMsWrvyqM364j3uF0sLZs,4001
|
|
206
|
-
umap/static/umap/js/modules/
|
|
210
|
+
umap/static/umap/js/modules/schema.js,sha256=vP60-MU4rRowRrRQzWRQbT9vu4Klrp5sRTAy_ZgYyxQ,8926
|
|
211
|
+
umap/static/umap/js/modules/urls.js,sha256=isqV_dslYuNQIErzf5Wgq-oZqORRK4as6e78sfQgaUo,1308
|
|
212
|
+
umap/static/umap/js/modules/utils.js,sha256=sjCXiF3fb86evhDDJBDSRHjXTYTcKtjeC7SoNpFl680,558
|
|
207
213
|
umap/static/umap/locale/am_ET.js,sha256=R2dGebdXkPi_3vzW3U40Zjy5Ana-m6oyTino4HNMAqM,29438
|
|
208
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
214
|
+
umap/static/umap/locale/am_ET.json,sha256=FAeJw-0Nt0v44WZbe-m0YHs5fxxv0TDQGfeAAkqyFHs,29174
|
|
209
215
|
umap/static/umap/locale/ar.js,sha256=0D0cJse2maPMVyopcm61ukZWRyuJIEL98ksy7pFfj3g,25652
|
|
210
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
216
|
+
umap/static/umap/locale/ar.json,sha256=mvh_BZ5Tx9SQlsX9u5ny9Y4pKgvOCNnMLm27zH8uiT8,25404
|
|
211
217
|
umap/static/umap/locale/ast.js,sha256=V5WwvlePQkSUvdymO1bYukMnJ1IdDDrrD0wmcn_vk-M,25205
|
|
212
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
218
|
+
umap/static/umap/locale/ast.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
213
219
|
umap/static/umap/locale/bg.js,sha256=sJWZLRHAuLh_rF86Nn5Vy9A-YGA7rQ_05ESOR5MOraE,28526
|
|
214
|
-
umap/static/umap/locale/bg.json,sha256=
|
|
220
|
+
umap/static/umap/locale/bg.json,sha256=_74XZ1wE2xge9OYHpdHHNY0KiVtje58zpGwGI5Qw6VY,28218
|
|
215
221
|
umap/static/umap/locale/br.js,sha256=fHb5s_xD4nwtiIFohwxOdlYmwzk9_qGHm48ieJkn2DY,26641
|
|
216
|
-
umap/static/umap/locale/br.json,sha256=
|
|
222
|
+
umap/static/umap/locale/br.json,sha256=hKG8CeUaHPHHahIYjaG18C6QPAC3AJyZMwAhCaZW3M0,26494
|
|
217
223
|
umap/static/umap/locale/ca.js,sha256=F6E1BZVeyKZoVYDpaGZGJm_cJRx9d5SKwkyoTnXEZDo,26165
|
|
218
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
224
|
+
umap/static/umap/locale/ca.json,sha256=CFIqPaIdJ74jSCK9WAt8G2rFg3xLyMtA0RLJ7XjLLyA,25871
|
|
219
225
|
umap/static/umap/locale/cs_CZ.js,sha256=8p4aHku0L8UexAAIxe59m-GM_NMPkeEdsfZ1L5lpgII,27351
|
|
220
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
226
|
+
umap/static/umap/locale/cs_CZ.json,sha256=VnLNA9EGT9vheBBEdwA92kN4yfHQD9lRWzw10RU55YA,27022
|
|
221
227
|
umap/static/umap/locale/da.js,sha256=G-9tV7CvP9BG9Nvj42dRiMk5We_31VytoW8b5WkxHbA,25551
|
|
222
|
-
umap/static/umap/locale/da.json,sha256=
|
|
228
|
+
umap/static/umap/locale/da.json,sha256=BUGdBaNro91txQwp3GA2Kz2G7j72xCKYadUaWD2uPV4,25311
|
|
223
229
|
umap/static/umap/locale/de.js,sha256=WEaOHb7VkbdKZz-EHTqGqqaAU2k2z71Kl1Ua__iOnig,27402
|
|
224
|
-
umap/static/umap/locale/de.json,sha256=
|
|
230
|
+
umap/static/umap/locale/de.json,sha256=cZZGVzS3_MyEdj6l8lcBhXlZJAPiQiSOR5w9xR1o-vI,27114
|
|
225
231
|
umap/static/umap/locale/el.js,sha256=DXRcmeIJwqcTl4LcvzkRjR8Cdy7N9raadJnPw7yZIjc,37100
|
|
226
|
-
umap/static/umap/locale/el.json,sha256=
|
|
232
|
+
umap/static/umap/locale/el.json,sha256=dDDPh-md8Oqu3Lp-Dqzy3X3j0TvPS0-5liRpTltxvMc,36620
|
|
227
233
|
umap/static/umap/locale/en.js,sha256=rRomN53Qe340ZyCG4RhrOA1ruWxbJyye-bRHGsF_-gU,25541
|
|
228
|
-
umap/static/umap/locale/en.json,sha256=
|
|
229
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
234
|
+
umap/static/umap/locale/en.json,sha256=5Nd3kMsFRFOfzUa-hlQg6SQGk0w3rjrna0aGjHbzlCU,24955
|
|
235
|
+
umap/static/umap/locale/en_US.json,sha256=xH78ShS9hu3lzvkxNFXj5qx2aoEPAIY37OskYy5u9_U,24683
|
|
230
236
|
umap/static/umap/locale/es.js,sha256=qQ7B2hoW6HKrli79N6L9WPflGGl3CTV4v-RifXIB8ic,27697
|
|
231
|
-
umap/static/umap/locale/es.json,sha256=
|
|
237
|
+
umap/static/umap/locale/es.json,sha256=_yQgQB7q6UFOVtSEIzcus71PGpc8BKUmjbKWdIXNFsM,27361
|
|
232
238
|
umap/static/umap/locale/et.js,sha256=2eBK_7KST4Rqr9ThuiFlKSLJ7d1cbE9-rMsKXf4PdHI,25406
|
|
233
|
-
umap/static/umap/locale/et.json,sha256=
|
|
239
|
+
umap/static/umap/locale/et.json,sha256=gBGLZ5A1aNoR5g4SwOxW-mfyne4ZQZrEbP1wmGNgoZo,25160
|
|
234
240
|
umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
|
|
235
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
241
|
+
umap/static/umap/locale/eu.json,sha256=YDyhJQajJOZPDZyKmt-UzISm15skFbLKKyv28d_nWTQ,24997
|
|
236
242
|
umap/static/umap/locale/fa_IR.js,sha256=wq38Vjc5Gh5TieJ4WBY25q7F-UfqouQ5_9v_-tKZk6k,31737
|
|
237
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
243
|
+
umap/static/umap/locale/fa_IR.json,sha256=X2tuw3MbZXmIvlbZrsOcbhUNtKqs6A3FWw2kNaahulU,31454
|
|
238
244
|
umap/static/umap/locale/fi.js,sha256=mI8uosJq5dP5PRnP619y9n_DxEMz6GX8vumeX1wMhaE,26143
|
|
239
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
245
|
+
umap/static/umap/locale/fi.json,sha256=fOfdlDIEspEM0g9YDDvNK3ULr-X_7Az0BzOGs8tvjk4,25900
|
|
240
246
|
umap/static/umap/locale/fr.js,sha256=bHl3tqbu4SlgGK3RUgaDZ2XZbDs6etF-K9QjTFQOo_E,27867
|
|
241
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
247
|
+
umap/static/umap/locale/fr.json,sha256=E4Tl_-99a0zA-9-tNjeaXl3jZ8EBFbSaST9c4rcFMH0,27238
|
|
242
248
|
umap/static/umap/locale/gl.js,sha256=ZNlvs7owimN92VIZKkH4kmw7ZJg6HbMBIpgUyboKAlY,26740
|
|
243
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
249
|
+
umap/static/umap/locale/gl.json,sha256=YaS7IIBB8Zrtpqwa4IYt6XqXN3ZBJJes6q4qcCwL7Xk,26477
|
|
244
250
|
umap/static/umap/locale/he.js,sha256=u3L4N4j7J5RtsPfyzwPeYAP2SOnJ8A45uwcf5xelCz4,28978
|
|
245
|
-
umap/static/umap/locale/he.json,sha256=
|
|
251
|
+
umap/static/umap/locale/he.json,sha256=d_sVS9j5jEsel27ALqXaXwDYGCev4eKoR_x3wIUiuTU,28705
|
|
246
252
|
umap/static/umap/locale/hr.js,sha256=jilQQ05T1V7co7oV1lBBwQtqM6LBd12YyOaZllwKT8A,25374
|
|
247
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
253
|
+
umap/static/umap/locale/hr.json,sha256=HobNY7AcW7XbYbKwyqSQfskEUAp_LUzeEZzRuO9Cfnk,25123
|
|
248
254
|
umap/static/umap/locale/hu.js,sha256=m7yVzgOUAkkv_Btj-JHCfjbSynbixG9RhSNDlEtiulI,29219
|
|
249
|
-
umap/static/umap/locale/hu.json,sha256
|
|
255
|
+
umap/static/umap/locale/hu.json,sha256=-HbsptPL3eeKmtZ5aoas5f6eFflQ9rWnhQuXRf-06vA,28495
|
|
250
256
|
umap/static/umap/locale/id.js,sha256=UwzRW3fspX3vZChWNpjPl5HSfsjaDYu_FJsgMkbJUkk,25203
|
|
251
|
-
umap/static/umap/locale/id.json,sha256=
|
|
257
|
+
umap/static/umap/locale/id.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
252
258
|
umap/static/umap/locale/is.js,sha256=7-VEx4F0KKFdzKHJ0B8eoAShgVVsjHFHn0WGw0C84I4,26617
|
|
253
|
-
umap/static/umap/locale/is.json,sha256=
|
|
259
|
+
umap/static/umap/locale/is.json,sha256=f5y3JrUS23A8qT0sHInX1Ww37a3R4U6dMxP20vJu6GE,26366
|
|
254
260
|
umap/static/umap/locale/it.js,sha256=-4mQd1LF8UrZeDG1swHsUI5r54I0aqj_Kk5aReVp1eg,28155
|
|
255
|
-
umap/static/umap/locale/it.json,sha256=
|
|
261
|
+
umap/static/umap/locale/it.json,sha256=Zw8FTpMk4pc_oNfhu6bfFZwsK6Mwcmx8EcdCfBuFNOI,27503
|
|
256
262
|
umap/static/umap/locale/ja.js,sha256=CBsGd76-rbyFvPXI1de-bWDYm5UXYaVRZ6f7bmHjzUE,27965
|
|
257
|
-
umap/static/umap/locale/ja.json,sha256=
|
|
263
|
+
umap/static/umap/locale/ja.json,sha256=EAo1B18lw9bC0SLpv2ZA_KKsFRmKCRbZreTLnHGJuOU,27714
|
|
258
264
|
umap/static/umap/locale/ko.js,sha256=-Yg9efr5w5qkMA1DADUMzJsgwz-3Q5qNZ9IXn96i0lk,25401
|
|
259
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
265
|
+
umap/static/umap/locale/ko.json,sha256=T7NBtIHUYfzfSOfeYhureXdnTg-QKJl35RZT6cSUEzc,25147
|
|
260
266
|
umap/static/umap/locale/lt.js,sha256=XvsY46ZBA4JzLedS23QeKmlD7TFc6lBuPpRKpwVN--E,26089
|
|
261
|
-
umap/static/umap/locale/lt.json,sha256=
|
|
267
|
+
umap/static/umap/locale/lt.json,sha256=XIqRe8me0SFPiq9ReTPBW_eYtG1WcG4kd8TUBIVZ4kk,25840
|
|
262
268
|
umap/static/umap/locale/ms.js,sha256=QgCnrQMnMvwElkR9Kiz9EmW6dLci8wnSvTmanjVYCr0,26887
|
|
263
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
269
|
+
umap/static/umap/locale/ms.json,sha256=OhaTlnDNXZero7HzbeEQJPLZjrIieL372RyR4NuouPw,26234
|
|
264
270
|
umap/static/umap/locale/nl.js,sha256=R-quA21bvjq5eqR1w9u3AoRvHqXFa_tZWJt8KIMuAhk,26569
|
|
265
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
271
|
+
umap/static/umap/locale/nl.json,sha256=wv-sCa0y0SUHJSo6n2Ypd2q_6cNWoRmvPMlqpJ0uc-I,26809
|
|
266
272
|
umap/static/umap/locale/no.js,sha256=-Dg-4LTQgSGrPnfP1bUwQBWZbdoKz4KnEyLu7Yg40-M,25434
|
|
267
|
-
umap/static/umap/locale/no.json,sha256=
|
|
273
|
+
umap/static/umap/locale/no.json,sha256=6cNwOM-QDsrrJfxjNKkx_quFRXovTUW7iR5tMeEXD7U,25174
|
|
268
274
|
umap/static/umap/locale/pl.js,sha256=GowzfcPXHVAmx9vHqVoht9BGTCGpd-8LbjmRcS1UIoQ,26785
|
|
269
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
270
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
275
|
+
umap/static/umap/locale/pl.json,sha256=CrLdiyPO6b1NjzKM244_AWjgNCpiW2QDMnxNYNLF6OA,26536
|
|
276
|
+
umap/static/umap/locale/pl_PL.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
271
277
|
umap/static/umap/locale/pt.js,sha256=V0LaTvnRYj1LZfteaq5Yh0_URQxNghLPjFWl8PLk8CA,26710
|
|
272
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
278
|
+
umap/static/umap/locale/pt.json,sha256=cawNkpM20Lju4ESf02qAMFRF5KKia8VXP8ymrZ0h2EQ,26455
|
|
273
279
|
umap/static/umap/locale/pt_BR.js,sha256=9KoAKP-GT5_WEUP3_nKrQkty9U_Kxp18zXIHCx0mQV4,26704
|
|
274
|
-
umap/static/umap/locale/pt_BR.json,sha256=
|
|
280
|
+
umap/static/umap/locale/pt_BR.json,sha256=NSFmlgcpZM7txD-aJ7j8EmhR6aaPjdAGkhz1VDTHaRo,26443
|
|
275
281
|
umap/static/umap/locale/pt_PT.js,sha256=8g9JZuXVxR-lnTEdxKJgqqQxWkSOtw2x7H-3pnERM4Y,26716
|
|
276
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
282
|
+
umap/static/umap/locale/pt_PT.json,sha256=XO38XfaaEL0LmPC6DlZf0OYa6J_qyly_sx4vDdE6Hns,26455
|
|
277
283
|
umap/static/umap/locale/ro.js,sha256=r1eT8-Ba-_jXbE-ZoIueAscTpv4NyZ9LW5uU3vwNLb8,25240
|
|
278
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
284
|
+
umap/static/umap/locale/ro.json,sha256=UtHbK6tQETxV33H90lr8IosBdFFlq1zDo7IzX7bzEco,24989
|
|
279
285
|
umap/static/umap/locale/ru.js,sha256=2CXoohBqIX7nAvfuNsG3LT0uvrYH605YOBoV-vy1KLM,33059
|
|
280
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
286
|
+
umap/static/umap/locale/ru.json,sha256=lkZBJZ1BSglqKk6eI3yM5Ga17qBU0_6pm-7wYidTzfM,32775
|
|
281
287
|
umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
|
|
282
288
|
umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
|
|
283
289
|
umap/static/umap/locale/sk_SK.js,sha256=zQWat-2j6ojtCS_y41bXJ7c0J7PFHMdl-Z4Wat4U-u4,26577
|
|
284
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
290
|
+
umap/static/umap/locale/sk_SK.json,sha256=6gyuvsBgiFF1VLHTJWd-3N7wpqDjsE3XnMAmEMYxaV8,26313
|
|
285
291
|
umap/static/umap/locale/sl.js,sha256=As0WZpGsGjHicUGTt0bnG43R6hQ--CNA4kLkMFvJ9yE,26442
|
|
286
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
292
|
+
umap/static/umap/locale/sl.json,sha256=hgl0XfwkNUeHoqSQTQZLkgfqaxV28MOArH9e9iMvbRw,26187
|
|
287
293
|
umap/static/umap/locale/sr.js,sha256=lTfRKiPbTy3IwaC81-uyWScJECfw3epapgqqdF-RLiM,29563
|
|
288
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
294
|
+
umap/static/umap/locale/sr.json,sha256=93YkdPc_pxz97WBGMKVBSDnRQBSp9KaMnqgm8x2rPu8,29307
|
|
289
295
|
umap/static/umap/locale/sv.js,sha256=w9MARWmnt4zLVOB22McCy6nRJsePHLKpOFG4mjVVMDo,26382
|
|
290
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
296
|
+
umap/static/umap/locale/sv.json,sha256=SIApcsDCBTreGTen3kfGsWktwxXUXT7kyNNOStLoJu8,26134
|
|
291
297
|
umap/static/umap/locale/th_TH.js,sha256=flGVlWxz0NJNqGr1MBqVX3UJ2c4Q0DF4cw_mv7kKIc0,25209
|
|
292
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
298
|
+
umap/static/umap/locale/th_TH.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
293
299
|
umap/static/umap/locale/tr.js,sha256=v27IF41EAZFxAvAESonyeknkVKQ23iQxzn6B815aYeM,26912
|
|
294
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
300
|
+
umap/static/umap/locale/tr.json,sha256=WMDkxHwEIqhEFdgk_53IpmJjR2aZl5MqRbf6lz0ctZk,26666
|
|
295
301
|
umap/static/umap/locale/uk_UA.js,sha256=kxeSva_IcguADvqpa_CUfPCk0lAVlkZiuO6p3i8DqaU,32683
|
|
296
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
302
|
+
umap/static/umap/locale/uk_UA.json,sha256=ggBlpkD_ASIq3xfWISJex9qX1Q3yNrW37YE0Cd0-F90,32394
|
|
297
303
|
umap/static/umap/locale/vi.js,sha256=fk4osIWPJNpQF5Qr_mlyXyBFtP_451lHEDCfyH-2BrA,25489
|
|
298
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
299
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
304
|
+
umap/static/umap/locale/vi.json,sha256=4SUSXlzt-6bH2NP0WUGtK3J1g6BBM0HLe2kFZE5Jvy8,25244
|
|
305
|
+
umap/static/umap/locale/vi_VN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
300
306
|
umap/static/umap/locale/zh.js,sha256=_PHC2e8UTxzF3EmhaKwowteSLqN0A7xS0nwW1MRh0Gk,24870
|
|
301
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
302
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
303
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
307
|
+
umap/static/umap/locale/zh.json,sha256=x0PfT47wGbRHrGbGOE-KfArLS6IBQ_shYz_UprOq0uE,24629
|
|
308
|
+
umap/static/umap/locale/zh_CN.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
309
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=d4VV9je7iQ8Qz4-gD71uGFHMte4Y26uc8zEeDCvJVcw,24952
|
|
304
310
|
umap/static/umap/locale/zh_TW.js,sha256=ulTuzsMAtFe44WMJEzyhnza0Q0qU00_gEl4xSYEhk-A,25141
|
|
305
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
311
|
+
umap/static/umap/locale/zh_TW.json,sha256=yBJE01xj58EXPwVZXndmH4lJOae6sbiJZoh5-LdUqOc,24580
|
|
306
312
|
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
307
313
|
umap/static/umap/test/Choropleth.js,sha256=3iTkpcmaXhfSQzf3A4wZTKITOVBBkpXEHve0aGObV8U,5266
|
|
308
314
|
umap/static/umap/test/DataLayer.js,sha256=8dOWcOAg1N-Q7ppN9PatFxk43NbdSB1vXAF8CBgSSdM,14224
|
|
309
315
|
umap/static/umap/test/Feature.js,sha256=NIW3FD156wwo6UZHbKf56lQfQ3dG9fHBWGPc1DN_XAE,11766
|
|
310
|
-
umap/static/umap/test/Map.Export.js,sha256=U4xjqVuhmmyjF5KV5zMtTA6DJP8TUYOaye9xliLhQx4,5065
|
|
311
316
|
umap/static/umap/test/Map.js,sha256=7VrgxQ_0uS7kLQe5TsCn7qSDwwDKJ_zYsE7Y_7xwOKc,17448
|
|
312
317
|
umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
|
|
313
318
|
umap/static/umap/test/Permissions.js,sha256=D2zw97L1bqIwZSG30r0NnbS1YLxGiCNQIKWmRuYuSGM,2239
|
|
314
319
|
umap/static/umap/test/Polygon.js,sha256=3g0pdU05ITImNb7PrS6v1ZorwG-pT7AQEbE_82inaEI,12094
|
|
315
320
|
umap/static/umap/test/Polyline.js,sha256=P3NNlyHYv2wvhreSfI7TWawetPMgiBqA3l1iRQf-FJM,13964
|
|
316
321
|
umap/static/umap/test/TableEditor.js,sha256=NXjGGNzVa5A6SQHuY_uhvu1_EqAFEftFp4cODBSJhMo,3192
|
|
317
|
-
umap/static/umap/test/URLs.js,sha256=FKXn6UsVMjeuXnGL2lcfuVQRTFWfMg1JKivHn5T9yoo,1793
|
|
318
322
|
umap/static/umap/test/Util.js,sha256=yhcmnlugm-D7ECvyw_RVdsn7sFdnR1XHnMgNiNCZ-XI,17972
|
|
319
323
|
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
320
|
-
umap/static/umap/test/index.html,sha256=
|
|
324
|
+
umap/static/umap/test/index.html,sha256=24lW8t4Trr1T33bKKmSVivckJ2NxKni4qphlT5BMWCQ,6803
|
|
325
|
+
umap/static/umap/unittests/URLs.js,sha256=IOifAKSNuCTtmEGdfV6lHBkg6CT0LftgxWlXWLa5_1U,1886
|
|
321
326
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
|
|
322
327
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
|
|
323
328
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
|
|
@@ -343,7 +348,7 @@ umap/static/umap/vendors/iconlayers/check.png,sha256=2KEJy_Q7K5Jy_514NoHXWdLk5MS
|
|
|
343
348
|
umap/static/umap/vendors/iconlayers/iconLayers.css,sha256=fUnXSp72SLBi2zm_98OhBipn6jl53eLpMAqU9kVXu3Q,2099
|
|
344
349
|
umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZcKj8gmMWG52irE0yY4xY,11789
|
|
345
350
|
umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
|
|
346
|
-
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=
|
|
351
|
+
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
|
|
347
352
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
|
|
348
353
|
umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=tPonvXioSHRQt1-4ztWR5mz_1KG1X3yHNzVXprP2gLo,450229
|
|
349
354
|
umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
|
|
@@ -375,7 +380,7 @@ umap/static/umap/vendors/minimap/Control.MiniMap.min.js,sha256=Hb_f1FMaLV-Qn6KSY
|
|
|
375
380
|
umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82tFV60mQZAmS57_VnCzXIg,219
|
|
376
381
|
umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
|
|
377
382
|
umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=IsrC1ee9KAdpXktXNKcbrqJvAUjVW2LKsseDl36WsZo,35642
|
|
378
|
-
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=
|
|
383
|
+
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=AAgrsDIbpaugU6-2u6024CRB2cvE1OCNek7N9zAVlgY,14730
|
|
379
384
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=9Q8lBzEmEHECakXADgxLzmJ42oBB8JB257npQWOyitk,23988
|
|
380
385
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=Xcmjnfovskjz0ft9rGff8xr6oozB0wgYE-k5Dyo2Z4U,195620
|
|
381
386
|
umap/static/umap/vendors/togeojson/togeojson.umd.js,sha256=puEtIt0S37jxF-oY0CMD0ULKuAfQ3GKZoAbJbNGN0Y8,13010
|
|
@@ -402,7 +407,7 @@ umap/templates/umap/css.html,sha256=Bp7pnglIp9E8IaABO0uMVPx3-gV6zMRDxI12rygIx50,
|
|
|
402
407
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
408
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
409
|
umap/templates/umap/home.html,sha256=A0tMpiJ8MmLciD7A2SMNoYn5K60MN6PLrRfMahKXh8c,670
|
|
405
|
-
umap/templates/umap/js.html,sha256=
|
|
410
|
+
umap/templates/umap/js.html,sha256=x0AAPBOo1kXt6pePzRmmy8Ugypj8_YImeKRzyPkGH0c,3920
|
|
406
411
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
407
412
|
umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
|
|
408
413
|
umap/templates/umap/map_detail.html,sha256=i7853I2IMBHx6rULPp9e8DgSrBuhU0KTlRuIfif7Pkg,877
|
|
@@ -419,17 +424,17 @@ umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERz
|
|
|
419
424
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
420
425
|
umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
|
|
421
426
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
422
|
-
umap/templatetags/umap_tags.py,sha256=
|
|
427
|
+
umap/templatetags/umap_tags.py,sha256=2eOMT_6lGHRNSarfUpVTXggg6E0SN_rjrJKDCt__gF8,1671
|
|
423
428
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
429
|
umap/tests/base.py,sha256=WcrRnmgcTvx9hHekIJsGyVhFwvyNrgT7PYQ6DPwuAZU,4200
|
|
425
430
|
umap/tests/conftest.py,sha256=hlUPzNq7JakJnT2k5LOp7a8CKhHBWhz3v9EwioPOVUg,1367
|
|
426
|
-
umap/tests/settings.py,sha256=
|
|
431
|
+
umap/tests/settings.py,sha256=qzKYcWzVXUVYxNdv8m7lLV-xkNrV8A8-LWliTJagHOE,716
|
|
427
432
|
umap/tests/test_datalayer.py,sha256=1C2z0VACCime11CMbp9ehbj-knLpW8r6j72EQ_hKLU4,6322
|
|
428
|
-
umap/tests/test_datalayer_views.py,sha256=
|
|
433
|
+
umap/tests/test_datalayer_views.py,sha256=CG0ycp-z3brvsC8bwOjPzeCevue-nS357nHSDGAbyTI,21662
|
|
429
434
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
430
435
|
umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
|
|
431
|
-
umap/tests/test_map_views.py,sha256=
|
|
432
|
-
umap/tests/test_merge_features.py,sha256=
|
|
436
|
+
umap/tests/test_map_views.py,sha256=6EW0jqDepS8y117sfCbDwmhnhu0vHup3GXE57IrkAnI,31350
|
|
437
|
+
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
433
438
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
434
439
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
435
440
|
umap/tests/test_views.py,sha256=7obGfbL_WShBrwShvyp8VrUZEdYejCFIbDJGJthS-xY,14436
|
|
@@ -448,26 +453,27 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
|
|
|
448
453
|
umap/tests/integration/conftest.py,sha256=XuOKbABI1ugTJyPlJzjSK-6L-_vSs3NaQJdYJbyU-6k,607
|
|
449
454
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=dfx4SQ-K7Un98H1fyeSvv4T573VKgh5gP2Oyvk1ZIIQ,8415
|
|
450
455
|
umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
|
|
451
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
452
|
-
umap/tests/integration/test_collaborative_editing.py,sha256=
|
|
456
|
+
umap/tests/integration/test_browser.py,sha256=p1MvBuojYRh2k2sqVPGEiVKHxo5CbG1PE-ZcALc4Et4,14076
|
|
457
|
+
umap/tests/integration/test_collaborative_editing.py,sha256=KsGmfVt4bkTc5uCOibnXIWlxIudn7wUYE_hy9v8Kiik,9493
|
|
453
458
|
umap/tests/integration/test_dashboard.py,sha256=k--MGBZsek4ebjCoHbUyv-XNkPbc55aOwxH6a7WuIL0,1173
|
|
454
459
|
umap/tests/integration/test_drawing.py,sha256=tgtUcvHEwbSbC1Up9OtkVguJYmQKZMxXH3CgZmz8jBQ,8825
|
|
455
460
|
umap/tests/integration/test_edit_datalayer.py,sha256=TouE4gFzUuA3tMLSi5tUpvtz0kpGyHXf_feD4UdKQI4,1621
|
|
456
|
-
umap/tests/integration/test_export_map.py,sha256=
|
|
461
|
+
umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
|
|
457
462
|
umap/tests/integration/test_facets_browser.py,sha256=wRh5h2kQg-ORfHqZKoumeNJ-JSC8CtgNZG7EvJW5SLc,2670
|
|
463
|
+
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
458
464
|
umap/tests/integration/test_import.py,sha256=ufbJl0M5rqGVGmHBZjMhioI9uVETSajevtpnQNJCFOI,2005
|
|
459
465
|
umap/tests/integration/test_map.py,sha256=IY7J47cDhPSylaEh35k9LPx_K8U2Tll_J1JXtyBQPJs,8764
|
|
460
466
|
umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
|
|
461
|
-
umap/tests/integration/test_owned_map.py,sha256=
|
|
467
|
+
umap/tests/integration/test_owned_map.py,sha256=3Ls3vnHgYtHVsUkeWuS71GtuQCD7nA_12hncWSn5n4A,9029
|
|
462
468
|
umap/tests/integration/test_picto.py,sha256=PKZ7R0XQnNzJodNtmx2R7iDqq0xD2ArHRV8eD6o96k0,9348
|
|
463
469
|
umap/tests/integration/test_querystring.py,sha256=zTEs6S01G7t4MYrxmMyZqS7G8LmDoUAjmkhYeSV32h8,2649
|
|
464
470
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
465
471
|
umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
|
|
466
472
|
umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
|
|
467
|
-
umap/tests/integration/test_statics.py,sha256=
|
|
468
|
-
umap/tests/integration/test_tilelayer.py,sha256=
|
|
469
|
-
umap_project-2.0.
|
|
470
|
-
umap_project-2.0.
|
|
471
|
-
umap_project-2.0.
|
|
472
|
-
umap_project-2.0.
|
|
473
|
-
umap_project-2.0.
|
|
473
|
+
umap/tests/integration/test_statics.py,sha256=UqaN2O56yHwn1tEE9I8B1lGnyztDLC0p7_rG6J7vLIs,1494
|
|
474
|
+
umap/tests/integration/test_tilelayer.py,sha256=3Jn1KdOM39DuDkLG-P3heDrsCiYvD6_FEnt0EKGjj5g,4141
|
|
475
|
+
umap_project-2.1.0.dist-info/METADATA,sha256=WjxOBkcnYktf5E_US6kyu9jzuBYh_W3GePuO9i3IM90,2559
|
|
476
|
+
umap_project-2.1.0.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
|
|
477
|
+
umap_project-2.1.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
478
|
+
umap_project-2.1.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
479
|
+
umap_project-2.1.0.dist-info/RECORD,,
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
describe('U.Map.Export', function () {
|
|
2
|
-
let map
|
|
3
|
-
before(async () => {
|
|
4
|
-
await fetchMock.mock(
|
|
5
|
-
/\/datalayer\/62\/\?.*/,
|
|
6
|
-
JSON.stringify(RESPONSES.datalayer62_GET)
|
|
7
|
-
)
|
|
8
|
-
this.options = {
|
|
9
|
-
umap_id: 99,
|
|
10
|
-
}
|
|
11
|
-
map = initMap({ umap_id: 99 })
|
|
12
|
-
const datalayer_options = defaultDatalayerData()
|
|
13
|
-
await map.initDataLayers([datalayer_options])
|
|
14
|
-
})
|
|
15
|
-
after(function () {
|
|
16
|
-
fetchMock.restore()
|
|
17
|
-
clickCancel()
|
|
18
|
-
resetMap()
|
|
19
|
-
})
|
|
20
|
-
|
|
21
|
-
describe('#formatters()', function () {
|
|
22
|
-
it('should export to geojson', function () {
|
|
23
|
-
const { content, filetype, filename } = map.share.format('geojson')
|
|
24
|
-
assert.equal(filetype, 'application/json')
|
|
25
|
-
assert.equal(filename, 'name_of_the_map.geojson')
|
|
26
|
-
assert.deepEqual(JSON.parse(content), {
|
|
27
|
-
type: 'FeatureCollection',
|
|
28
|
-
features: [
|
|
29
|
-
{
|
|
30
|
-
type: 'Feature',
|
|
31
|
-
properties: {
|
|
32
|
-
name: 'name poly',
|
|
33
|
-
},
|
|
34
|
-
geometry: {
|
|
35
|
-
type: 'Polygon',
|
|
36
|
-
coordinates: [
|
|
37
|
-
[
|
|
38
|
-
[11.25, 53.585984],
|
|
39
|
-
[10.151367, 52.975108],
|
|
40
|
-
[12.689209, 52.167194],
|
|
41
|
-
[14.084473, 53.199452],
|
|
42
|
-
[12.634277, 53.618579],
|
|
43
|
-
[11.25, 53.585984],
|
|
44
|
-
[11.25, 53.585984],
|
|
45
|
-
],
|
|
46
|
-
],
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
type: 'Feature',
|
|
51
|
-
properties: {
|
|
52
|
-
_umap_options: {
|
|
53
|
-
color: 'OliveDrab',
|
|
54
|
-
},
|
|
55
|
-
name: 'test',
|
|
56
|
-
},
|
|
57
|
-
geometry: {
|
|
58
|
-
type: 'Point',
|
|
59
|
-
coordinates: [-0.274658, 52.57635],
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
type: 'Feature',
|
|
64
|
-
properties: {
|
|
65
|
-
_umap_options: {
|
|
66
|
-
fill: false,
|
|
67
|
-
opacity: 0.6,
|
|
68
|
-
},
|
|
69
|
-
name: 'test',
|
|
70
|
-
},
|
|
71
|
-
geometry: {
|
|
72
|
-
type: 'LineString',
|
|
73
|
-
coordinates: [
|
|
74
|
-
[-0.571289, 54.476422],
|
|
75
|
-
[0.439453, 54.610255],
|
|
76
|
-
[1.724854, 53.448807],
|
|
77
|
-
[4.163818, 53.988395],
|
|
78
|
-
[5.306396, 53.533778],
|
|
79
|
-
[6.591797, 53.709714],
|
|
80
|
-
[7.042236, 53.350551],
|
|
81
|
-
],
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
|
-
],
|
|
85
|
-
})
|
|
86
|
-
})
|
|
87
|
-
|
|
88
|
-
it('should export to gpx', function () {
|
|
89
|
-
const { content, filetype, filename } = map.share.format('gpx')
|
|
90
|
-
assert.equal(filetype, 'application/gpx+xml')
|
|
91
|
-
assert.equal(filename, 'name_of_the_map.gpx')
|
|
92
|
-
const expected =
|
|
93
|
-
'<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" version="1.1" creator="togpx"><metadata/><wpt lat="52.57635" lon="-0.274658"><name>test</name><desc>name=test</desc></wpt><trk><name>name poly</name><desc>name=name poly</desc><trkseg><trkpt lat="53.585984" lon="11.25"/><trkpt lat="52.975108" lon="10.151367"/><trkpt lat="52.167194" lon="12.689209"/><trkpt lat="53.199452" lon="14.084473"/><trkpt lat="53.618579" lon="12.634277"/><trkpt lat="53.585984" lon="11.25"/><trkpt lat="53.585984" lon="11.25"/></trkseg></trk><trk><name>test</name><desc>name=test</desc><trkseg><trkpt lat="54.476422" lon="-0.571289"/><trkpt lat="54.610255" lon="0.439453"/><trkpt lat="53.448807" lon="1.724854"/><trkpt lat="53.988395" lon="4.163818"/><trkpt lat="53.533778" lon="5.306396"/><trkpt lat="53.709714" lon="6.591797"/><trkpt lat="53.350551" lon="7.042236"/></trkseg></trk></gpx>'
|
|
94
|
-
assert.equal(content, expected)
|
|
95
|
-
})
|
|
96
|
-
|
|
97
|
-
it('should export to kml', function () {
|
|
98
|
-
const { content, filetype, filename } = map.share.format('kml')
|
|
99
|
-
assert.equal(filetype, 'application/vnd.google-earth.kml+xml')
|
|
100
|
-
assert.equal(filename, 'name_of_the_map.kml')
|
|
101
|
-
const expected =
|
|
102
|
-
'<?xml version="1.0" encoding="UTF-8"?><kml xmlns="http://www.opengis.net/kml/2.2"><Document><Placemark><name>name poly</name><ExtendedData><Data name="name"><value>name poly</value></Data></ExtendedData><Polygon><outerBoundaryIs><LinearRing><coordinates>11.25,53.585984 10.151367,52.975108 12.689209,52.167194 14.084473,53.199452 12.634277,53.618579 11.25,53.585984 11.25,53.585984</coordinates></LinearRing></outerBoundaryIs></Polygon></Placemark><Placemark><name>test</name><ExtendedData><Data name="_umap_options"><value>[object Object]</value></Data><Data name="name"><value>test</value></Data></ExtendedData><Point><coordinates>-0.274658,52.57635</coordinates></Point></Placemark><Placemark><name>test</name><ExtendedData><Data name="_umap_options"><value>[object Object]</value></Data><Data name="name"><value>test</value></Data></ExtendedData><LineString><coordinates>-0.571289,54.476422 0.439453,54.610255 1.724854,53.448807 4.163818,53.988395 5.306396,53.533778 6.591797,53.709714 7.042236,53.350551</coordinates></LineString></Placemark></Document></kml>'
|
|
103
|
-
assert.equal(content, expected)
|
|
104
|
-
})
|
|
105
|
-
})
|
|
106
|
-
})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|