umap-project 2.6.0b1__py3-none-any.whl → 2.6.0b2__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.
@@ -57,4 +57,4 @@
57
57
  }
58
58
  .marker-cluster span {
59
59
  line-height: 30px;
60
- }
60
+ }
@@ -24,6 +24,7 @@ DATALAYER_DATA1 = {
24
24
  "mynumber": 10,
25
25
  "myboolean": True,
26
26
  "mydate": "2024/04/14 12:19:17",
27
+ "maybeempty": "not empty",
27
28
  },
28
29
  "geometry": {"type": "Point", "coordinates": [0.065918, 48.385442]},
29
30
  },
@@ -35,6 +36,7 @@ DATALAYER_DATA1 = {
35
36
  "mynumber": 12,
36
37
  "myboolean": False,
37
38
  "mydate": "2024/03/13 12:20:20",
39
+ "maybeempty": "",
38
40
  },
39
41
  "geometry": {"type": "Point", "coordinates": [3.55957, 49.767074]},
40
42
  },
@@ -56,6 +58,7 @@ DATALAYER_DATA2 = {
56
58
  "mynumber": 10,
57
59
  "myboolean": "true",
58
60
  "mydate": "2024/08/18 13:14:15",
61
+ "maybeempty": None,
59
62
  },
60
63
  "geometry": {"type": "Point", "coordinates": [0.856934, 45.290347]},
61
64
  },
@@ -69,6 +72,18 @@ DATALAYER_DATA2 = {
69
72
  },
70
73
  "geometry": {"type": "Point", "coordinates": [4.372559, 47.945786]},
71
74
  },
75
+ {
76
+ "type": "Feature",
77
+ "properties": {
78
+ "mytype": "odd",
79
+ "name": "Point 5",
80
+ "mynumber": 10,
81
+ "mydate": "2024-04-14T10:19:17.000Z",
82
+ "myboolean": "notaboolean",
83
+ "maybeempty": "foo",
84
+ },
85
+ "geometry": {"type": "Point", "coordinates": [4.1, 47.3]},
86
+ },
72
87
  ],
