umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,1843 @@
1
+ /* *********** */
2
+ /* Map details */
3
+ /* *********** */
4
+ #map {
5
+ height: 100%;
6
+ width: 100%;
7
+ position: absolute;
8
+ top: 0;
9
+ bottom: 0;
10
+ left: 0;
11
+ right: 0;
12
+ }
13
+
14
+
15
+ /* *********** */
16
+ /* Controls */
17
+ /* *********** */
18
+
19
+ .leaflet-control-zoom,
20
+ .umap-control {
21
+ background: none no-repeat scroll center center #fff;
22
+ border-radius: 4px;
23
+ border: 1px solid #bbb;
24
+ }
25
+ .umap-control a:hover {
26
+ background-color: #f4f4f4;
27
+ }
28
+ .leaflet-control-fullscreen a:hover,
29
+ .leaflet-control-fullscreen a {
30
+ height: 36px;
31
+ width: 36px;
32
+ background-size: 36px 68px;
33
+ }
34
+ .leaflet-touch .leaflet-control-fullscreen a {
35
+ height: 36px;
36
+ width: 36px;
37
+ background-position: 0px 0px;
38
+ }
39
+ .leaflet-touch.leaflet-fullscreen-on .leaflet-control-fullscreen a,
40
+ .leaflet-fullscreen-on .leaflet-control-fullscreen a {
41
+ background-position: 0 -32px;
42
+ }
43
+ .leaflet-measure-control a,
44
+ .leaflet-control-locate a,
45
+ .umap-control a,
46
+ .umap-control [type="button"] {
47
+ background-position: 50% 50%;
48
+ background-repeat: no-repeat;
49
+ display: block;
50
+ height: 36px;
51
+ width: 36px;
52
+ line-height: 36px;
53
+ background-image: url('./img/24.svg');
54
+ text-indent: -9999px;
55
+ margin-bottom: 0;
56
+ }
57
+ .leaflet-control.display-on-more,
58
+ .umap-control-less {
59
+ display: none;
60
+ }
61
+ .umap-control-more,
62
+ .umap-control-less {
63
+ background-image: url('./img/24-white.svg');
64
+ background-position: -72px -474px;
65
+ text-indent: -9999px;
66
+ margin-bottom: 0;
67
+ }
68
+ .umap-control-less {
69
+ background-position: -108px -476px;
70
+ }
71
+ .umap-more-controls .display-on-more,
72
+ .umap-more-controls .umap-control-less {
73
+ display: block;
74
+ }
75
+ .umap-more-controls .umap-control-more {
76
+ display: none;
77
+ }
78
+ .leaflet-control-embed [type="button"] {
79
+ background-position: -72px -108px;
80
+ }
81
+ .leaflet-control-tilelayers [type="button"] {
82
+ background-position: -72px 0;
83
+ }
84
+ .leaflet-control-home [type="button"] {
85
+ background-position: -122px -82px;
86
+ }
87
+ .leaflet-control-locate a {
88
+ background-position: 0 -108px;
89
+ }
90
+ .leaflet-control-locate.active a,
91
+ .leaflet-control-locate.requesting a
92
+ {
93
+ background-position: -72px -144px;
94
+ box-shadow: 0 0 4px 0 black inset;
95
+ }
96
+ .leaflet-control-star [type="button"] {
97
+ background-position: -108px -144px;
98
+ }
99
+ .leaflet-control-star.starred [type="button"] {
100
+ background-position: -144px -144px;
101
+ }
102
+ .leaflet-control-search [type="button"] {
103
+ background-position: -36px -108px;
104
+ display: block;
105
+ }
106
+ .leaflet-control-search [type="button"].loading {
107
+ background-image: url('./img/search.gif');
108
+ }
109
+ .umap-control-text {
110
+ border: 1px solid #666;
111
+ border-radius: 2px;
112
+ background-color: #666;
113
+ color: #f8f8f8;
114
+ text-align: center;
115
+ font-size: 0.8em;
116
+ }
117
+ .umap-control-text [type="button"] {
118
+ float: right;
119
+ background-color: #666;
120
+ margin: 0;
121
+ width: 36px;
122
+ min-height: 23px;
123
+ height: 23px;
124
+ }
125
+ .leaflet-control-edit-enable [type="button"]:before {
126
+ content: ' ';
127
+ width: 24px;
128
+ height: 24px;
129
+ display: inline-block;
130
+ vertical-align: middle;
131
+ background-image: url('./img/16-white.svg');
132
+ background-position: -52px -49px;
133
+ }
134
+
135
+ .leaflet-control-edit-enable [type="button"] {
136
+ width: initial;
137
+ padding: 0 20px;
138
+ background-color: #353c3e;
139
+ color: #fff;
140
+ background-image: none;
141
+ border-radius: 20px;
142
+ height: 36px;
143
+ line-height: 36px;
144
+ display: block;
145
+ }
146
+ .leaflet-control-toolbar .leaflet-toolbar-icon.dark:hover,
147
+ .leaflet-control-edit-enable [type="button"]:hover {
148
+ background-color: #4d5759;
149
+ }
150
+ .umap-permanent-credits-container {
151
+ max-width: 20rem;
152
+ margin-left: 5px!important;
153
+ margin-bottom: 5px!important;
154
+ padding: 0.5rem;
155
+ }
156
+ .attribution-toggle {
157
+ display: none;
158
+ width: 24px;
159
+ height: 24px;
160
+ vertical-align: middle;
161
+ background-image: url('./img/16.svg');
162
+ background-position: 0px 0px;
163
+ }
164
+ .leaflet-iconLayers-layer {
165
+ width: 38px;
166
+ height: 38px;
167
+ box-shadow: 0px 0px 2px #444;
168
+ border: 1px solid #bbb;
169
+ border-radius: 4px;
170
+ }
171
+ .leaflet-iconLayers-layerTitleContainer {
172
+ display: none;
173
+ left: 0;
174
+ overflow: hidden;
175
+ min-height: 1.5rem;
176
+ height: 1.5rem;
177
+ }
178
+ .leaflet-iconLayers-layerTitle {
179
+ text-align: center;
180
+ display: inline-block;
181
+ }
182
+ .leaflet-iconLayers:hover .leaflet-iconLayers-layer {
183
+ width: 80px;
184
+ height: 80px;
185
+ }
186
+ .leaflet-iconLayers:hover .leaflet-iconLayers-layerTitleContainer {
187
+ display: initial;
188
+ }
189
+ .leaflet-iconLayers-layerCell:hover .leaflet-iconLayers-layerTitleContainer {
190
+ height: initial;
191
+ }
192
+
193
+
194
+
195
+
196
+ /* ***************** */
197
+ /* Search panel */
198
+ /* ***************** */
199
+ ul.photon-autocomplete {
200
+ position: absolute;
201
+ background-color: white;
202
+ z-index: 1000;
203
+ display: none;
204
+ }
205
+ .photon-autocomplete li {
206
+ min-height: 40px;
207
+ line-height: 1em;
208
+ padding: 5px 10px;
209
+ overflow: hidden;
210
+ white-space: nowrap;
211
+ font-size: 1em;
212
+ border-left: 4px solid #efefef;
213
+ }
214
+ .photon-autocomplete li strong {
215
+ display: block;
216
+ }
217
+ .photon-autocomplete li.on {
218
+ border-left: 4px solid #2980b9;
219
+ cursor: pointer;
220
+ }
221
+ .photon-autocomplete li.photon-no-result {
222
+ text-align: center;
223
+ color: #666;
224
+ font-size: 0.9em;
225
+ line-height: 40px;
226
+ }
227
+ .photon-autocomplete .photon-feedback {
228
+ display: block;
229
+ text-align: right;
230
+ font-size: 0.8em;
231
+ padding: 3px;
232
+ color: #999;
233
+ border-top: 1px solid #eee;
234
+ }
235
+ .search-result-tools {
236
+ float: right;
237
+ display: block;
238
+ }
239
+
240
+
241
+
242
+ /* ***************************** */
243
+ /* Share and download panel */
244
+ /* ***************************** */
245
+ .download-file {
246
+ height: 1.2em;
247
+ min-height: 1.2em;
248
+ padding: 0;
249
+ text-align: left;
250
+ vertical-align: bottom;
251
+ }
252
+ .download-file:before,
253
+ .download-backup:before {
254
+ height: 24px;
255
+ width: 24px;
256
+ background-repeat: no-repeat;
257
+ background-image: url('./img/16.svg');
258
+ background-size: auto auto;
259
+ background-position: -4px -145px;
260
+ content: " ";
261
+ vertical-align: bottom;
262
+ display: inline-block;
263
+ }
264
+ .download-backup:before {
265
+ background-position: -27px -144px;
266
+ }
267
+ .leaflet-container .download-backup {
268
+ color: black;
269
+ display: block;
270
+ }
271
+ .vspace {
272
+ height: 32px;
273
+ }
274
+
275
+ /* *********** */
276
+ /* Draw */
277
+ /* *********** */
278
+ .leaflet-drawing-icon,
279
+ .leaflet-editable-drawing {
280
+ cursor: crosshair;
281
+ }
282
+ .leaflet-control-toolbar > li > .leaflet-toolbar-icon,
283
+ .umap-toolbar a,
284
+ .umap-toolbar a:hover {
285
+ height: 40px;
286
+ width: 40px;
287
+ display: none;
288
+ margin-top: 0;
289
+ vertical-align: top;
290
+ border-bottom: none;
291
+ background-color: #323737;
292
+ border-right: 1px solid #eee;
293
+ background-repeat: no-repeat;
294
+ background-image: url('./img/24.svg');
295
+ background-size: auto auto;
296
+ }
297
+ .leaflet-control-toolbar li .leaflet-toolbar-icon.dark {
298
+ background-image: url('./img/24-white.svg');
299
+ }
300
+ .umap-toolbar {
301
+ margin-top: 0;
302
+ }
303
+ .update-map-extent,
304
+ .leaflet-container .umap-toolbar .update-map-extent {
305
+ background-position: 0 -36px;
306
+ }
307
+ .umap-toolbar .update-map-tilelayers,
308
+ .update-map-tilelayers {
309
+ background-position: -72px 0;
310
+ }
311
+ .manage-datalayers {
312
+ background-position: -36px -72px;
313
+ }
314
+ .permissions-panel h3:before,
315
+ .umap-browse-datalayers h3:before,
316
+ .umap-edit-container h3:before,
317
+ .umap-feature-properties:before,
318
+ .umap-layer-properties-container h3:before,
319
+ .umap-search h3:before,
320
+ .umap-share h3:before,
321
+ .umap-tilelayer-switcher-container h3:before,
322
+ .umap-upload h3:before {
323
+ height: 24px;
324
+ width: 24px;
325
+ background-repeat: no-repeat;
326
+ background-image: url('./img/16-white.svg');
327
+ background-size: auto auto;
328
+ background-position: -98px -117px;
329
+ content: " ";
330
+ vertical-align: bottom;
331
+ display: inline-block;
332
+ }
333
+ .umap-edit-container h3:before {
334
+ background-position: -27px -93px;
335
+ }
336
+ .permissions-panel h3:before {
337
+ background-position: -144px -117px;
338
+ }
339
+ .umap-upload h3:before {
340
+ background-position: -144px -93px;
341
+ }
342
+ .umap-search h3:before {
343
+ background-image: url('./img/16.svg');
344
+ background-position: -27px -117px;
345
+ }
346
+ .umap-share h3:before {
347
+ background-image: url('./img/16.svg');
348
+ background-position: -4px -119px;
349
+ }
350
+ .dark .umap-tilelayer-switcher-container h3:before {
351
+ background-image: url('./img/16-white.svg');
352
+ background-position: -98px -141px;
353
+ }
354
+ .umap-tilelayer-switcher-container h3:before {
355
+ background-image: url('./img/16.svg');
356
+ background-position: -98px -141px;
357
+ }
358
+ .umap-feature-properties.marker:before {
359
+ background-position: -72px -117px;
360
+ }
361
+ .umap-feature-properties.polyline:before {
362
+ background-position: 0 -117px;
363
+ }
364
+ .umap-feature-properties.polygon:before {
365
+ background-position: -24px -117px;
366
+ }
367
+ .umap-toolbar .update-map-permissions,
368
+ .update-map-permissions {
369
+ background-position: -36px -36px;
370
+ }
371
+ .umap-toolbar .upload-data,
372
+ .upload-data {
373
+ background-position: -144px 0;
374
+ }
375
+ .umap-toolbar .update-map-settings,
376
+ .update-map-settings {
377
+ background-position: -108px 0;
378
+ }
379
+ .umap-draw-marker,
380
+ .umap-toolbar .umap-draw-marker {
381
+ background-position: -144px -36px;
382
+ }
383
+ .umap-draw-polyline,
384
+ .umap-toolbar .umap-draw-polyline {
385
+ background-position: -108px -36px;
386
+ }
387
+ .umap-draw-polyline-multi,
388
+ .umap-toolbar .umap-draw-polyline-multi {
389
+ background-position: -36px -106px;
390
+ }
391
+ .umap-draw-polygon,
392
+ .umap-toolbar .umap-draw-polygon {
393
+ background-position: -72px -36px;
394
+ }
395
+ .umap-draw-polygon-multi,
396
+ .umap-toolbar .umap-draw-polygon-multi {
397
+ background-position: 0 -108px;
398
+ }
399
+ .umap-edit-enabled .leaflet-control-toolbar > li > .leaflet-toolbar-icon,
400
+ .umap-edit-enabled .umap-toolbar a {
401
+ display: block;
402
+ }
403
+
404
+
405
+ /* ********************************* */
406
+ /* Third party plugin override */
407
+ /* ********************************* */
408
+
409
+ .leaflet-control-edit-in-osm .leaflet-control-edit-in-osm-toggle {
410
+ background-image: url('img/24.svg');
411
+ background-position: -108px -108px;
412
+ }
413
+ .leaflet-measure-control,
414
+ .leaflet-control-edit-in-osm {
415
+ border: 1px solid #bbb;
416
+ border-radius: 4px;
417
+ box-shadow: none;
418
+ background-color: white;
419
+ }
420
+ .leaflet-measure-control a {
421
+ background-position: 0 -72px;
422
+ }
423
+ .leaflet-control .leaflet-measure-toggle {
424
+ display: inline-block;
425
+ vertical-align: middle;
426
+ }
427
+ .leaflet-control-locate-location circle {
428
+ animation: none;
429
+ }
430
+
431
+
432
+
433
+ /* ********************************* */
434
+ /* Help Lightbox */
435
+ /* ********************************* */
436
+ .umap-help-box {
437
+ z-index: 10001;
438
+ position: absolute;
439
+ margin: 0 calc(50% - 500px/2);
440
+ width: 500px;
441
+ max-width: 100vw;
442
+ padding: 40px 20px;
443
+ border: 1px solid #222;
444
+ background-color: #323737;
445
+ color: #efefef;
446
+ font-size: 0.8em;
447
+ visibility: hidden;
448
+ top: -100%;
449
+ }
450
+ .umap-help-box .umap-close-link {
451
+ float: right;
452
+ width: 100px;
453
+ }
454
+ .umap-help-button {
455
+ display: inline-block;
456
+ width: 16px;
457
+ height: 16px;
458
+ margin-left: 5px;
459
+ background-position: -4px -4px;
460
+ background-repeat: no-repeat;
461
+ background-image: url('./img/16.svg');
462
+ background-color: #323737 !important;
463
+ vertical-align: middle;
464
+ text-indent: -9999px;
465
+ min-height: inherit;
466
+ padding-top: 5px;
467
+ border: none !important;
468
+ }
469
+ .dark .umap-help-button {
470
+ background-image: url('./img/16-white.svg');
471
+ }
472
+ .umap-help-on .umap-help-box {
473
+ visibility: visible;
474
+ top: 100px;
475
+ }
476
+ .umap-help-entry + .umap-help-entry {
477
+ margin-top: 10px;
478
+ border-top: 1px solid #aaa;
479
+ padding-top: 10px;
480
+ }
481
+ .umap-edit-actions {
482
+ padding-top: 5px;
483
+ clear: both;
484
+ }
485
+ .umap-edit-actions li {
486
+ height: 36px;
487
+ line-height: 36px;
488
+ cursor: pointer;
489
+ margin-bottom: 5px;
490
+ border-radius: 2px;
491
+ border: 1px solid #222;
492
+ }
493
+ .umap-edit-actions li i {
494
+ background-image: url('./img/24-white.svg');
495
+ background-repeat: no-repeat;
496
+ display: table-cell;
497
+ width: 36px;
498
+ height: 36px;
499
+ }
500
+ .umap-edit-actions li span {
501
+ display: table-cell;
502
+ vertical-align: middle;
503
+ }
504
+ .umap-edit-actions li:hover {
505
+ background-color: #353c3e;
506
+ }
507
+
508
+
509
+ /* ********************************* */
510
+ /* Edit main toolbox */
511
+ /* ********************************* */
512
+ .umap-main-edit-toolbox [type="button"] {
513
+ color: #fff;
514
+ font-size: 1.2em;
515
+ border: none;
516
+ background-color: #323737;
517
+ width: auto;
518
+ margin-bottom: 0;
519
+ }
520
+ .umap-main-edit-toolbox [type="button"]:hover {
521
+ text-decoration: underline;
522
+ }
523
+
524
+ .leaflet-container [type="button"].umap-help-link {
525
+ font-size: 12px;
526
+ padding-bottom: 3px;
527
+ background-color: inherit;
528
+ }
529
+ .leaflet-container .leaflet-control-edit-save,
530
+ .leaflet-container .leaflet-control-edit-cancel,
531
+ .leaflet-container .leaflet-control-edit-disable {
532
+ display: block;
533
+ border: none;
534
+ font-size: 12px;
535
+ border-radius: 20px;
536
+ color: #f8f8f8;
537
+ height: 32px;
538
+ line-height: 30px;
539
+ padding: 0 20px;
540
+ }
541
+ .leaflet-container .leaflet-control-edit-disable:before,
542
+ .leaflet-container .leaflet-control-edit-save:before,
543
+ .leaflet-container .leaflet-control-edit-cancel:before {
544
+ display: inline-block;
545
+ width: 19px;
546
+ height: 24px;
547
+ background-position: -50px -122px;
548
+ background-repeat: no-repeat;
549
+ background-image: url('./img/16-white.svg');
550
+ vertical-align: middle;
551
+ content: ' ';
552
+ text-align: center;
553
+ }
554
+ .leaflet-container .leaflet-control-edit-disable span,
555
+ .leaflet-container .leaflet-control-edit-save span,
556
+ .leaflet-container .leaflet-control-edit-cancel span {
557
+ margin-left: 10px;
558
+ }
559
+ .leaflet-container .leaflet-control-edit-save:before {
560
+ background-position: -148px -2px;
561
+ }
562
+ .leaflet-container .leaflet-control-edit-disable:before {
563
+ background-position: -50px -25px;
564
+ }
565
+ .leaflet-container .leaflet-control-edit-cancel,
566
+ .leaflet-container .leaflet-control-edit-disable {
567
+ border: 0.5px solid rgba(153, 153, 153, 0.40);
568
+ }
569
+ .leaflet-container .leaflet-control-edit-cancel:hover,
570
+ .leaflet-container .leaflet-control-edit-disable:hover {
571
+ border: 0.5px solid rgba(153, 153, 153, 0.80);
572
+ text-decoration: none;
573
+ }
574
+ .leaflet-container .leaflet-control-edit-save {
575
+ opacity: 0.5;
576
+ cursor: not-allowed;
577
+ border-radius: 16px;
578
+ border: 0.5px solid rgba(153, 153, 153, 0.40);
579
+ background: rgba(153, 153, 153, 0.10);
580
+ }
581
+ .dark [type="button"].leaflet-control-edit-save:hover {
582
+ background: rgba(153, 153, 153, 0.10);
583
+ text-decoration: none;
584
+ }
585
+ .umap-is-dirty .leaflet-control-edit-save {
586
+ opacity: 1;
587
+ cursor: pointer;
588
+ border: 0.5px solid rgba(66, 236, 230, 0.40);
589
+ background: rgba(66, 236, 230, 0.10);
590
+ color: #42ECE6;
591
+ }
592
+ .umap-is-dirty .leaflet-control-edit-save:before {
593
+ background-position: -148px -26px;
594
+ }
595
+ .umap-is-dirty .dark [type="button"].leaflet-control-edit-save:hover {
596
+ border-color: rgba(66, 236, 230, 0.80);
597
+ background: rgba(66, 236, 230, 0.10);
598
+ }
599
+ .leaflet-container .leaflet-control-edit-save,
600
+ .leaflet-container .leaflet-control-edit-cancel,
601
+ .leaflet-container .leaflet-control-edit-disable,
602
+ .umap-edit-enabled .leaflet-control-edit-enable {
603
+ display: none;
604
+ }
605
+ .umap-edit-enabled .leaflet-control-edit-save,
606
+ .umap-edit-enabled .leaflet-control-edit-disable,
607
+ .umap-edit-enabled .umap-is-dirty .leaflet-control-edit-cancel {
608
+ display: inline-block;
609
+ }
610
+ .umap-is-dirty .leaflet-control-edit-disable {
611
+ display: none;
612
+ }
613
+ .umap-caption-bar {
614
+ display: none;
615
+ }
616
+ .umap-main-edit-toolbox {
617
+ top: -46px;
618
+ position: absolute;
619
+ width: 100%;
620
+ left: 0;
621
+ right: 0;
622
+ height: 46px;
623
+ background-color: #323737;
624
+ padding: 0 10px;
625
+ text-align: left;
626
+ line-height: 36px;
627
+ cursor: auto;
628
+ border-bottom: 1px solid #222;
629
+ z-index: 1000;
630
+ opacity: 0.98;
631
+ color: #fff;
632
+ display: flex;
633
+ justify-content: space-between;
634
+ }
635
+ .umap-left-edit-toolbox,
636
+ .umap-right-edit-toolbox {
637
+ display: flex;
638
+ column-gap: 10px;
639
+ }
640
+ .umap-right-edit-toolbox {
641
+ align-items: baseline;
642
+ }
643
+
644
+ .umap-main-edit-toolbox .logo {
645
+ width: 39px;
646
+ height: 100%;
647
+ }
648
+ .umap-main-edit-toolbox .logo a {
649
+ background-image: url('./img/logo_small.svg');
650
+ background-position: 0 center;
651
+ background-repeat: no-repeat;
652
+ display: inline-block;
653
+ width: 39px;
654
+ height: 100%;
655
+ vertical-align: middle;
656
+ text-indent: -9999px;
657
+ }
658
+ .umap-main-edit-toolbox .map-name {
659
+ display: inline-block;
660
+ overflow: hidden;
661
+ white-space: nowrap;
662
+ text-overflow: ellipsis;
663
+ font-weight: bold;
664
+ text-align: left;
665
+ }
666
+ .umap-main-edit-toolbox .share-status {
667
+ font-size: 1em;
668
+ font-style: italic;
669
+ overflow: hidden;
670
+ text-overflow: ellipsis;
671
+ }
672
+
673
+ .map-name:after {
674
+ content: '\00a0';
675
+ padding-left: 3px;
676
+ width: 1ch;
677
+ display: inline-block;
678
+ }
679
+ .umap-is-dirty .map-name:after {
680
+ content: '*';
681
+ }
682
+ .umap-edit-enabled .umap-main-edit-toolbox {
683
+ top: 0;
684
+ }
685
+ .umap-edit-enabled .umap-caption-bar {
686
+ display: none;
687
+ }
688
+ .umap-caption-bar h3,
689
+ .umap-main-edit-toolbox h3 {
690
+ display: inline;
691
+ }
692
+ .umap-caption-bar button {
693
+ margin-left: 10px;
694
+ }
695
+ .umap-caption-bar button + button:before {
696
+ content: '|';
697
+ padding-right: 10px;
698
+ }
699
+ .umap-main-edit-toolbox .umap-user {
700
+ color: #fff;
701
+ }
702
+ .umap-main-edit-toolbox .umap-user:hover {
703
+ text-decoration: underline;
704
+ }
705
+ .umap-main-edit-toolbox .umap-user:after {
706
+ content: '|';
707
+ padding-left: 20px;
708
+ display: inline-block; /* Prevents underline on hover. */
709
+ }
710
+ .umap-edit-enabled .leaflet-top {
711
+ top: 48px;
712
+ }
713
+ .umap-caption-bar-enabled .umap-caption-bar {
714
+ display: block;
715
+ height: 46px;
716
+ background-color: #fff;
717
+ width: 100%;
718
+ position: absolute;
719
+ left: 0;
720
+ bottom: 0;
721
+ right: 0;
722
+ padding: 0 0 0 5px;
723
+ text-align: left;
724
+ line-height: 46px;
725
+ cursor: auto;
726
+ border-top: 1px solid #ddd;
727
+ opacity: 0.93;
728
+ z-index: 1000;
729
+ }
730
+ .umap-caption-bar-enabled .leaflet-bottom {
731
+ bottom: 46px;
732
+ }
733
+ .umap-help {
734
+ font-style: italic;
735
+ }
736
+ .umap-slideshow-toolbox {
737
+ float: right;
738
+ display: none;
739
+ }
740
+ .umap-slideshow-enabled .umap-slideshow-toolbox {
741
+ display: inline-block;
742
+ }
743
+ .umap-slideshow-toolbox li {
744
+ display: inline-block;
745
+ cursor: pointer;
746
+ font-size: 1.5em;
747
+ background-color: #464646;
748
+ color: #fff;
749
+ height: 46px;
750
+ width: 70px;
751
+ line-height: 46px;
752
+ vertical-align: middle;
753
+ text-align: center;
754
+ }
755
+ .umap-slideshow-toolbox li + li {
756
+ border-left: 1px solid #aaa;
757
+ }
758
+ .umap-slideshow-toolbox li:hover {
759
+ background-color: #666;
760
+ }
761
+ .umap-slideshow-active .umap-slideshow-toolbox .play,
762
+ .umap-slideshow-toolbox .play {
763
+ width: 100px;
764
+ text-align: left;
765
+ padding-left: 20px;
766
+ }
767
+ .umap-slideshow-toolbox .play:after {
768
+ content: ' ▶';
769
+ }
770
+ .umap-slideshow-active .umap-slideshow-toolbox .play:after {
771
+ content: ' ❚❚';
772
+ }
773
+ .umap-slideshow-toolbox .stop:before {
774
+ content: '■';
775
+ }
776
+ .umap-slideshow-toolbox .next:before {
777
+ content: '➡';
778
+ }
779
+ .umap-slideshow-toolbox .prev:before {
780
+ content: '⬅';
781
+ }
782
+ .umap-slideshow-toolbox .play div {
783
+ height: 20px;
784
+ width: 20px;
785
+ margin: 0px auto;
786
+ position: relative;
787
+ top: 5px;
788
+ -webkit-animation: rotation 5s infinite linear;
789
+ -moz-animation: rotation 5s infinite linear;
790
+ -o-animation: rotation 5s infinite linear;
791
+ animation: rotation 5s infinite linear;
792
+ border-left: 3px solid rgba(255,255,239,.15);
793
+ border-right: 3px solid rgba(255,255,255,.15);
794
+ border-bottom: 3px solid rgba(255,255,255,.15);
795
+ border-top: 3px solid rgba(255,255,255,.8);
796
+ border-radius:100%;
797
+ display: inline-block;
798
+ visibility: hidden;
799
+ }
800
+ @-webkit-keyframes rotation {
801
+ from {-webkit-transform: rotate(0deg);}
802
+ to {-webkit-transform: rotate(359deg);}
803
+ }
804
+ @-moz-keyframes rotation {
805
+ from {-moz-transform: rotate(0deg);}
806
+ to {-moz-transform: rotate(359deg);}
807
+ }
808
+ @-o-keyframes rotation {
809
+ from {-o-transform: rotate(0deg);}
810
+ to {-o-transform: rotate(359deg);}
811
+ }
812
+ @keyframes rotation {
813
+ from {transform: rotate(0deg);}
814
+ to {transform: rotate(359deg);}
815
+ }
816
+ .umap-slideshow-active .umap-slideshow-toolbox .play .spinner {
817
+ visibility: visible;
818
+ }
819
+ .umap-datalayer-version {
820
+ padding: 5px 0;
821
+ border-bottom: 1px solid #202425;
822
+ }
823
+ .umap-datalayer-version button {
824
+ display: inline-block;
825
+ width: 24px;
826
+ min-height: 24px;
827
+ background-position: -122px -73px;
828
+ background-repeat: no-repeat;
829
+ background-image: url('./img/16-white.svg');
830
+ margin-right: 10px;
831
+ }
832
+
833
+
834
+
835
+ /* ********************************* */
836
+ /* Datalayers Control */
837
+ /* ********************************* */
838
+
839
+ .leaflet-control-browse .umap-browse-toggle {
840
+ background-image: url('./img/24.svg');
841
+ width: 36px;
842
+ height: 36px;
843
+ background-position: -36px -72px;
844
+ background-size: 180px;
845
+ }
846
+ .leaflet-control-browse .umap-browse-actions {
847
+ background-color: #fff;
848
+ padding: 10px;
849
+ display: none;
850
+ line-height: 24px;
851
+ border-radius: 2px;
852
+ }
853
+ .leaflet-control-browse .umap-browse-datalayers {
854
+ max-height: 15em;
855
+ overflow-y: auto;
856
+ }
857
+ .search-result-tools i,
858
+ .leaflet-inplace-toolbar a,
859
+ .umap-browse-features i,
860
+ .umap-caption i,
861
+ .umap-browse-datalayers i {
862
+ background-repeat: no-repeat;
863
+ background-image: url('./img/16.svg');
864
+ display: inline;
865
+ padding: 0 10px;
866
+ cursor: pointer;
867
+ height: 24px;
868
+ line-height: 24px;
869
+ vertical-align: middle;
870
+ }
871
+ .dark .umap-browse-datalayers i {
872
+ background-image: url('./img/16-white.svg');
873
+ }
874
+ .umap-browse-datalayers li[draggable] .drag-handle {
875
+ float: right;
876
+ background-position: -72px -72px;
877
+ margin-right: 5px;
878
+ cursor: move;
879
+ }
880
+ .leaflet-inplace-toolbar a {
881
+ background-image: url('./img/16-white.svg');
882
+ background-color: #323737!important;
883
+ }
884
+ .leaflet-toolbar-tip {
885
+ background-color: #323737;
886
+ }
887
+ .leaflet-inplace-toolbar a:hover {
888
+ background-color: #353c3e!important;
889
+ }
890
+ .leaflet-control-browse .umap-browse-datalayers .off i {
891
+ cursor: inherit;
892
+ }
893
+ .layer-toggle {
894
+ background-position: -49px -31px;
895
+ }
896
+ .off .layer-toggle {
897
+ background-position: -73px -31px;
898
+ }
899
+ .feature-zoom_to {
900
+ background-position: -1px -54px;
901
+ }
902
+ .layer-zoom_to {
903
+ background-position: -1px -54px;
904
+ }
905
+ .layer-table-edit {
906
+ background-position: -50px -1px;
907
+ }
908
+ .feature-delete,
909
+ .layer-delete {
910
+ background-position: -122px -49px;
911
+ }
912
+ .feature-edit,
913
+ .layer-edit {
914
+ background-position: -50px -49px;
915
+ }
916
+ .umap-toggle-edit {
917
+ background-position: -44px -48px;
918
+ }
919
+ .readonly .layer-table-edit,
920
+ .off .layer-table-edit {
921
+ background-position: -74px -1px;
922
+ }
923
+ .readonly .layer-edit,
924
+ .off .layer-edit {
925
+ background-position: -50px -73px;
926
+ }
927
+ .off .layer-zoom_to {
928
+ background-position: -25px -54px;
929
+ }
930
+ .readonly .layer-delete,
931
+ .off .layer-delete {
932
+ background-position: -122px -121px;
933
+ }
934
+ .umap-new-hole {
935
+ background-position: -71px -94px;
936
+ }
937
+ .umap-delete-one-of-multi {
938
+ background-position: -97px -70px;
939
+ }
940
+ .umap-delete-all,
941
+ .umap-delete-one-of-one {
942
+ background-position: -119px -48px;
943
+ }
944
+ .umap-delete-vertex {
945
+ background-position: -119px -94px;
946
+ }
947
+ .umap-continue-line {
948
+ background-position: -96px 1px;
949
+ }
950
+ .umap-split-line {
951
+ background-position: -119px -22px;
952
+ }
953
+ .umap-extract-shape-from-multi{
954
+ background-position: -119px 2px;
955
+ }
956
+ .umap-browse-features .feature-title,
957
+ .leaflet-control-browse .umap-browse-actions .layer-title {
958
+ width: inherit;
959
+ cursor: inherit;
960
+ padding-left: 6px;
961
+ }
962
+ .umap-browse-features .feature-title {
963
+ font-size: 12px;
964
+ cursor: pointer;
965
+ }
966
+ .leaflet-control-browse .umap-browse-actions .off .layer-title {
967
+ color: rgb(179, 179, 179);
968
+ }
969
+ .leaflet-control-browse.expanded > a,
970
+ .leaflet-control-browse.expanded > button {
971
+ display: none;
972
+ }
973
+ .leaflet-control-browse.expanded .umap-browse-actions {
974
+ display: block;
975
+ }
976
+ .leaflet-control-browse .umap-browse-link {
977
+ background-image: none;
978
+ background-color: rgb(68, 68, 68);
979
+ color: white;
980
+ display: block;
981
+ height: 24px;
982
+ line-height: 24px;
983
+ margin-top: 14px;
984
+ padding: 0 5px;
985
+ text-align: right;
986
+ min-width: 160px;
987
+ width: 100%;
988
+ border-radius: 2px;
989
+ }
990
+ a.add-datalayer:before,
991
+ .leaflet-control-browse .umap-browse-link:before {
992
+ background-image: url('./img/16.svg');
993
+ background-repeat: no-repeat;
994
+ background-position: -45px -96px;
995
+ width: 24px;
996
+ height: 24px;
997
+ content: " ";
998
+ display: block;
999
+ float: left;
1000
+ }
1001
+ a.add-datalayer:before {
1002
+ background-position: -20px -20px;
1003
+ }
1004
+ a.add-datalayer:hover,
1005
+ .leaflet-control-browse .umap-browse-link:hover {
1006
+ background-color: rgb(99, 99, 99);
1007
+ }
1008
+ .umap-browse-data .off .feature {
1009
+ display: none;
1010
+ }
1011
+
1012
+
1013
+ /* ********************************* */
1014
+ /* Features browser panel */
1015
+ /* ********************************* */
1016
+
1017
+ .umap-facet-search .formbox,
1018
+ .umap-browse-features > div {
1019
+ border: 1px solid #d3d3d3;
1020
+ margin-bottom: 14px;
1021
+ border-radius: 2px;
1022
+ }
1023
+ .umap-browse-features h5, .umap-facet-search h5 {
1024
+ margin-bottom: 0;
1025
+ overflow: hidden;
1026
+ padding-left: 5px;
1027
+ height: 30px;
1028
+ line-height: 30px;
1029
+ background-color: #eeeee0;
1030
+ color: #666;
1031
+ }
1032
+ .umap-browse-features h5 span {
1033
+ margin-left: 10px;
1034
+ }
1035
+ .umap-browse-features li, .umap-facet-search li {
1036
+ padding: 2px 0;
1037
+ white-space: nowrap;
1038
+ overflow: hidden;
1039
+ text-overflow: ellipsis;
1040
+ }
1041
+ .umap-facet-search li:nth-child(even),
1042
+ .umap-browse-features li:nth-child(even) {
1043
+ background-color: #f8f8f3;
1044
+ }
1045
+ .umap-browse-features .feature-color {
1046
+ box-shadow: 0 0 2px 0 black inset;
1047
+ cursor: inherit;
1048
+ -moz-box-sizing:border-box;
1049
+ -webkit-box-sizing:border-box;
1050
+ box-sizing: border-box;
1051
+ background: none;
1052
+ display: inline-block;
1053
+ padding: 0;
1054
+ width: 24px;
1055
+ text-align: center;
1056
+ margin-left: 5px;
1057
+ }
1058
+ .umap-browse-features .feature-color img {
1059
+ width: 24px;
1060
+ }
1061
+ .umap-browse-features .feature-color span {
1062
+ font-style: normal;
1063
+ font-weight: bold;
1064
+ }
1065
+ .umap-browse-features .polygon .feature-color,
1066
+ .umap-browse-features .polyline .feature-color {
1067
+ box-shadow: 0 0 2px 0 black inset;
1068
+ background-image: url('./img/24.svg');
1069
+ background-size: 500%;
1070
+ }
1071
+ .umap-browse-features .polyline .feature-color {
1072
+ background-position: -72px -23px;
1073
+ }
1074
+ .umap-browse-features .polygon .feature-color {
1075
+ background-position: -48px -25px;
1076
+ }
1077
+ .show-on-edit {
1078
+ display: none!important;
1079
+ }
1080
+ .umap-edit-enabled .show-on-edit {
1081
+ display: inline-block!important;
1082
+ }
1083
+ .umap-edit-enabled .show-on-edit.inline {
1084
+ display: inline!important;
1085
+ }
1086
+ .umap-edit-enabled .show-on-edit.block {
1087
+ display: block!important;
1088
+ }
1089
+ .umap-browse-description {
1090
+ font-size: 0.9em;
1091
+ margin-bottom: 14px;
1092
+ }
1093
+ .datalayer-counter {
1094
+ float: right;
1095
+ margin-right: 5px;
1096
+ }
1097
+
1098
+
1099
+ /* ********************************* */
1100
+ /* Table Editor */
1101
+ /* ********************************* */
1102
+ #umap-ui-container.umap-table-editor {
1103
+ padding-left: 0;
1104
+ padding-right: 0;
1105
+ }
1106
+ #umap-ui-container.umap-table-editor .toolbox li {
1107
+ float: left;
1108
+ }
1109
+
1110
+ .umap-table-editor .umap-close-link {
1111
+ right: auto;
1112
+ left: 20px;
1113
+ }
1114
+ .umap-table-editor .table {
1115
+ display: table;
1116
+ width: 100%;
1117
+ white-space: nowrap;
1118
+ table-layout: fixed;
1119
+ }
1120
+ .umap-table-editor .tbody {
1121
+ display: table-row-group;
1122
+ }
1123
+ .umap-table-editor .thead,
1124
+ .umap-table-editor .trow {
1125
+ display: table-row;
1126
+ }
1127
+ .umap-table-editor .tcell {
1128
+ display: table-cell;
1129
+ width: 200px;
1130
+ }
1131
+ .umap-table-editor .thead {
1132
+ text-align: center;
1133
+ height: 48px;
1134
+ line-height: 48px;
1135
+ background-color: #2c3133;
1136
+ }
1137
+ .umap-table-editor .thead .tcell {
1138
+ border-left: 1px solid #0b0c0c;
1139
+ }
1140
+ .umap-table-editor .tbody .trow input {
1141
+ margin: 0;
1142
+ border-right: none;
1143
+ display: inline;
1144
+ }
1145
+ .umap-table-editor .tbody .trow + .trow input {
1146
+ border-top: none;
1147
+ }
1148
+ .umap-table-editor .thead i {
1149
+ display: none;
1150
+ width: 50%;
1151
+ cursor: pointer;
1152
+ padding: 10px 0;
1153
+ height: 24px;
1154
+ line-height: 24px;
1155
+ }
1156
+ .umap-table-editor .thead i:before {
1157
+ width: 40px;
1158
+ }
1159
+ .umap-table-editor .thead .tcell:hover i {
1160
+ display: inline-block;
1161
+ }
1162
+ .umap-table-editor .thead .tcell i:hover {
1163
+ background-color: #33393b;
1164
+ }
1165
+ .umap-table-editor .thead .tcell:hover span {
1166
+ display: none;
1167
+ }
1168
+ .remotelayer .layer-table-edit {
1169
+ display: none !important;
1170
+ }
1171
+
1172
+ /* ********************************* */
1173
+ /* Icons */
1174
+ /* ********************************* */
1175
+ .umap-icon-16 {
1176
+ background-repeat: no-repeat;
1177
+ background-image: url('./img/16.svg');
1178
+ display: inline-block;
1179
+ height: 20px;
1180
+ padding: 0 10px;
1181
+ vertical-align: middle;
1182
+ }
1183
+ .umap-add {
1184
+ background-position: -28px -27px;
1185
+ }
1186
+ .umap-list {
1187
+ background-position: -28px -99px;
1188
+ }
1189
+ .umap-list-white {
1190
+ background-position: -92px -168px;
1191
+ }
1192
+ .umap-caption {
1193
+ background-position: -99px -28px;
1194
+ }
1195
+
1196
+ /* ********************************* */
1197
+ /* Tilelayer switcher */
1198
+ /* ********************************* */
1199
+
1200
+ .umap-tilelayer-switcher-container li {
1201
+ border: 1px solid rgb(116, 116, 116);
1202
+ border-radius: 4px 4px 4px 4px;
1203
+ margin-bottom: 14px;
1204
+ overflow: hidden;
1205
+ position: relative;
1206
+ width: 256px;
1207
+ cursor: pointer;
1208
+ height: 200px;
1209
+ margin-left: auto;
1210
+ margin-right: auto;
1211
+ }
1212
+ .umap-tilelayer-switcher-container li div {
1213
+ background-color: rgb(116, 116, 116);
1214
+ bottom: 0;
1215
+ color: rgb(247, 246, 241);
1216
+ height: 56px;
1217
+ line-height: 56px;
1218
+ opacity: 0.9;
1219
+ padding-left: 10px;
1220
+ position: absolute;
1221
+ width: 100%;
1222
+ text-align: center;
1223
+ }
1224
+ .umap-tilelayer-switcher-container li:hover div:before,
1225
+ .umap-tilelayer-switcher-container .selected div:before {
1226
+ content: "✓";
1227
+ font-size: 1.3em;
1228
+ line-height: 56px;
1229
+ padding-right: 7px;
1230
+ position: absolute;
1231
+ left: 7px;
1232
+ }
1233
+ .umap-tilelayer-switcher-container li img {
1234
+ display: block;
1235
+ max-width: 100%;
1236
+ }
1237
+
1238
+ /* ********************************* */
1239
+ /* Caption */
1240
+ /* ********************************* */
1241
+ .datalayer-color {
1242
+ display: inline-block;
1243
+ width: 16px;
1244
+ height: 16px;
1245
+ margin-right: 10px;
1246
+ border: 1px solid #000;
1247
+ background-color: transparent;
1248
+ vertical-align: middle;
1249
+ }
1250
+
1251
+ .datalayer-legend {
1252
+ color: #555;
1253
+ padding: 6px 8px;
1254
+ box-shadow: 0 0 3px rgba(0,0,0,0.2);
1255
+ border-radius: 1px;
1256
+ }
1257
+ .datalayer-legend ul {
1258
+ list-style-type: none;
1259
+ padding: 0;
1260
+ margin: 0;
1261
+ }
1262
+
1263
+ /* ********************************* */
1264
+ /* Popup */
1265
+ /* ********************************* */
1266
+ .umap-popup {
1267
+ display: flex;
1268
+ flex-flow: column nowrap;
1269
+ height:100%;
1270
+ }
1271
+
1272
+ .umap-popup-footer {
1273
+ background-color: rgb(68, 68, 68);
1274
+ color: white;
1275
+ display: table;
1276
+ width: 100%;
1277
+ margin-top: auto;
1278
+ min-width: 99px;
1279
+ border-radius: 2px;
1280
+ max-height: 24px;
1281
+ }
1282
+ .umap-popup-footer li {
1283
+ line-height: 24px;
1284
+ height: 24px;
1285
+ display: table-cell;
1286
+ width: 33.3%;
1287
+ cursor: pointer;
1288
+ text-align: center;
1289
+ }
1290
+ .umap-popup-footer li:before {
1291
+ display: inline-block;
1292
+ width: 16px;
1293
+ height: 16px;
1294
+ margin-left: 5px;
1295
+ background-repeat: no-repeat;
1296
+ background-image: url('./img/16.svg');
1297
+ vertical-align: middle;
1298
+ content: " ";
1299
+ }
1300
+ .umap-popup-footer li.zoom:before {
1301
+ background-position: -5px -101px;
1302
+ }
1303
+ .umap-popup-footer li.previous:before {
1304
+ background-position: -28px -77px;
1305
+ }
1306
+ .umap-popup-footer li.next:before {
1307
+ background-position: -5px -77px;
1308
+ }
1309
+ .umap-popup a:hover {
1310
+ text-decoration: underline;
1311
+ }
1312
+ .popup-title {
1313
+ display: flex;
1314
+ align-items: center;
1315
+ }
1316
+ .popup-title .icon {
1317
+ margin: 5px;
1318
+ }
1319
+ a[href^='mailto']::before {
1320
+ content: '🖃 ';
1321
+ }
1322
+ a[href^='tel']::before {
1323
+ content: '🕿 ';
1324
+ }
1325
+ address span {
1326
+ padding-right: 5px;
1327
+ }
1328
+ .osm-link {
1329
+ margin-top: 10px;
1330
+ text-align: right;
1331
+ font-style: italic;
1332
+ }
1333
+ span.popup-icon {
1334
+ padding: 5px;
1335
+ }
1336
+
1337
+
1338
+ /* ************* */
1339
+ /* Marker's Icon */
1340
+ /* ************* */
1341
+ .umap-div-icon .icon_container {
1342
+ background-color: white;
1343
+ border-radius: 4px 4px 4px 4px;
1344
+ height: 32px;
1345
+ width: 32px;
1346
+ box-shadow: 7px 10px 8px -5px black;
1347
+ opacity: 0.9;
1348
+ background-color: #2470b5;
1349
+ text-align: center;
1350
+ line-height: 32px;
1351
+ }
1352
+ .umap-div-icon.umap-icon-active .icon_container {
1353
+ border-radius: 5px;
1354
+ box-shadow: 7px 10px 10px -1px black;
1355
+ height: 36px;
1356
+ line-height: 36px;
1357
+ margin-left: -2px;
1358
+ margin-top: -4px;
1359
+ opacity: 1.0!important;
1360
+ width: 36px;
1361
+ }
1362
+ .umap-div-icon .icon_container img {
1363
+ vertical-align: middle;
1364
+ max-width: 24px!important; /* leaflet.css has !important, so... */
1365
+ max-height: 24px!important;
1366
+ }
1367
+ .umap-div-icon .icon_arrow {
1368
+ border-left: 8px solid transparent;
1369
+ border-right: 8px solid transparent;
1370
+ border-top: 8px solid #2270b5;
1371
+ height: 0;
1372
+ left: 8px;
1373
+ position: relative;
1374
+ width: 0;
1375
+ opacity: 0.9;
1376
+ }
1377
+ .umap-div-icon.umap-icon-active .icon_arrow {
1378
+ opacity: 1.0!important;
1379
+ }
1380
+ .umap-drop-icon .icon_arrow {
1381
+ border-left: 10px solid transparent;
1382
+ border-right: 10px solid transparent;
1383
+ border-top: 16px solid #2270B5;
1384
+ height: 0;
1385
+ left: 6px;
1386
+ position: relative;
1387
+ top: -4px;
1388
+ width: 0;
1389
+ }
1390
+ .umap-drop-icon.umap-icon-active .icon_arrow {
1391
+ border-left-width: 12px;
1392
+ border-right-width: 12px;
1393
+ border-top-width: 18px;
1394
+ left: 4px;
1395
+ opacity: 1.0!important;
1396
+ }
1397
+ .umap-drop-icon .icon_container {
1398
+ background-color: #2470B5;
1399
+ border-radius: 16px 16px 16px 16px;
1400
+ box-shadow: 6px 13px 8px -4px black;
1401
+ height: 32px;
1402
+ line-height: 32px;
1403
+ opacity: 0.9;
1404
+ text-align: center;
1405
+ width: 32px;
1406
+ }
1407
+ .umap-drop-icon.umap-icon-active .icon_container {
1408
+ box-shadow: 4px 11px 10px -2px black;
1409
+ border-radius: 18px 18px 18px 18px;
1410
+ height: 36px;
1411
+ line-height: 36px;
1412
+ margin-left: -2px;
1413
+ margin-top: -6px;
1414
+ opacity: 1.0!important;
1415
+ width: 36px;
1416
+ }
1417
+ .umap-drop-icon .icon_container img {
1418
+ vertical-align: middle;
1419
+ max-width: 24px !important;
1420
+ max-height: 24px!important;
1421
+ }
1422
+ .umap-div-icon .icon_container span,
1423
+ .umap-drop-icon .icon_container span {
1424
+ vertical-align: middle;
1425
+ font-weight: bold;
1426
+ }
1427
+ .umap-circle-icon {
1428
+ border: 1px solid white;
1429
+ border-radius: 10px 10px 10px 10px;
1430
+ margin-left: -6px;
1431
+ margin-top: -6px;
1432
+ height: 12px;
1433
+ width: 12px;
1434
+ }
1435
+ .umap-circle-icon.umap-icon-active {
1436
+ height: 16px;
1437
+ margin-left: -8px;
1438
+ margin-top: -8px;
1439
+ opacity: 1.0!important;
1440
+ width: 16px;
1441
+ }
1442
+ .umap-ball-icon .icon_container {
1443
+ background-color: darkblue;
1444
+ background: radial-gradient(circle at 6px 38% , white -4px, darkblue 8px) repeat scroll 0 0 transparent;
1445
+ border-radius: 8px 8px 8px 8px;
1446
+ box-shadow: 1px 21px 6px -3px black;
1447
+ height: 16px;
1448
+ opacity: 0.9;
1449
+ text-align: center;
1450
+ width: 16px;
1451
+ }
1452
+ .umap-ball-icon.umap-icon-active .icon_container {
1453
+ border-radius: 10px 10px 10px 10px;
1454
+ box-shadow: 1px 23px 7px -1px black;
1455
+ margin-left: -2px;
1456
+ margin-top: -4px;
1457
+ height: 20px;
1458
+ opacity: 1.0!important;
1459
+ width: 20px;
1460
+ }
1461
+ .umap-ball-icon .icon_arrow {
1462
+ background-color: black;
1463
+ height: 16px;
1464
+ left: 7px;
1465
+ opacity: 0.9;
1466
+ position: relative;
1467
+ top: -1px;
1468
+ width: 2px;
1469
+ }
1470
+ .umap-icon-active {
1471
+ z-index: 9500!important;
1472
+ opacity: 1.0!important;
1473
+ }
1474
+ .umap-edit-enabled .readonly {
1475
+ cursor: not-allowed;
1476
+ }
1477
+
1478
+
1479
+ /* ********************************* */
1480
+ /* Ajax loader */
1481
+ /* ********************************* */
1482
+ .umap-loading .umap-loader
1483
+ {
1484
+ display: block;
1485
+ -webkit-animation: shift-rightwards 3s ease-in-out infinite;
1486
+ -moz-animation: shift-rightwards 3s ease-in-out infinite;
1487
+ -ms-animation: shift-rightwards 3s ease-in-out infinite;
1488
+ -o-animation: shift-rightwards 3s ease-in-out infinite;
1489
+ animation: shift-rightwards 3s ease-in-out infinite;
1490
+ -webkit-animation-delay: .2s;
1491
+ -moz-animation-delay: .2s;
1492
+ -o-animation-delay: .2s;
1493
+ animation-delay: .2s;
1494
+ }
1495
+ .umap-loader
1496
+ {
1497
+ position: absolute;
1498
+ display: none;
1499
+ top: 0;
1500
+ left: 0;
1501
+ right: 0;
1502
+ height: 4px;
1503
+ z-index: 10100;
1504
+ background-color: #79c1c0 !important;
1505
+ -webkit-transform: translateX(100%);
1506
+ -moz-transform: translateX(100%);
1507
+ -o-transform: translateX(100%);
1508
+ transform: translateX(100%);
1509
+ }
1510
+
1511
+
1512
+ @-webkit-keyframes shift-rightwards
1513
+ {
1514
+ 0%
1515
+ {
1516
+ -webkit-transform:translateX(-100%);
1517
+ -moz-transform:translateX(-100%);
1518
+ -o-transform:translateX(-100%);
1519
+ transform:translateX(-100%);
1520
+ }
1521
+
1522
+ 40%
1523
+ {
1524
+ -webkit-transform:translateX(0%);
1525
+ -moz-transform:translateX(0%);
1526
+ -o-transform:translateX(0%);
1527
+ transform:translateX(0%);
1528
+ }
1529
+
1530
+ 60%
1531
+ {
1532
+ -webkit-transform:translateX(0%);
1533
+ -moz-transform:translateX(0%);
1534
+ -o-transform:translateX(0%);
1535
+ transform:translateX(0%);
1536
+ }
1537
+
1538
+ 100%
1539
+ {
1540
+ -webkit-transform:translateX(100%);
1541
+ -moz-transform:translateX(100%);
1542
+ -o-transform:translateX(100%);
1543
+ transform:translateX(100%);
1544
+ }
1545
+
1546
+ }
1547
+ @-moz-keyframes shift-rightwards
1548
+ {
1549
+ 0%
1550
+ {
1551
+ -webkit-transform:translateX(-100%);
1552
+ -moz-transform:translateX(-100%);
1553
+ -o-transform:translateX(-100%);
1554
+ transform:translateX(-100%);
1555
+ }
1556
+
1557
+ 40%
1558
+ {
1559
+ -webkit-transform:translateX(0%);
1560
+ -moz-transform:translateX(0%);
1561
+ -o-transform:translateX(0%);
1562
+ transform:translateX(0%);
1563
+ }
1564
+
1565
+ 60%
1566
+ {
1567
+ -webkit-transform:translateX(0%);
1568
+ -moz-transform:translateX(0%);
1569
+ -o-transform:translateX(0%);
1570
+ transform:translateX(0%);
1571
+ }
1572
+
1573
+ 100%
1574
+ {
1575
+ -webkit-transform:translateX(100%);
1576
+ -moz-transform:translateX(100%);
1577
+ -o-transform:translateX(100%);
1578
+ transform:translateX(100%);
1579
+ }
1580
+
1581
+ }
1582
+ @-o-keyframes shift-rightwards
1583
+ {
1584
+ 0%
1585
+ {
1586
+ -webkit-transform:translateX(-100%);
1587
+ -moz-transform:translateX(-100%);
1588
+ -o-transform:translateX(-100%);
1589
+ transform:translateX(-100%);
1590
+ }
1591
+
1592
+ 40%
1593
+ {
1594
+ -webkit-transform:translateX(0%);
1595
+ -moz-transform:translateX(0%);
1596
+ -o-transform:translateX(0%);
1597
+ transform:translateX(0%);
1598
+ }
1599
+
1600
+ 60%
1601
+ {
1602
+ -webkit-transform:translateX(0%);
1603
+ -moz-transform:translateX(0%);
1604
+ -o-transform:translateX(0%);
1605
+ transform:translateX(0%);
1606
+ }
1607
+
1608
+ 100%
1609
+ {
1610
+ -webkit-transform:translateX(100%);
1611
+ -moz-transform:translateX(100%);
1612
+ -o-transform:translateX(100%);
1613
+ transform:translateX(100%);
1614
+ }
1615
+
1616
+ }
1617
+ @keyframes shift-rightwards
1618
+ {
1619
+ 0%
1620
+ {
1621
+ -webkit-transform:translateX(-100%);
1622
+ -moz-transform:translateX(-100%);
1623
+ -o-transform:translateX(-100%);
1624
+ transform:translateX(-100%);
1625
+ }
1626
+
1627
+ 40%
1628
+ {
1629
+ -webkit-transform:translateX(0%);
1630
+ -moz-transform:translateX(0%);
1631
+ -o-transform:translateX(0%);
1632
+ transform:translateX(0%);
1633
+ }
1634
+
1635
+ 60%
1636
+ {
1637
+ -webkit-transform:translateX(0%);
1638
+ -moz-transform:translateX(0%);
1639
+ -o-transform:translateX(0%);
1640
+ transform:translateX(0%);
1641
+ }
1642
+
1643
+ 100%
1644
+ {
1645
+ -webkit-transform:translateX(100%);
1646
+ -moz-transform:translateX(100%);
1647
+ -o-transform:translateX(100%);
1648
+ transform:translateX(100%);
1649
+ }
1650
+ }
1651
+
1652
+ /* *************************** */
1653
+ /* Overriding leaflet defaults */
1654
+ /* *************************** */
1655
+
1656
+ .leaflet-control-zoom a, .leaflet-control-zoom a:hover {
1657
+ height: 36px;
1658
+ width: 36px;
1659
+ line-height: 36px;
1660
+ }
1661
+ .leaflet-container .leaflet-control-zoom {
1662
+ margin-left: 10px;
1663
+ }
1664
+ .leaflet-top {
1665
+ z-index: 1001;
1666
+ }
1667
+ .leaflet-popup-content {
1668
+ min-width: 100px;
1669
+ line-height: inherit;
1670
+ }
1671
+ .leaflet-popup-content-wrapper, .leaflet-popup-tip {
1672
+ box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
1673
+ }
1674
+ .leaflet-popup-content-wrapper {
1675
+ border-radius: 4px;
1676
+ }
1677
+ .umap-popup-content {
1678
+ max-height: 500px;
1679
+ flex-grow: 1;
1680
+ margin-bottom: 4px;
1681
+ display: flex;
1682
+ flex-direction: column;
1683
+ overflow-y: auto;
1684
+ overflow-x: hidden;
1685
+ }
1686
+ .umap-popup-content iframe {
1687
+ min-width: 300px;
1688
+ max-width: 100%;
1689
+ }
1690
+ .umap-popup-content tr:nth-child(odd) {
1691
+ background-color: #f6f6f6;
1692
+ }
1693
+ .umap-popup-content th {
1694
+ text-align: left;
1695
+ }
1696
+ .umap-popup-content td {
1697
+ word-break: break-word;
1698
+ }
1699
+ .umap-popup-content th,
1700
+ .umap-popup-content td {
1701
+ padding: 1px 3px;
1702
+ }
1703
+ .umap-popup-container {
1704
+ flex-grow: 1;
1705
+ word-break: break-word;
1706
+ }
1707
+ .leaflet-popup-content h3 {
1708
+ margin-bottom: 0;
1709
+ }
1710
+ .leaflet-control-toolbar,
1711
+ .leaflet-bar {
1712
+ box-shadow: none;
1713
+ }
1714
+ .marker-cluster {
1715
+ background-color: white;
1716
+ width: 40px;
1717
+ height: 40px;
1718
+ }
1719
+ .leaflet-contextmenu-icon {
1720
+ display: none;
1721
+ }
1722
+ .umap-popup-large iframe {
1723
+ /* See https://github.com/Leaflet/Leaflet/commit/61d746818b99d362108545c151a27f09d60960ee#commitcomment-6061847 */
1724
+ max-width: 100% !important;
1725
+ min-width: 500px;
1726
+ }
1727
+ .umap-popup-large .umap-popup-content {
1728
+ width: 500px;
1729
+ }
1730
+ .umap-popup-content img {
1731
+ max-width: 100%;
1732
+ }
1733
+ .umap-georss-link .popup-title {
1734
+ text-align: center;
1735
+ }
1736
+ .leaflet-inplace-toolbar {
1737
+ z-index: 10000!important;
1738
+ }
1739
+ .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
1740
+ border-width: 1px;
1741
+ }
1742
+ .leaflet-touch .leaflet-bar a {
1743
+ width: 36px;
1744
+ height: 36px;
1745
+ line-height: 34px;
1746
+ }
1747
+ /* Links are blue by default */
1748
+ .leaflet-container a {
1749
+ color: #0078a8;
1750
+ }
1751
+ /* But not in controls */
1752
+ .leaflet-bar a {
1753
+ color: black;
1754
+ }
1755
+
1756
+ /* ****** */
1757
+ /* Mobile */
1758
+ /* ****** */
1759
+
1760
+ @media all and (max-width: 980px) {
1761
+
1762
+ .umap-main-edit-toolbox .umap-user span,
1763
+ .leaflet-container .leaflet-control-edit-save span,
1764
+ .leaflet-container .leaflet-control-edit-disable span,
1765
+ .leaflet-container .leaflet-control-edit-cancel span {
1766
+ display: none;
1767
+ }
1768
+ .umap-main-edit-toolbox .umap-help-button {
1769
+ display: none;
1770
+ }
1771
+ .umap-main-edit-toolbox .umap-user {
1772
+ margin-right: 10px;
1773
+ }
1774
+ .umap-main-edit-toolbox .umap-user:after {
1775
+ display: none;
1776
+ }
1777
+ }
1778
+ @media all and (max-width: 640px) {
1779
+ .umap-main-edit-toolbox .umap-user {
1780
+ display: none;
1781
+ }
1782
+
1783
+ .umap-main-edit-toolbox .map-name {
1784
+ max-width: 150px;
1785
+ }
1786
+ }
1787
+ @media all and (max-width: 480px) {
1788
+
1789
+ .umap-main-edit-toolbox .share-status {
1790
+ display: none;
1791
+ }
1792
+
1793
+ .umap-main-edit-toolbox .map-name {
1794
+ max-width: 100px;
1795
+ }
1796
+
1797
+ .leaflet-control-layers-expanded label {
1798
+ display: inline-block;
1799
+ margin-right: 10px;
1800
+ }
1801
+
1802
+ .leaflet-control-layers-expanded {
1803
+ margin-left: 10px;
1804
+ }
1805
+
1806
+ .umap-permanent-credits-container {
1807
+ max-width: 100%;
1808
+ }
1809
+ .umap-popup-large iframe {
1810
+ min-width: 300px;
1811
+ }
1812
+ .umap-popup-large .umap-popup-content {
1813
+ width: 300px;
1814
+ }
1815
+
1816
+ .attribution-toggle {
1817
+ display: inline-block;
1818
+ }
1819
+ .attribution-container {
1820
+ display: none;
1821
+ }
1822
+ .leaflet-control-attribution:active .attribution-container,
1823
+ .leaflet-control-attribution:hover .attribution-container {
1824
+ display: inline;
1825
+ background-color: #fff;
1826
+ }
1827
+ .leaflet-control-attribution:hover .attribution-toggle {
1828
+ display: none;
1829
+ }
1830
+
1831
+
1832
+ }
1833
+
1834
+ /* ****** */
1835
+ /* Print */
1836
+ /* ****** */
1837
+
1838
+ @media print {
1839
+
1840
+ .leaflet-control-container {
1841
+ display: none;
1842
+ }
1843
+ }