73
88
  "_umap_options": {
74
89
  "name": "Calque 2",
@@ -85,9 +100,9 @@ def test_simple_equal_rule_at_load(live_server, page, map):
85
100
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
86
101
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
87
102
  markers = page.locator(".leaflet-marker-icon .icon_container")
88
- expect(markers).to_have_count(4)
103
+ expect(markers).to_have_count(5)
89
104
  colors = getColors(markers)
90
- assert colors.count("rgb(240, 248, 255)") == 2
105
+ assert colors.count("rgb(240, 248, 255)") == 3
91
106
 
92
107
 
93
108
  def test_simple_not_equal_rule_at_load(live_server, page, map):
@@ -99,9 +114,9 @@ def test_simple_not_equal_rule_at_load(live_server, page, map):
99
114
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
100
115
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
101
116
  markers = page.locator(".leaflet-marker-icon .icon_container")
102
- expect(markers).to_have_count(4)
117
+ expect(markers).to_have_count(5)
103
118
  colors = getColors(markers)
104
- assert colors.count("rgb(240, 248, 255)") == 2
119
+ assert colors.count("rgb(240, 248, 255)") == 3
105
120
 
106
121
 
107
122
  def test_gt_rule_with_number_at_load(live_server, page, map):
@@ -113,7 +128,7 @@ def test_gt_rule_with_number_at_load(live_server, page, map):
113
128
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
114
129
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
115
130
  markers = page.locator(".leaflet-marker-icon .icon_container")
116
- expect(markers).to_have_count(4)
131
+ expect(markers).to_have_count(5)
117
132
  colors = getColors(markers)
118
133
  assert colors.count("rgb(240, 248, 255)") == 2
119
134
 
@@ -127,9 +142,9 @@ def test_lt_rule_with_number_at_load(live_server, page, map):
127
142
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
128
143
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
129
144
  markers = page.locator(".leaflet-marker-icon .icon_container")
130
- expect(markers).to_have_count(4)
145
+ expect(markers).to_have_count(5)
131
146
  colors = getColors(markers)
132
- assert colors.count("rgb(240, 248, 255)") == 3
147
+ assert colors.count("rgb(240, 248, 255)") == 4
133
148
 
134
149
 
135
150
  def test_lt_rule_with_float_at_load(live_server, page, map):
@@ -141,9 +156,9 @@ def test_lt_rule_with_float_at_load(live_server, page, map):
141
156
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
142
157
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
143
158
  markers = page.locator(".leaflet-marker-icon .icon_container")
144
- expect(markers).to_have_count(4)
159
+ expect(markers).to_have_count(5)
145
160
  colors = getColors(markers)
146
- assert colors.count("rgb(240, 248, 255)") == 3
161
+ assert colors.count("rgb(240, 248, 255)") == 4
147
162
 
148
163
 
149
164
  def test_equal_rule_with_boolean_at_load(live_server, page, map):
@@ -155,7 +170,77 @@ def test_equal_rule_with_boolean_at_load(live_server, page, map):
155
170
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
156
171
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
157
172
  markers = page.locator(".leaflet-marker-icon .icon_container")
158
- expect(markers).to_have_count(4)
173
+ expect(markers).to_have_count(5)
174
+ colors = getColors(markers)
175
+ assert colors.count("rgb(240, 248, 255)") == 2
176
+
177
+
178
+ def test_equal_rule_with_boolean_not_true_at_load(live_server, page, map):
179
+ map.settings["properties"]["rules"] = [
180
+ {"condition": "myboolean!=true", "options": {"color": "aliceblue"}}
181
+ ]
182
+ map.save()
183
+ DataLayerFactory(map=map, data=DATALAYER_DATA1)
184
+ DataLayerFactory(map=map, data=DATALAYER_DATA2)
185
+ page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
186
+ markers = page.locator(".leaflet-marker-icon .icon_container")
187
+ expect(markers).to_have_count(5)
188
+ colors = getColors(markers)
189
+ assert colors.count("rgb(240, 248, 255)") == 3
190
+
191
+
192
+ def test_equal_rule_with_boolean_false_at_load(live_server, page, map):
193
+ map.settings["properties"]["rules"] = [
194
+ {"condition": "myboolean=false", "options": {"color": "aliceblue"}}
195
+ ]
196
+ map.save()
197
+ DataLayerFactory(map=map, data=DATALAYER_DATA1)
198
+ DataLayerFactory(map=map, data=DATALAYER_DATA2)
199
+ page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
200
+ markers = page.locator(".leaflet-marker-icon .icon_container")
201
+ expect(markers).to_have_count(5)
202
+ colors = getColors(markers)
203
+ assert colors.count("rgb(240, 248, 255)") == 1
204
+
205
+
206
+ def test_equal_rule_with_boolean_not_false_at_load(live_server, page, map):
207
+ map.settings["properties"]["rules"] = [
208
+ {"condition": "myboolean!=false", "options": {"color": "aliceblue"}}
209
+ ]
210
+ map.save()
211
+ DataLayerFactory(map=map, data=DATALAYER_DATA1)
212
+ DataLayerFactory(map=map, data=DATALAYER_DATA2)
213
+ page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
214
+ markers = page.locator(".leaflet-marker-icon .icon_container")
215
+ expect(markers).to_have_count(5)
216
+ colors = getColors(markers)
217
+ assert colors.count("rgb(240, 248, 255)") == 4
218
+
219
+
220
+ def test_empty_rule_at_load(live_server, page, map):
221
+ map.settings["properties"]["rules"] = [
222
+ {"condition": "maybeempty=", "options": {"color": "aliceblue"}}
223
+ ]
224
+ map.save()
225
+ DataLayerFactory(map=map, data=DATALAYER_DATA1)
226
+ DataLayerFactory(map=map, data=DATALAYER_DATA2)
227
+ page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
228
+ markers = page.locator(".leaflet-marker-icon .icon_container")
229
+ expect(markers).to_have_count(5)
230
+ colors = getColors(markers)
231
+ assert colors.count("rgb(240, 248, 255)") == 3
232
+
233
+
234
+ def test_not_empty_rule_at_load(live_server, page, map):
235
+ map.settings["properties"]["rules"] = [
236
+ {"condition": "maybeempty!=", "options": {"color": "aliceblue"}}
237
+ ]
238
+ map.save()
239
+ DataLayerFactory(map=map, data=DATALAYER_DATA1)
240
+ DataLayerFactory(map=map, data=DATALAYER_DATA2)
241
+ page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
242
+ markers = page.locator(".leaflet-marker-icon .icon_container")
243
+ expect(markers).to_have_count(5)
159
244
  colors = getColors(markers)
160
245
  assert colors.count("rgb(240, 248, 255)") == 2
161
246
 
@@ -165,7 +250,7 @@ def test_can_create_new_rule(live_server, page, openmap):
165
250
  DataLayerFactory(map=openmap, data=DATALAYER_DATA2)
166
251
  page.goto(f"{live_server.url}{openmap.get_absolute_url()}#6/48.948/1.670")
167
252
  markers = page.locator(".leaflet-marker-icon .icon_container")
168
- expect(markers).to_have_count(4)
253
+ expect(markers).to_have_count(5)
169
254
  page.get_by_role("button", name="Edit").click()
170
255
  page.get_by_role("link", name="Map advanced properties").click()
171
256
  page.get_by_text("Conditional style rules").click()
@@ -175,7 +260,7 @@ def test_can_create_new_rule(live_server, page, openmap):
175
260
  page.locator(".umap-field-color .define").first.click()
176
261
  page.get_by_title("AliceBlue").first.click()
177
262
  colors = getColors(markers)
178
- assert colors.count("rgb(240, 248, 255)") == 2
263
+ assert colors.count("rgb(240, 248, 255)") == 3
179
264
 
180
265
 
181
266
  def test_can_deactive_rule_from_list(live_server, page, openmap):
@@ -187,9 +272,9 @@ def test_can_deactive_rule_from_list(live_server, page, openmap):
187
272
  DataLayerFactory(map=openmap, data=DATALAYER_DATA2)
188
273
  page.goto(f"{live_server.url}{openmap.get_absolute_url()}#6/48.948/1.670")
189
274
  markers = page.locator(".leaflet-marker-icon .icon_container")
190
- expect(markers).to_have_count(4)
275
+ expect(markers).to_have_count(5)
191
276
  colors = getColors(markers)
192
- assert colors.count("rgb(240, 248, 255)") == 2
277
+ assert colors.count("rgb(240, 248, 255)") == 3
193
278
  page.get_by_role("button", name="Edit").click()
194
279
  page.get_by_role("link", name="Map advanced properties").click()
195
280
  page.get_by_text("Conditional style rules").click()
@@ -198,7 +283,7 @@ def test_can_deactive_rule_from_list(live_server, page, openmap):
198
283
  assert colors.count("rgb(240, 248, 255)") == 0
199
284
  page.get_by_role("button", name="Show/hide layer").click()
200
285
  colors = getColors(markers)
201
- assert colors.count("rgb(240, 248, 255)") == 2
286
+ assert colors.count("rgb(240, 248, 255)") == 3
202
287
 
203
288
 
204
289
  def test_autocomplete_datalist(live_server, page, openmap):
@@ -209,9 +294,9 @@ def test_autocomplete_datalist(live_server, page, openmap):
209
294
  page.get_by_role("button", name="Add rule").click()
210
295
  panel = page.locator(".panel.right.on")
211
296
  datalist = panel.locator(".umap-field-condition datalist option")
212
- expect(datalist).to_have_count(5)
297
+ expect(datalist).to_have_count(6)
213
298
  values = {option.inner_text() for option in datalist.all()}
214
- assert values == {"myboolean", "mytype", "mynumber", "mydate", "name"}
299
+ assert values == {"myboolean", "mytype", "mynumber", "mydate", "name", "maybeempty"}
215
300
  page.get_by_placeholder("key=value or key!=value").fill("mytype")
216
301
  expect(datalist).to_have_count(4)
217
302
  values = {option.inner_text() for option in datalist.all()}
@@ -464,3 +464,31 @@ def test_can_draw_a_polygon_and_invert_it(live_server, page, tilelayer, settings
464
464
  # Click elsewhere on the map, it should now show the popup
465
465
  map.click(position={"x": 250, "y": 250})
466
466
  expect(popup).to_be_visible()
467
+
468
+
469
+ def test_vertexmarker_not_shown_if_too_many(live_server, map, page, settings):
470
+ geojson = '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.350602,48.438077],[3.349287,48.438082],[3.34921,48.438124],[3.348519,48.438108],[3.34546,48.437416],[3.343752,48.436955],[3.339092,48.435705],[3.333756,48.434278],[3.330224,48.433336],[3.326293,48.43229],[3.323154,48.430374],[3.32129,48.429238],[3.321234,48.429191],[3.321164,48.429221],[3.320893,48.429117],[3.320766,48.42912],[3.320575,48.429213],[3.320289,48.429303],[3.320042,48.429427],[3.319659,48.429542],[3.319215,48.429622],[3.318547,48.429691],[3.317845,48.429671],[3.317751,48.429698],[3.316503,48.430404],[3.316247,48.430481],[3.316101,48.431152],[3.316181,48.431164],[3.315466,48.432852],[3.315229,48.432981],[3.314785,48.433076],[3.314588,48.432699],[3.314474,48.432376],[3.314197,48.431965],[3.313812,48.431626],[3.313264,48.431253],[3.312393,48.430865],[3.311687,48.43069],[3.311471,48.430693],[3.311199,48.430622],[3.310632,48.430628],[3.30879,48.430373],[3.307032,48.430298],[3.306597,48.430211],[3.306301,48.430213],[3.306137,48.430161],[3.305651,48.430165],[3.304839,48.430046],[3.303726,48.429803],[3.302861,48.42972],[3.302237,48.429635],[3.300559,48.429488],[3.300396,48.429435],[3.299502,48.429335],[3.298528,48.429198],[3.298176,48.429201],[3.296263,48.429039],[3.296267,48.429307],[3.296237,48.429425],[3.295882,48.429848],[3.295665,48.429789],[3.295397,48.430056],[3.295377,48.430132],[3.295186,48.430421],[3.295198,48.430531],[3.295344,48.430735],[3.296077,48.431333],[3.295938,48.431617],[3.29576,48.43168],[3.294082,48.431442],[3.292288,48.431198],[3.292303,48.431101],[3.29082,48.431007],[3.29043,48.430975],[3.290451,48.431129],[3.290115,48.431105],[3.289097,48.430993],[3.289185,48.430805],[3.288545,48.430699],[3.288311,48.430684],[3.287686,48.430687],[3.287456,48.431129],[3.287465,48.43122],[3.288277,48.431574],[3.28896,48.431915],[3.288937,48.431969],[3.289431,48.432499],[3.289672,48.43292],[3.289871,48.433156],[3.29036,48.433602],[3.290557,48.433724],[3.290781,48.433809],[3.291035,48.433857],[3.291537,48.434024],[3.291819,48.434151],[3.292118,48.434341],[3.292479,48.434677],[3.292929,48.435388],[3.293207,48.435792],[3.293881,48.43672],[3.293762,48.436772],[3.294056,48.437209],[3.294117,48.437385],[3.294618,48.437579],[3.294465,48.437764],[3.294424,48.438087],[3.294357,48.438293],[3.293776,48.438817],[3.293308,48.439323],[3.292929,48.439844],[3.292671,48.440235],[3.29233,48.440924],[3.291807,48.441432],[3.29161,48.441661],[3.291402,48.44196],[3.291265,48.442663],[3.291255,48.442806],[3.291328,48.443126],[3.291407,48.443202],[3.291574,48.443473],[3.292253,48.444495],[3.292329,48.444596],[3.293056,48.445276],[3.293138,48.445309],[3.293368,48.445628],[3.293661,48.445985],[3.29374,48.446117],[3.29396,48.446372],[3.294304,48.446627],[3.294761,48.446912],[3.295881,48.447668],[3.295849,48.447688],[3.296837,48.448338],[3.297547,48.44891],[3.297465,48.44892],[3.297188,48.449195],[3.297597,48.449543],[3.297753,48.449701],[3.297845,48.449851],[3.298264,48.450055],[3.298478,48.450121],[3.298946,48.450221],[3.299309,48.450317],[3.299359,48.450237],[3.300493,48.450461],[3.301087,48.450674],[3.301703,48.45101],[3.301995,48.451197],[3.3024,48.451534],[3.302702,48.45174],[3.303329,48.452007],[3.304029,48.452197],[3.304569,48.452446],[3.304803,48.452502],[3.305096,48.452877],[3.30567,48.453409],[3.305998,48.453617],[3.306329,48.453567],[3.306999,48.453359],[3.307147,48.453453],[3.307452,48.453162],[3.307621,48.452853],[3.307637,48.452428],[3.307707,48.452345],[3.307741,48.452152],[3.307605,48.451823],[3.307551,48.45153],[3.307474,48.451395],[3.307218,48.451316],[3.307069,48.45119],[3.307261,48.450528],[3.307483,48.449868],[3.307603,48.449365],[3.30774,48.448909],[3.307598,48.448808],[3.307761,48.448604],[3.307863,48.447956],[3.307886,48.447645],[3.307972,48.447245],[3.308239,48.446362],[3.308306,48.446042],[3.308487,48.445329],[3.308442,48.444844],[3.308479,48.444713],[3.308967,48.443542],[3.309235,48.442927],[3.309464,48.442289],[3.309372,48.442046],[3.309621,48.441616],[3.310152,48.441065],[3.310213,48.440729],[3.310237,48.440329],[3.310167,48.439906],[3.31076,48.439111],[3.31118,48.438009],[3.311161,48.437961],[3.311906,48.437902],[3.312261,48.437839],[3.312486,48.437744],[3.31306,48.437674],[3.312613,48.438361],[3.312487,48.43883],[3.312493,48.439136],[3.312443,48.439388],[3.312598,48.440393],[3.312739,48.440752],[3.312879,48.440985],[3.313263,48.441305],[3.313916,48.441515],[3.314457,48.441565],[3.315105,48.44156],[3.31581,48.441607],[3.317056,48.441849],[3.318361,48.442198],[3.319041,48.442408],[3.319287,48.442604],[3.319343,48.442711],[3.320216,48.443117],[3.320709,48.443437],[3.32126,48.444007],[3.321788,48.444776],[3.322181,48.445618],[3.322479,48.445616],[3.32283,48.445577],[3.323344,48.445663],[3.324048,48.445693],[3.324695,48.445562],[3.324992,48.445559],[3.325558,48.445482],[3.325963,48.445479],[3.327479,48.445592],[3.327939,48.445678],[3.328502,48.445481],[3.328942,48.445392],[3.329169,48.44538],[3.330112,48.445466],[3.330715,48.445575],[3.330881,48.44557],[3.332155,48.445373],[3.33243,48.445375],[3.332727,48.445438],[3.3332,48.445588],[3.333358,48.445683],[3.333737,48.446027],[3.333998,48.446169],[3.334135,48.446334],[3.334611,48.447294],[3.33488,48.447909],[3.334992,48.447959],[3.335297,48.448013],[3.336516,48.448161],[3.336874,48.44825],[3.337258,48.448531],[3.337442,48.448737],[3.337525,48.448936],[3.337649,48.448967],[3.338263,48.448902],[3.33836,48.44894],[3.338765,48.44921],[3.339281,48.449513],[3.339464,48.449515],[3.339877,48.448856],[3.339867,48.448673],[3.340611,48.447311],[3.341744,48.447535],[3.343846,48.447943],[3.345266,48.448152],[3.345478,48.447345],[3.345816,48.446774],[3.345976,48.446809],[3.346142,48.44657],[3.346,48.446493],[3.346043,48.446099],[3.346047,48.445835],[3.346203,48.44558],[3.34717,48.444977],[3.347471,48.444638],[3.347571,48.444466],[3.347583,48.444183],[3.347678,48.443989],[3.348162,48.443428],[3.348326,48.443259],[3.348351,48.443136],[3.34831,48.442736],[3.348141,48.442484],[3.348246,48.442411],[3.348271,48.442293],[3.348097,48.442202],[3.347875,48.442142],[3.347773,48.441997],[3.34751,48.441531],[3.347394,48.441212],[3.349317,48.441364],[3.349478,48.441055],[3.349528,48.44103],[3.350119,48.441039],[3.350252,48.440793],[3.35052,48.440779],[3.350618,48.440612],[3.35069,48.440129],[3.350806,48.43921],[3.350792,48.439037],[3.350698,48.438594],[3.350566,48.438327],[3.350602,48.438077]]]},"properties":{"nom":"Grisy-sur-Seine","code":"77218","codeDepartement":"77","siren":"217702182","codeEpci":"200040251","codeRegion":"11","codesPostaux":["77480"],"population":107},"id":"g0OTg"}'
471
+ settings.UMAP_ALLOW_ANONYMOUS = True
472
+ page.goto(f"{live_server.url}/en/map/new/#15/48.4395/3.3189")
473
+ page.get_by_title("Import data").click()
474
+ page.locator(".umap-upload textarea").fill(geojson)
475
+ page.locator('select[name="format"]').select_option("geojson")
476
+ page.get_by_role("button", name="Import data", exact=True).click()
477
+ page.locator("path").click()
478
+ page.get_by_role("link", name="Toggle edit mode (⇧+Click)").click()
479
+ expect(page.locator("#umap-tooltip-container")).to_contain_text(
480
+ "Please zoom in to edit the geometry"
481
+ )
482
+ expect(page.locator(".leaflet-vertex-icon")).to_be_hidden()
483
+ page.get_by_label("Zoom in").click()
484
+ expect(page.locator("#umap-tooltip-container")).to_contain_text(
485
+ "Please zoom in to edit the geometry"
486
+ )
487
+ page.get_by_label("Zoom in").click()
488
+ page.wait_for_timeout(500)
489
+ page.get_by_label("Zoom out").click()
490
+ page.wait_for_timeout(500)
491
+ expect(page.locator(".leaflet-vertex-icon")).to_be_hidden()
492
+ expect(page.locator("#umap-tooltip-container")).to_contain_text(
493
+ "Please zoom in to edit the geometry"
494
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: umap-project
3
- Version: 2.6.0b1
3
+ Version: 2.6.0b2
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>
@@ -1,4 +1,4 @@
1
- umap/__init__.py,sha256=miZ8KX0c67S-CS0ZiOuDOt2CSN-1l7WFb1HZNR80aas,20
1
+ umap/__init__.py,sha256=iw8_56v34cOA8cil0skIng0HnLHzqqzo3IiTem7TSvc,20
2
2
  umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
@@ -56,8 +56,8 @@ umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMj
56
56
  umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
57
57
  umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
58
58
  umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
59
- umap/locale/hu/LC_MESSAGES/django.mo,sha256=FmVwvGCztvJihfYeW7JNGcvZhD6MmZcjMn-4-H7QpSE,11739
60
- umap/locale/hu/LC_MESSAGES/django.po,sha256=AD4fgnvcHCv-CnEUXYqhQ7O_A-PLRkOCz_Cb_IVUkN4,18313
59
+ umap/locale/hu/LC_MESSAGES/django.mo,sha256=VJ2x41SiwPthLvefxlzOuSveaOPQA8Ieia8ZeMzgaac,12697
60
+ umap/locale/hu/LC_MESSAGES/django.po,sha256=iMf7G_L9-4qUmGuV8v2BoXBK3X9D9l0eREuzzqHVEmg,18656
61
61
  umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
62
62
  umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
63
63
  umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
@@ -149,12 +149,12 @@ umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr
149
149
  umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
150
150
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
151
151
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
152
- umap/static/umap/map.css,sha256=azg2_8XGl8Z6BbK5E1EHY3-9SjyZvLrXlZCHf-ePCb4,36954
152
+ umap/static/umap/map.css,sha256=v5LjwLgUowtzSXQkGdpwSBxfyOWATY57UAgGyMIPQ_8,36963
153
153
  umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
154
154
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
155
155
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
156
156
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
157
- umap/static/umap/vars.css,sha256=A2moP0RPPmiej7Q4nJT2a_zmXFxI2BoB390lvtysX3o,1724
157
+ umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
158
158
  umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
159
159
  umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
160
160
  umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
@@ -232,14 +232,14 @@ umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAj
232
232
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
233
233
  umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
234
234
  umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
235
- umap/static/umap/js/modules/rules.js,sha256=fREXFveMjw3pqv8nExLELkT-t0K_h2H6PekNM6dY64A,7076
235
+ umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
236
236
  umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
237
237
  umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
238
238
  umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
239
239
  umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
240
240
  umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
241
241
  umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
242
- umap/static/umap/js/modules/data/features.js,sha256=Els1pl_VGfBCCNO5NxNXMDArJr-zbKIjemJr_lsXgik,25968
242
+ umap/static/umap/js/modules/data/features.js,sha256=49THaqEI-FYPq9UK-g_ziN4yP2y0ZgZTBiYLFHIBlQI,26010
243
243
  umap/static/umap/js/modules/data/layer.js,sha256=c-lEbIfYd23IGSWyD-iYKuDwYsz60dzyX1xXSDp15-c,33188
244
244
  umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
245
245
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
@@ -248,7 +248,7 @@ umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeF
248
248
  umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
249
249
  umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
250
250
  umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
251
- umap/static/umap/js/modules/rendering/ui.js,sha256=AZCqElEDBKzObeBp0AHp-1JIxZPQEWwjGKuEA1mea40,16794
251
+ umap/static/umap/js/modules/rendering/ui.js,sha256=2mRmfBO1gBlFzdh9VaQCupP4wj11YJFu-4hgMzHkvJo,17470
252
252
  umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
253
253
  umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
254
254
  umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
@@ -281,8 +281,8 @@ umap/static/umap/locale/de.js,sha256=5A_n__cFkmTqCVrGEb3BCe4WpQvjqZT2W3ic4CiC7rM
281
281
  umap/static/umap/locale/de.json,sha256=6GbeG2QNgD1Cbjn_t0jEKLh2Q5Pdjtr5EqHIONAfd0g,31918
282
282
  umap/static/umap/locale/el.js,sha256=Uk9d4jo97ggH2grc-VCsUKyk9JFGDwsvC_Ek1pNF98s,40724
283
283
  umap/static/umap/locale/el.json,sha256=oOyM-fcLRGuB-2xsJaNVbBaM_2G5_wxb-GMDfVzv9Ds,40659
284
- umap/static/umap/locale/en.js,sha256=bVSXbhHrZqza3xebV-9wygFEcX2qYw6oal9apLQWn3E,29271
285
- umap/static/umap/locale/en.json,sha256=ozf95Vj9W0KY7oVrhn-9UEaSfLhMbf4epxLo3ONo3kk,29206
284
+ umap/static/umap/locale/en.js,sha256=LhKU66xn0N3PSmQvKqlkLfeJLE-BAS-R-LQ2bCBWm9E,29395
285
+ umap/static/umap/locale/en.json,sha256=rrUpQFKkazodyknBNJOAplmo7wieDZ9Y_Kj73oAqr8M,29330
286
286
  umap/static/umap/locale/en_US.json,sha256=dZssHREakThYdUHIKIWWqX3CM9wjS4LrMvMB9-rZBGw,28993
287
287
  umap/static/umap/locale/es.js,sha256=mC8vLIXS026NP7HjIOShBlPZKGtfgKH7p_4GmNgCpa0,31571
288
288
  umap/static/umap/locale/es.json,sha256=dAH6Yo6iWVSmO5roUs9qH4ANjw6IwnCMQwYyuAefuGM,31506
@@ -294,16 +294,16 @@ umap/static/umap/locale/fa_IR.js,sha256=tdSTeOKlBOpwHiMVsRom1Wio3cnOHotkYn_Oot_U
294
294
  umap/static/umap/locale/fa_IR.json,sha256=1InhRKruKSo7V0bfXB0DVnJEl6Kv5pSua6tvA8vteWA,37799
295
295
  umap/static/umap/locale/fi.js,sha256=XUIrgmxg9KjmpDwFKRULr-EmyjjTBhWWA_ylX_nSjvw,30137
296
296
  umap/static/umap/locale/fi.json,sha256=3suDckLIR0BpLA15zLXPAXEY-DnVlbA-YEfeWqx3zfA,30072
297
- umap/static/umap/locale/fr.js,sha256=-jM5bGD1QT2ia6ycliiDm65o4Y5x5LRNYFwAUpgjJfY,32044
298
- umap/static/umap/locale/fr.json,sha256=NqaFYHf5JXsRK7lGUGUYO3YU253I7Lll_bqLzbPYSvc,31979
297
+ umap/static/umap/locale/fr.js,sha256=qbhzRxExAYPoRSaOcqcMWNbuhoSgrhJxreQlOXhP1a8,32169
298
+ umap/static/umap/locale/fr.json,sha256=Hz2eHjWvuCOGSYkjQgVy5fTjJGKajnBtJr1oswvJjTY,32104
299
299
  umap/static/umap/locale/gl.js,sha256=A7QDaq4ZBnOXIr6tqfWB7VDSo5UsV70L2HVhiqZXOOI,30692
300
300
  umap/static/umap/locale/gl.json,sha256=poqyCH2UFxVAOWepLODcjN3Xtyy3oancGy5c-ch0ocw,30627
301
301
  umap/static/umap/locale/he.js,sha256=IQovP2AjKgrah84sWxs9nH7AD3a-w4oNr1WJKDpgjV8,32719
302
302
  umap/static/umap/locale/he.json,sha256=F9r726IxWWigKrHajmQyc8Sdyn9Lcj7vIsMAEsPLLw8,32654
303
303
  umap/static/umap/locale/hr.js,sha256=QrWfkgZ17dCCBn1fLys07TygfMRWAS2YlhWeJQRsskE,29440
304
304
  umap/static/umap/locale/hr.json,sha256=VaHPBeo8GrkyxwyHCpadhRWnPyYktbMzil7lUkCxx-M,29375
305
- umap/static/umap/locale/hu.js,sha256=XjDbvb18TXDNC6mQY52AYHvLg5JGUz4Qfahq_UhuYB4,33474
306
- umap/static/umap/locale/hu.json,sha256=LM7sVsccTa05EmamcKvQNLveu8-ruyPRr0qHrv2ViFM,33409
305
+ umap/static/umap/locale/hu.js,sha256=DSxi72AK8rEcwLmNJymhAtg8jE8JeXry432ilecnlu0,33684
306
+ umap/static/umap/locale/hu.json,sha256=EoCsm1GE9SPCPVaE2ztcxlwPj6oMtudLL1iyZMd9jYk,33619
307
307
  umap/static/umap/locale/id.js,sha256=jx04Ng_EzPT3Av7mbVRQvmK1izSat2ucsTnYFj98u8U,29269
308
308
  umap/static/umap/locale/id.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
309
309
  umap/static/umap/locale/is.js,sha256=SH5yWYn72yTZnbJkJbwSIEl8P6Kadyk7UJ0xqUIBoz8,30601
@@ -379,7 +379,7 @@ umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt
379
379
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
380
380
  umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
381
381
  umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
382
- umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
382
+ umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
383
383
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
384
384
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
385
385
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
@@ -413,7 +413,7 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftU
413
413
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
414
414
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJMoykxLOdGxOUzGJDlmr8MM6sFF--b1_sI,12701
415
415
  umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
416
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=pZS52JI0ds7GG1j68xyykQLcMP_Yatd-Wj9FITpzcm0,1288
416
+ umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
417
417
  umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
418
418
  umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
419
419
  umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
@@ -515,10 +515,10 @@ umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz
515
515
  umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
516
516
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
517
517
  umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
518
- umap/tests/integration/test_conditional_rules.py,sha256=ZDhp93tzJ7y9kXYPMY-5fI-Tp0dFZ4OTKBX8JHkqU4A,8490
518
+ umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
519
519
  umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
520
520
  umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
521
- umap/tests/integration/test_draw_polygon.py,sha256=_JRJzzDVINl5vzTZT1mGygjVR4xieRl1Rvj6l39p5so,17481
521
+ umap/tests/integration/test_draw_polygon.py,sha256=s_a1j2Ye3jq09VmALZM0k1j2wYgoSjtjtlwpc8Eh_Sg,25311
522
522
  umap/tests/integration/test_draw_polyline.py,sha256=NxoY-Sf56Kyu-AuX-1sO9xCuS5InK9NdEuUZ2EMklTg,12453
523
523
  umap/tests/integration/test_edit_datalayer.py,sha256=gg55b6xwWo__-DC4at7YT4NcaFnxn47GPhlrd86NZ9s,9505
524
524
  umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
@@ -545,8 +545,8 @@ umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPX
545
545
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
546
546
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
547
547
  umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
548
- umap_project-2.6.0b1.dist-info/METADATA,sha256=pG1AcffbRYQWrlWs_n_ALBC3aELucw3s4_PqdNOMKaA,2679
549
- umap_project-2.6.0b1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
550
- umap_project-2.6.0b1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
551
- umap_project-2.6.0b1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
552
- umap_project-2.6.0b1.dist-info/RECORD,,
548
+ umap_project-2.6.0b2.dist-info/METADATA,sha256=-VTYCkc0BWt6p3N8AWNRrslWOqlUzSOYNVJy2gRv2zA,2679
549
+ umap_project-2.6.0b2.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
550
+ umap_project-2.6.0b2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
551
+ umap_project-2.6.0b2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
552
+ umap_project-2.6.0b2.dist-info/RECORD,,