@teeechina/teee-map 0.0.37 → 0.1.0
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.
- package/README.md +0 -3
- package/dist/index.cjs +34 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1388 -0
- package/dist/index.d.ts +1388 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/package.json +80 -33
- package/dist/.vite/license.md +0 -406
- package/dist/teee-map.css +0 -2
- package/dist/teee-map.mjs +0 -53084
- package/dist/teee-map.umd.js +0 -1284
- package/index.d.ts +0 -525
package/package.json
CHANGED
|
@@ -1,33 +1,80 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@teeechina/teee-map",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@teeechina/teee-map",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "基于 maplibre-gl 封装的业务地图 SDK,面向太昌 GIS 业务流提供开箱即用的地图初始化、图层管理、要素状态控制及加密瓦片支持。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"./cluster": {
|
|
21
|
+
"import": {
|
|
22
|
+
"types": "./dist/cluster.d.ts",
|
|
23
|
+
"default": "./dist/cluster.js"
|
|
24
|
+
},
|
|
25
|
+
"require": {
|
|
26
|
+
"types": "./dist/cluster.d.cts",
|
|
27
|
+
"default": "./dist/cluster.cjs"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"sideEffects": false,
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"maplibre-gl": "^5.0.0 || ^6.0.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "tsup --watch",
|
|
40
|
+
"build": "rimraf dist && tsup",
|
|
41
|
+
"typecheck": "tsc --build",
|
|
42
|
+
"lint": "eslint src/",
|
|
43
|
+
"format": "prettier --write src/",
|
|
44
|
+
"docs": "typedoc --out docs/api src/index.ts",
|
|
45
|
+
"prepublishOnly": "pnpm typecheck && pnpm build",
|
|
46
|
+
"pub": "npm publish"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"Maplibre GL",
|
|
50
|
+
"TeeeMap"
|
|
51
|
+
],
|
|
52
|
+
"author": "gaogy",
|
|
53
|
+
"license": "ISC",
|
|
54
|
+
"packageManager": "pnpm@10.33.0",
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@mapbox/vector-tile": "^3.0.0",
|
|
60
|
+
"@turf/turf": "^7.4.0",
|
|
61
|
+
"maplibre-gl": "^6.9.0",
|
|
62
|
+
"pbf": "^5.1.2"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@eslint/js": "^10.0.1",
|
|
66
|
+
"@types/geojson": "^7946.0.16",
|
|
67
|
+
"@types/node": "^22.20.2",
|
|
68
|
+
"eslint": "^10.10.0",
|
|
69
|
+
"eslint-config-prettier": "^10.1.8",
|
|
70
|
+
"eslint-plugin-import-x": "^4.17.1",
|
|
71
|
+
"eslint-plugin-unicorn": "^74.0.0",
|
|
72
|
+
"globals": "^17.12.0",
|
|
73
|
+
"prettier": "^3.9.6",
|
|
74
|
+
"rimraf": "^6.1.3",
|
|
75
|
+
"tsup": "^8.5.1",
|
|
76
|
+
"typedoc": "^0.28.20",
|
|
77
|
+
"typescript": "^5.9.3",
|
|
78
|
+
"typescript-eslint": "^8.70.0"
|
|
79
|
+
}
|
|
80
|
+
}
|
package/dist/.vite/license.md
DELETED
|
@@ -1,406 +0,0 @@
|
|
|
1
|
-
# Licenses
|
|
2
|
-
|
|
3
|
-
The app bundles dependencies which contain the following licenses:
|
|
4
|
-
|
|
5
|
-
## @mapbox/point-geometry - 1.1.0 (ISC)
|
|
6
|
-
|
|
7
|
-
Copyright (c) 2024, Mapbox
|
|
8
|
-
|
|
9
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
10
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
11
|
-
copyright notice and this permission notice appear in all copies.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
14
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
15
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
16
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
17
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
18
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
19
|
-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
20
|
-
|
|
21
|
-
## @mapbox/vector-tile - 2.0.4 (BSD-3-Clause)
|
|
22
|
-
|
|
23
|
-
Copyright (c) 2024, Mapbox
|
|
24
|
-
|
|
25
|
-
All rights reserved.
|
|
26
|
-
|
|
27
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
28
|
-
are permitted provided that the following conditions are met:
|
|
29
|
-
|
|
30
|
-
* Redistributions of source code must retain the above copyright notice,
|
|
31
|
-
this list of conditions and the following disclaimer.
|
|
32
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
33
|
-
this list of conditions and the following disclaimer in the documentation
|
|
34
|
-
and/or other materials provided with the distribution.
|
|
35
|
-
* Neither the name of Mapbox nor the names of its contributors
|
|
36
|
-
may be used to endorse or promote products derived from this software
|
|
37
|
-
without specific prior written permission.
|
|
38
|
-
|
|
39
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
40
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
41
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
42
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
43
|
-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
44
|
-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
45
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
46
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
47
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
48
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
49
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
50
|
-
|
|
51
|
-
## @turf/area - 7.3.5 (MIT)
|
|
52
|
-
|
|
53
|
-
The MIT License (MIT)
|
|
54
|
-
|
|
55
|
-
Copyright (c) 2017 TurfJS
|
|
56
|
-
|
|
57
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
58
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
59
|
-
the Software without restriction, including without limitation the rights to
|
|
60
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
61
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
62
|
-
subject to the following conditions:
|
|
63
|
-
|
|
64
|
-
The above copyright notice and this permission notice shall be included in all
|
|
65
|
-
copies or substantial portions of the Software.
|
|
66
|
-
|
|
67
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
68
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
69
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
70
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
71
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
72
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
73
|
-
|
|
74
|
-
## @turf/bbox - 7.3.5 (MIT)
|
|
75
|
-
|
|
76
|
-
The MIT License (MIT)
|
|
77
|
-
|
|
78
|
-
Copyright (c) 2017 TurfJS
|
|
79
|
-
|
|
80
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
81
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
82
|
-
the Software without restriction, including without limitation the rights to
|
|
83
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
84
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
85
|
-
subject to the following conditions:
|
|
86
|
-
|
|
87
|
-
The above copyright notice and this permission notice shall be included in all
|
|
88
|
-
copies or substantial portions of the Software.
|
|
89
|
-
|
|
90
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
91
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
92
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
93
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
94
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
95
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
96
|
-
|
|
97
|
-
## @turf/distance - 7.3.5 (MIT)
|
|
98
|
-
|
|
99
|
-
The MIT License (MIT)
|
|
100
|
-
|
|
101
|
-
Copyright (c) 2017 TurfJS
|
|
102
|
-
|
|
103
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
104
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
105
|
-
the Software without restriction, including without limitation the rights to
|
|
106
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
107
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
108
|
-
subject to the following conditions:
|
|
109
|
-
|
|
110
|
-
The above copyright notice and this permission notice shall be included in all
|
|
111
|
-
copies or substantial portions of the Software.
|
|
112
|
-
|
|
113
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
114
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
115
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
116
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
117
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
118
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
119
|
-
|
|
120
|
-
## @turf/helpers - 7.3.5 (MIT)
|
|
121
|
-
|
|
122
|
-
The MIT License (MIT)
|
|
123
|
-
|
|
124
|
-
Copyright (c) 2017 TurfJS
|
|
125
|
-
|
|
126
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
127
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
128
|
-
the Software without restriction, including without limitation the rights to
|
|
129
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
130
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
131
|
-
subject to the following conditions:
|
|
132
|
-
|
|
133
|
-
The above copyright notice and this permission notice shall be included in all
|
|
134
|
-
copies or substantial portions of the Software.
|
|
135
|
-
|
|
136
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
137
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
138
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
139
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
140
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
141
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
142
|
-
|
|
143
|
-
## @turf/invariant - 7.3.5 (MIT)
|
|
144
|
-
|
|
145
|
-
The MIT License (MIT)
|
|
146
|
-
|
|
147
|
-
Copyright (c) 2017 TurfJS
|
|
148
|
-
|
|
149
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
150
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
151
|
-
the Software without restriction, including without limitation the rights to
|
|
152
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
153
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
154
|
-
subject to the following conditions:
|
|
155
|
-
|
|
156
|
-
The above copyright notice and this permission notice shall be included in all
|
|
157
|
-
copies or substantial portions of the Software.
|
|
158
|
-
|
|
159
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
160
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
161
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
162
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
163
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
164
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
165
|
-
|
|
166
|
-
## @turf/length - 7.3.5 (MIT)
|
|
167
|
-
|
|
168
|
-
The MIT License (MIT)
|
|
169
|
-
|
|
170
|
-
Copyright (c) 2017 TurfJS
|
|
171
|
-
|
|
172
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
173
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
174
|
-
the Software without restriction, including without limitation the rights to
|
|
175
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
176
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
177
|
-
subject to the following conditions:
|
|
178
|
-
|
|
179
|
-
The above copyright notice and this permission notice shall be included in all
|
|
180
|
-
copies or substantial portions of the Software.
|
|
181
|
-
|
|
182
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
183
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
184
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
185
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
186
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
187
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
188
|
-
|
|
189
|
-
## @turf/meta - 7.3.5 (MIT)
|
|
190
|
-
|
|
191
|
-
The MIT License (MIT)
|
|
192
|
-
|
|
193
|
-
Copyright (c) 2017 TurfJS
|
|
194
|
-
|
|
195
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
196
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
197
|
-
the Software without restriction, including without limitation the rights to
|
|
198
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
199
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
200
|
-
subject to the following conditions:
|
|
201
|
-
|
|
202
|
-
The above copyright notice and this permission notice shall be included in all
|
|
203
|
-
copies or substantial portions of the Software.
|
|
204
|
-
|
|
205
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
206
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
207
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
208
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
209
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
210
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
211
|
-
|
|
212
|
-
## @turf/nearest-point-on-line - 7.3.5 (MIT)
|
|
213
|
-
|
|
214
|
-
The MIT License (MIT)
|
|
215
|
-
|
|
216
|
-
Copyright (c) 2017 TurfJS
|
|
217
|
-
|
|
218
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
219
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
220
|
-
the Software without restriction, including without limitation the rights to
|
|
221
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
222
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
223
|
-
subject to the following conditions:
|
|
224
|
-
|
|
225
|
-
The above copyright notice and this permission notice shall be included in all
|
|
226
|
-
copies or substantial portions of the Software.
|
|
227
|
-
|
|
228
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
229
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
230
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
231
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
232
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
233
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
234
|
-
|
|
235
|
-
## @watergis/maplibre-gl-terradraw - 1.13.1 (MIT)
|
|
236
|
-
|
|
237
|
-
MIT License
|
|
238
|
-
|
|
239
|
-
Copyright (c) 2024 Jin Igarashi
|
|
240
|
-
|
|
241
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
242
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
243
|
-
in the Software without restriction, including without limitation the rights
|
|
244
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
245
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
246
|
-
furnished to do so, subject to the following conditions:
|
|
247
|
-
|
|
248
|
-
The above copyright notice and this permission notice shall be included in all
|
|
249
|
-
copies or substantial portions of the Software.
|
|
250
|
-
|
|
251
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
252
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
253
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
254
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
255
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
256
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
257
|
-
SOFTWARE.
|
|
258
|
-
|
|
259
|
-
## maplibre-gl - 0.0.0
|
|
260
|
-
|
|
261
|
-
Copyright (c) 2023, MapLibre contributors
|
|
262
|
-
|
|
263
|
-
All rights reserved.
|
|
264
|
-
|
|
265
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
266
|
-
are permitted provided that the following conditions are met:
|
|
267
|
-
|
|
268
|
-
* Redistributions of source code must retain the above copyright notice,
|
|
269
|
-
this list of conditions and the following disclaimer.
|
|
270
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
271
|
-
this list of conditions and the following disclaimer in the documentation
|
|
272
|
-
and/or other materials provided with the distribution.
|
|
273
|
-
* Neither the name of MapLibre GL JS nor the names of its contributors
|
|
274
|
-
may be used to endorse or promote products derived from this software
|
|
275
|
-
without specific prior written permission.
|
|
276
|
-
|
|
277
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
278
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
279
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
280
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
281
|
-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
282
|
-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
283
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
284
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
285
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
286
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
287
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
-------------------------------------------------------------------------------
|
|
291
|
-
|
|
292
|
-
Contains code from mapbox-gl-js v1.13 and earlier
|
|
293
|
-
|
|
294
|
-
Version v1.13 of mapbox-gl-js and earlier are licensed under a BSD-3-Clause license
|
|
295
|
-
|
|
296
|
-
Copyright (c) 2020, Mapbox
|
|
297
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
298
|
-
are permitted provided that the following conditions are met:
|
|
299
|
-
|
|
300
|
-
* Redistributions of source code must retain the above copyright notice,
|
|
301
|
-
this list of conditions and the following disclaimer.
|
|
302
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
303
|
-
this list of conditions and the following disclaimer in the documentation
|
|
304
|
-
and/or other materials provided with the distribution.
|
|
305
|
-
* Neither the name of Mapbox GL JS nor the names of its contributors
|
|
306
|
-
may be used to endorse or promote products derived from this software
|
|
307
|
-
without specific prior written permission.
|
|
308
|
-
|
|
309
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
310
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
311
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
312
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
313
|
-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
314
|
-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
315
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
316
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
317
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
318
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
319
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
-------------------------------------------------------------------------------
|
|
323
|
-
|
|
324
|
-
Contains code from glfx.js
|
|
325
|
-
|
|
326
|
-
Copyright (C) 2011 by Evan Wallace
|
|
327
|
-
|
|
328
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
329
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
330
|
-
in the Software without restriction, including without limitation the rights
|
|
331
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
332
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
333
|
-
furnished to do so, subject to the following conditions:
|
|
334
|
-
|
|
335
|
-
The above copyright notice and this permission notice shall be included in
|
|
336
|
-
all copies or substantial portions of the Software.
|
|
337
|
-
|
|
338
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
339
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
340
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
341
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
342
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
343
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
344
|
-
THE SOFTWARE.
|
|
345
|
-
|
|
346
|
-
--------------------------------------------------------------------------------
|
|
347
|
-
|
|
348
|
-
Contains a portion of d3-color https://github.com/d3/d3-color
|
|
349
|
-
|
|
350
|
-
Copyright 2010-2016 Mike Bostock
|
|
351
|
-
All rights reserved.
|
|
352
|
-
|
|
353
|
-
Redistribution and use in source and binary forms, with or without modification,
|
|
354
|
-
are permitted provided that the following conditions are met:
|
|
355
|
-
|
|
356
|
-
* Redistributions of source code must retain the above copyright notice, this
|
|
357
|
-
list of conditions and the following disclaimer.
|
|
358
|
-
|
|
359
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
360
|
-
this list of conditions and the following disclaimer in the documentation
|
|
361
|
-
and/or other materials provided with the distribution.
|
|
362
|
-
|
|
363
|
-
* Neither the name of the author nor the names of contributors may be used to
|
|
364
|
-
endorse or promote products derived from this software without specific prior
|
|
365
|
-
written permission.
|
|
366
|
-
|
|
367
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
368
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
369
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
370
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
371
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
372
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
373
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
374
|
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
375
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
376
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
377
|
-
|
|
378
|
-
## pbf - 4.0.1 (BSD-3-Clause)
|
|
379
|
-
|
|
380
|
-
Copyright (c) 2024, Mapbox
|
|
381
|
-
All rights reserved.
|
|
382
|
-
|
|
383
|
-
Redistribution and use in source and binary forms, with or without
|
|
384
|
-
modification, are permitted provided that the following conditions are met:
|
|
385
|
-
|
|
386
|
-
* Redistributions of source code must retain the above copyright notice, this
|
|
387
|
-
list of conditions and the following disclaimer.
|
|
388
|
-
|
|
389
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
|
390
|
-
this list of conditions and the following disclaimer in the documentation
|
|
391
|
-
and/or other materials provided with the distribution.
|
|
392
|
-
|
|
393
|
-
* Neither the name of pbf nor the names of its
|
|
394
|
-
contributors may be used to endorse or promote products derived from
|
|
395
|
-
this software without specific prior written permission.
|
|
396
|
-
|
|
397
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
398
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
399
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
400
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
401
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
402
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
403
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
404
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
405
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
406
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/dist/teee-map.css
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.maplibregl-terradraw-render-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M200-200h57l391-391-57-57-391 391zm-80 80v-170l528-527q12-11 26.5-17t30.5-6 31 6 26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L290-120zm640-584-56-56zm-141 85-28-29 57 57z'/%3E%3C/svg%3E") 50%/90% no-repeat}.maplibregl-terradraw-render-button.enabled{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='m622-453-56-56 82-82-57-57-82 82-56-56 195-195q12-12 26.5-17.5T705-840t31 6 26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647zM200-200h57l195-195-28-29-29-28-195 195zM792-56 509-338 290-120H120v-169l219-219L56-792l57-57 736 736zm-32-648-56-56zm-169 56 57 57zM424-424l-29-28 57 57z'/%3E%3C/svg%3E") 0 0/100%}.maplibregl-terradraw-measure-render-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M2.063 51.733a4.127 4.127 0 0 0-1.51 5.637l18.34 31.768a4.127 4.127 0 0 0 5.638 1.51l73.406-42.38a4.127 4.127 0 0 0 1.51-5.638l-18.34-31.768a4.127 4.127 0 0 0-5.638-1.51Zm7.701 5.084 66.258-38.254 14.214 24.62-4.775 2.757-5.327-9.229-3.574 2.064 5.327 9.228-5.465 3.156-5.328-9.229-3.574 2.064 5.328 9.228-5.459 3.152-5.328-9.229-3.574 2.064 5.328 9.228-5.465 3.156-7.404-12.823-3.574 2.063 7.404 12.823-5.466 3.156-5.328-9.229-3.574 2.064 5.328 9.228-5.459 3.151-5.327-9.228-3.574 2.064 5.327 9.228-5.465 3.155-5.328-9.228-3.574 2.064 5.328 9.228-3.686 2.128z' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto'/%3E%3C/svg%3E") 50%/100% no-repeat}.maplibregl-terradraw-measure-render-button.enabled{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M2.063 51.733a4.127 4.127 0 0 0-1.51 5.637l18.34 31.768a4.127 4.127 0 0 0 5.638 1.51l73.406-42.38a4.127 4.127 0 0 0 1.51-5.638l-18.34-31.768a4.127 4.127 0 0 0-5.638-1.51Zm7.701 5.084 66.258-38.254 14.214 24.62-4.775 2.757-5.327-9.229-3.574 2.064 5.327 9.228-5.465 3.156-5.328-9.229-3.574 2.064 5.328 9.228-5.459 3.152-5.328-9.229-3.574 2.064 5.328 9.228-5.465 3.156-7.404-12.823-3.574 2.063 7.404 12.823-5.466 3.156-5.328-9.229-3.574 2.064 5.328 9.228-5.459 3.151-5.327-9.228-3.574 2.064 5.327 9.228-5.465 3.155-5.328-9.228-3.574 2.064 5.328 9.228-3.686 2.128z' style='color:%235f6368;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%235f6368;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%235f6368;solid-opacity:1;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.33333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto'/%3E%3Cpath stroke='%235f6368' stroke-linecap='round' stroke-width='8' d='m10 10 80 80'/%3E%3C/svg%3E") 0 0/100%}.maplibregl-terradraw-valhalla-render-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M480-80q-50 0-85-35t-35-85q0-5 .5-11t1.5-11l-83-47q-16 14-36 21.5t-43 7.5q-50 0-85-35t-35-85 35-85 85-35q24 0 45 9t38 25l119-60q-3-23 2.5-45t19.5-41l-34-52q-7 2-14.5 3t-15.5 1q-50 0-85-35t-35-85 35-85 85-35 85 35 35 85q0 20-6.5 38.5T456-688l35 52q8-2 15-3t15-1q17 0 32 4t29 12l66-54q-4-10-6-20.5t-2-21.5q0-50 35-85t85-35 85 35 35 85-35 85-85 35q-17 0-32-4.5T699-617l-66 55q4 10 6 20.5t2 21.5q0 50-35 85t-85 35q-24 0-45.5-9T437-434l-118 59q2 9 1.5 18t-2.5 18l84 48q16-14 35.5-21.5T480-320q50 0 85 35t35 85-35 85-85 35M200-320q17 0 28.5-11.5T240-360t-11.5-28.5T200-400t-28.5 11.5T160-360t11.5 28.5T200-320m160-400q17 0 28.5-11.5T400-760t-11.5-28.5T360-800t-28.5 11.5T320-760t11.5 28.5T360-720m120 560q17 0 28.5-11.5T520-200t-11.5-28.5T480-240t-28.5 11.5T440-200t11.5 28.5T480-160m40-320q17 0 28.5-11.5T560-520t-11.5-28.5T520-560t-28.5 11.5T480-520t11.5 28.5T520-480m240-200q17 0 28.5-11.5T800-720t-11.5-28.5T760-760t-28.5 11.5T720-720t11.5 28.5T760-680'/%3E%3C/svg%3E") 50%/100% no-repeat}.maplibregl-terradraw-valhalla-render-button.enabled{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M480-80q-50 0-85-35t-35-85q0-5 .5-11t1.5-11l-83-47q-16 14-36 21.5t-43 7.5q-50 0-85-35t-35-85 35-85 85-35q24 0 45 9t38 25l119-60q-3-23 2.5-45t19.5-41l-34-52q-7 2-14.5 3t-15.5 1q-50 0-85-35t-35-85 35-85 85-35 85 35 35 85q0 20-6.5 38.5T456-688l35 52q8-2 15-3t15-1q17 0 32 4t29 12l66-54q-4-10-6-20.5t-2-21.5q0-50 35-85t85-35 85 35 35 85-35 85-85 35q-17 0-32-4.5T699-617l-66 55q4 10 6 20.5t2 21.5q0 50-35 85t-85 35q-24 0-45.5-9T437-434l-118 59q2 9 1.5 18t-2.5 18l84 48q16-14 35.5-21.5T480-320q50 0 85 35t35 85-35 85-85 35M200-320q17 0 28.5-11.5T240-360t-11.5-28.5T200-400t-28.5 11.5T160-360t11.5 28.5T200-320m160-400q17 0 28.5-11.5T400-760t-11.5-28.5T360-800t-28.5 11.5T320-760t11.5 28.5T360-720m120 560q17 0 28.5-11.5T520-200t-11.5-28.5T480-240t-28.5 11.5T440-200t11.5 28.5T480-160m40-320q17 0 28.5-11.5T560-520t-11.5-28.5T520-560t-28.5 11.5T480-520t11.5 28.5T520-480m240-200q17 0 28.5-11.5T800-720t-11.5-28.5T760-760t-28.5 11.5T720-720t11.5 28.5T760-680'/%3E%3Cpath stroke='%235f6368' stroke-linecap='round' stroke-width='96' d='m100-860 760 760'/%3E%3C/svg%3E") 0 0/100%}.maplibregl-terradraw-add-point-button,.maplibregl-terradraw-measure-add-point-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 37.45c-6.89 0-12.55 5.66-12.55 12.549 0 6.89 5.66 12.55 12.55 12.55 6.655 0 12.112-5.294 12.48-11.862a3.5 3.5 0 0 0 .07-.688 3.5 3.5 0 0 0-.07-.691C62.11 42.74 56.653 37.45 50 37.45m0 7c3.107 0 5.55 2.442 5.55 5.549s-2.443 5.55-5.55 5.55-5.55-2.443-5.55-5.55S46.892 44.45 50 44.45' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000'/%3E%3C/svg%3E") 50%/150% no-repeat}.maplibregl-terradraw-valhalla-add-time-isochrone-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M299.5-148Q234-176 185-225t-77-114.5T80-480t28-140.5T185-735t114.5-77T440-840q21 0 40.5 2.5T520-830v82q-20-6-39.5-9t-40.5-3q-118 0-199 81t-81 199 81 199 199 81 199-81 81-199q0-11-1-20t-3-20h82q2 11 2 20v20q0 75-28 140.5T695-225t-114.5 77T440-120t-140.5-28M552-312 400-464v-216h80v184l128 128zm168-288v-120H600v-80h120v-120h80v120h120v80H800v120z'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-valhalla-add-distance-isochrone-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M428-284q-5-4-7-10-14-42-34-70t-40-54-33.5-54-13.5-68q0-58 41-99t99-41 99 41 41 99q0 40-13.5 68T533-418t-40 54-34 70q-2 6-7 10t-12 4-12-4m12-108q9-14 18-26t17-23q23-30 34-50t11-49q0-33-23.5-56.5T440-620t-56.5 23.5T360-540q0 29 11 49t34 50q8 11 17 23t18 26m35.5-112.5Q490-519 490-540t-14.5-35.5T440-590t-35.5 14.5T390-540t14.5 35.5T440-490t35.5-14.5M440-120q-150 0-255-105T80-480q0-75 28.5-140.5t77-114 114-77T440-840t140.5 28.5 114 77 77 114T800-480v8l53-54 57 56-150 150-150-150 57-56 53 53v-7q0-116-82-198t-198-82-198 82-82 198q1 116 82.5 198T440-200q57 0 107-21.5t88-58.5l57 57q-49 48-113.5 75.5T440-120m0-420'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-marker-button,.maplibregl-terradraw-measure-add-marker-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50.002 0C30.763 0 15 15.718 15 34.902c0 7.432 2.374 14.34 6.392 20.019L45.73 96.994c3.409 4.453 5.675 3.607 8.51-.235l26.843-45.683c.542-.981.967-2.026 1.338-3.092A34.45 34.45 0 0 0 85 34.902C85 15.718 69.24 0 50.002 0m0 16.354c10.359 0 18.597 8.218 18.597 18.548s-8.238 18.544-18.597 18.544S31.4 45.231 31.4 34.902 39.642 16.354 50 16.354' style='fill:%235f6368;stroke-width:4.26019'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-linestring-button,.maplibregl-terradraw-measure-add-linestring-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M32.55 11C25.662 11 20 16.661 20 23.55c0 3.887 1.802 7.38 4.61 9.688L14.481 54.166A12.3 12.3 0 0 0 12.551 54C5.66 54 0 59.661 0 66.55S5.661 79.1 12.55 79.1c6.652 0 12.106-5.288 12.48-11.852a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697c-.196-3.441-1.797-6.522-4.225-8.684L31.049 36c.494.06.993.1 1.502.1 4.613 0 8.647-2.546 10.812-6.295l17.807 4.707c.934 5.845 5.95 10.384 12.002 10.568l7.006 21.356C77.052 68.726 75 72.412 75 76.55 75 83.44 80.661 89.1 87.55 89.1c6.652 0 12.106-5.288 12.48-11.852a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C99.655 69.29 94.201 64 87.55 64c-.266 0-.527.022-.79.04l-6.805-20.743c3.451-2.09 5.832-5.797 6.074-10.049a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C85.656 25.29 80.202 20 73.551 20c-5.1 0-9.519 3.106-11.475 7.512l-17.02-4.5-.027-.158C44.656 16.29 39.202 11 32.551 11m0 7c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S27 26.657 27 23.55 29.444 18 32.55 18m41 9c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S68 35.657 68 32.55 70.444 27 73.55 27m-61 34c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S7 69.657 7 66.55 9.444 61 12.55 61m75 10c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S82 79.657 82 76.55 84.444 71 87.55 71' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-valhalla-add-routing-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M21 32C9.459 32 0 41.43 0 52.94c0 4.46 1.424 8.605 3.835 12.012l14.603 25.244c2.045 2.672 3.405 2.165 5.106-.14l16.106-27.41c.325-.59.58-1.216.803-1.856A20.7 20.7 0 0 0 42 52.94C42 41.43 32.544 32 21 32m0 9.812c6.216 0 11.16 4.931 11.16 11.129S27.215 64.068 21 64.068c-6.215 0-11.16-4.93-11.16-11.127S14.786 41.812 21 41.812' style='fill:%235f6368;stroke-width:2.55612'/%3E%3Cpath d='M87.75 0C81.018 0 75.5 5.501 75.5 12.216c0 2.601.83 5.019 2.237 7.006l8.519 14.726c1.193 1.558 1.986 1.262 2.978-.082l9.395-15.99c.19-.343.339-.708.468-1.082.58-1.416.903-2.961.903-4.578C100 5.5 94.484 0 87.75 0m0 5.724c3.626 0 6.51 2.876 6.51 6.492s-2.884 6.49-6.51 6.49-6.51-2.875-6.51-6.49 2.885-6.492 6.51-6.492' style='fill:%235f6368;stroke-width:1.49107'/%3E%3Cpath d='M88.209 37.412c-2.247.05-4.5.145-6.757.312l.348 5.532a126 126 0 0 1 6.513-.303zm-11.975.82c-3.47.431-6.97 1.045-10.43 2.032l1.303 5.361c3.144-.896 6.402-1.475 9.711-1.886zM60.623 42.12a24.5 24.5 0 0 0-3.004 1.583l-.004.005-.006.002c-1.375.866-2.824 1.965-4.007 3.562-.857 1.157-1.558 2.62-1.722 4.35l5.095.565c.038-.406.246-.942.62-1.446h.002v-.002c.603-.816 1.507-1.557 2.582-2.235l.004-.002a20 20 0 0 1 2.388-1.256zM58 54.655l-3.303 4.235c.783.716 1.604 1.266 2.397 1.726l.01.005.01.006c2.632 1.497 5.346 2.342 7.862 3.144l1.446-5.318c-2.515-.802-4.886-1.576-6.918-2.73-.582-.338-1.092-.691-1.504-1.068m13.335 5.294-1.412 5.327.668.208.82.262c2.714.883 5.314 1.826 7.638 3.131l2.358-4.92c-2.81-1.579-5.727-2.611-8.538-3.525l-.008-.002-.842-.269zm14.867 7.7-3.623 3.92c.856.927 1.497 2.042 1.809 3.194l.002.006.002.009c.372 1.345.373 2.927.082 4.525l5.024 1.072c.41-2.256.476-4.733-.198-7.178-.587-2.162-1.707-4.04-3.098-5.548zM82.72 82.643a12 12 0 0 1-1.826 1.572h-.002c-1.8 1.266-3.888 2.22-6.106 3.04l1.654 5.244c2.426-.897 4.917-1.997 7.245-3.635l.006-.005.003-.002a17 17 0 0 0 2.639-2.287zm-12.64 6.089c-3.213.864-6.497 1.522-9.821 2.08l.784 5.479c3.421-.575 6.856-1.262 10.27-2.18zm-14.822 2.836c-3.346.457-6.71.83-10.084 1.148l.442 5.522c3.426-.322 6.858-.701 10.285-1.17zm-15.155 1.583c-3.381.268-6.77.486-10.162.67l.256 5.536c3.425-.185 6.853-.406 10.28-.678zm-15.259.92c-2.033.095-4.071.173-6.114.245l.168 5.541c2.051-.072 4.107-.151 6.166-.246z' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.32769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:10.6553,5.32768999999999959;stroke-dashoffset:52.2114;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000;stop-opacity:1'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-polygon-button,.maplibregl-terradraw-measure-add-polygon-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M32.5 10.95c-6.89 0-12.55 5.66-12.55 12.55 0 4.02 1.935 7.613 4.91 9.916L14.815 54.172a12.4 12.4 0 0 0-2.316-.223C5.61 53.95-.05 59.61-.05 66.5S5.61 79.05 12.5 79.05c5.13 0 9.54-3.151 11.463-7.603l51.277 7.71c1.232 5.629 6.281 9.894 12.26 9.894 6.656 0 12.114-5.297 12.48-11.867a3.5 3.5 0 0 0 .07-.684 3.5 3.5 0 0 0-.071-.7c-.375-6.562-5.829-11.85-12.479-11.85-.134 0-.264.015-.396.019L80.242 43.05c3.275-2.127 5.509-5.746 5.738-9.867a3.5 3.5 0 0 0 .07-.684 3.5 3.5 0 0 0-.071-.7c-.375-6.562-5.829-11.85-12.479-11.85-5.062 0-9.452 3.06-11.43 7.415l-17.082-4.517-.01-.047c-.374-6.563-5.828-11.852-12.478-11.852m0 7c3.107 0 5.55 2.443 5.55 5.55s-2.443 5.55-5.55 5.55-5.55-2.443-5.55-5.55 2.443-5.55 5.55-5.55m41 9c3.107 0 5.55 2.443 5.55 5.55s-2.443 5.55-5.55 5.55-5.55-2.443-5.55-5.55 2.443-5.55 5.55-5.55m-30.137 2.708 17.739 4.69C62.007 40.37 67.239 45.05 73.5 45.05l.033-.002 6.92 21.092a12.7 12.7 0 0 0-4.705 6.015l-50.916-7.654a12.6 12.6 0 0 0-3.787-7.13l10.342-21.378c.368.033.737.057 1.113.057 4.652 0 8.71-2.592 10.863-6.393M12.5 60.95c3.107 0 5.55 2.444 5.55 5.551s-2.443 5.55-5.55 5.55-5.55-2.443-5.55-5.55 2.443-5.55 5.55-5.55m75 10c3.107 0 5.55 2.444 5.55 5.551s-2.443 5.55-5.55 5.55-5.55-2.443-5.55-5.55 2.443-5.55 5.55-5.55' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.9987;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-rectangle-button,.maplibregl-terradraw-measure-add-rectangle-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M12.55 15C5.662 15 0 20.661 0 27.55c0 6.017 4.317 11.096 10 12.286v20.428c-5.683 1.19-10 6.27-10 12.287C0 79.44 5.661 85.1 12.55 85.1c6.047 0 11.09-4.374 12.241-10.1h50.455c1.152 5.732 6.253 10.1 12.305 10.1 6.65 0 12.105-5.288 12.478-11.852a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C99.703 66.117 95.495 61.356 90 60.246V39.854c5.495-1.11 9.703-5.87 10.03-11.606a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C99.655 20.29 94.201 15 87.55 15c-6.016 0-11.096 4.317-12.286 10H24.77c-1.19-5.676-6.209-10-12.22-10m0 7c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S7 30.657 7 27.55 9.444 22 12.55 22m75 0c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S82 30.657 82 27.55 84.444 22 87.55 22M24.218 32h51.62A12.68 12.68 0 0 0 83 39.225v21.65A12.68 12.68 0 0 0 75.875 68h-51.7A12.64 12.64 0 0 0 17 60.838V39.262A12.64 12.64 0 0 0 24.217 32M12.55 67c3.106 0 5.549 2.444 5.549 5.55 0 3.107-2.443 5.55-5.55 5.55S7 75.657 7 72.55 9.444 67 12.55 67m75 0c3.106 0 5.549 2.444 5.549 5.55 0 3.107-2.443 5.55-5.55 5.55S82 75.657 82 72.55 84.444 67 87.55 67' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:188.976;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-angled-rectangle-button,.maplibregl-terradraw-measure-add-angled-rectangle-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M12.55 15C5.662 15 0 20.661 0 27.55c0 6.017 4.317 11.096 10 12.286v20.428c-5.683 1.19-10 6.27-10 12.287C0 79.44 5.661 85.1 12.55 85.1c6.047 0 11.09-4.374 12.241-10.1h50.455c1.152 5.732 6.253 10.1 12.305 10.1 6.65 0 12.105-5.288 12.478-11.852a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C99.703 66.117 95.495 61.356 90 60.246V39.854c5.495-1.11 9.703-5.87 10.03-11.606a3.5 3.5 0 0 0 .07-.697 3.5 3.5 0 0 0-.07-.697C99.655 20.29 94.201 15 87.55 15c-6.016 0-11.096 4.317-12.286 10H24.77c-1.19-5.676-6.209-10-12.22-10m0 7c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S7 30.657 7 27.55 9.444 22 12.55 22m75 0c3.107 0 5.55 2.444 5.55 5.55 0 3.107-2.443 5.55-5.55 5.55S82 30.657 82 27.55 84.444 22 87.55 22M24.218 32h51.62A12.68 12.68 0 0 0 83 39.225v21.65A12.68 12.68 0 0 0 75.875 68h-51.7A12.64 12.64 0 0 0 17 60.838V39.262A12.64 12.64 0 0 0 24.217 32M12.55 67c3.106 0 5.549 2.444 5.549 5.55 0 3.107-2.443 5.55-5.55 5.55S7 75.657 7 72.55 9.444 67 12.55 67m75 0c3.106 0 5.549 2.444 5.549 5.55 0 3.107-2.443 5.55-5.55 5.55S82 75.657 82 72.55 84.444 67 87.55 67' style='color:%235f6368;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%235f6368;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%235f6368;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:188.976;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%235f6368' transform='rotate(45 24.393 60.607)scale(.7)'/%3E%3C/svg%3E") 50%/100% no-repeat}.maplibregl-terradraw-add-circle-button,.maplibregl-terradraw-measure-add-circle-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 5C25.189 5 5 25.189 5 50s20.189 45 45 45 45-20.189 45-45S74.811 5 50 5m0 7c21.028 0 38 16.972 38 38S71.028 88 50 88 12 71.028 12 50s16.972-38 38-38m-2.732 27.5v7.768H39.5v5.464h7.768V60.5h5.464v-7.768H60.5v-5.464h-7.768V39.5z' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%235f6368;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.00024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;stop-color:%23000'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-freehand-button,.maplibregl-terradraw-measure-add-freehand-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M160-120v-170l527-526q12-12 27-18t30-6q16 0 30.5 6t25.5 18l56 56q12 11 18 25.5t6 30.5q0 15-6 30t-18 27L330-120zm80-80h56l393-392-28-29-29-28-392 393zm560-503-57-57zm-139 82-29-28 57 57zM560-120q74 0 137-37t63-103q0-36-19-62t-51-45l-59 59q23 10 36 22t13 26q0 23-36.5 41.5T560-200q-17 0-28.5 11.5T520-160t11.5 28.5T560-120M183-426l60-60q-20-8-31.5-16.5T200-520q0-12 18-24t76-37q88-38 117-69t29-70q0-55-44-87.5T280-840q-45 0-80.5 16T145-785q-11 13-9 29t15 26q13 11 29 9t27-13q14-14 31-20t42-6q41 0 60.5 12t19.5 28q0 14-17.5 25.5T262-654q-80 35-111 63.5T120-520q0 32 17 54.5t46 39.5'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-freehand-linestring-button,.maplibregl-terradraw-measure-add-freehand-linestring-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M554-120q-54 0-91-37t-37-89q0-76 61.5-137.5T641-460q-3-36-18-54.5T582-533q-30 0-65 25t-83 82q-78 93-114.5 121T241-277q-51 0-86-38t-35-92 23.5-110.5T223-653q19-26 28-44t9-29q0-7-2.5-10.5T250-740q-10 0-25 12.5T190-689l-70-71q32-39 65-59.5t65-20.5q46 0 78 32t32 80q0 29-15 64t-50 84q-38 54-56.5 95T220-413q0 17 5.5 26.5T241-377t17.5-5.5T286-409q13-14 31-34.5t44-50.5q63-75 114-107t107-32q67 0 110 45t49 123h99v100h-99q-8 112-58.5 178.5T554-120m2-100q32 0 54-36.5T640-358q-46 11-80 43.5T526-250q0 14 8 22t22 8'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-select-button,.maplibregl-terradraw-measure-add-select-button,.maplibregl-terradraw-valhalla-add-select-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='m320-410 79-110h170L320-716zM551-80 406-392 240-160v-720l560 440H516l144 309zM399-520'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-select-button:disabled,.maplibregl-terradraw-measure-add-select-button:disabled,.maplibregl-terradraw-valhalla-add-select-button:disabled{background-color:#ebebe4}.maplibregl-terradraw-add-sensor-button,.maplibregl-terradraw-measure-add-sensor-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M175.45-140.59q-51.785-40.919-59.523-106.935-7.737-66.016 33.182-117.8 40.919-51.785 106.935-59.523 66.016-7.737 117.8 33.182 51.785 40.919 59.523 106.935 7.737 66.016-33.182 117.8-40.919 51.785-106.935 59.523-66.016 7.737-117.8-33.182m49.598-62.769q25.892 20.46 58.9 16.59 33.009-3.868 53.468-29.76t16.59-58.9q-3.868-33.009-29.76-53.468t-58.9-16.591q-33.009 3.869-53.468 29.761t-16.59 58.9 29.76 53.468M202.07-751.713l-12.193-79.733q112.533-11.766 224.386 19.265t207.576 106.67 151.777 177.283 70.63 213.85l-80.392 6.574q-14.169-96.588-61.7-183.214-47.53-86.626-129.914-151.725-82.385-65.098-177.654-91.31-95.27-26.21-192.516-17.66m362.292 460.884q-9.394-55.855-38.434-106.203t-77.685-88.788-103.953-54.739-112.604-13.144l-12.193-79.733q73.368-5.751 145.259 15.368 71.89 21.12 133.09 69.479t97.978 113.107q36.78 64.748 48.149 137.458zm-289.715 24.7'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibregl-terradraw-add-sector-button,.maplibregl-terradraw-measure-add-sector-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M720-160q0-116-44-218T556-556 378-676t-218-44v-80q132 0 248.5 50.5T612-612t137.5 203.5T800-160z'/%3E%3Cpath d='M160.376-731.677h81.356v564.897h-81.356z' style='stroke-width:39.5568'/%3E%3Cpath d='M160.457-237.664H731.6v77.288H160.457Z' style='stroke-width:40.058'/%3E%3C/svg%3E") 50%/100% no-repeat}.maplibregl-terradraw-add-control,.maplibregl-terradraw-measure-add-control,.maplibregl-terradraw-valhalla-add-control{display:block}.maplibregl-terradraw-add-control.hidden,.maplibregl-terradraw-measure-add-control.hidden,.maplibregl-terradraw-valhalla-add-control.hidden{display:none}.maplibregl-terradraw-add-control.active,.maplibregl-terradraw-measure-add-control.active,.maplibregl-terradraw-valhalla-add-control.active{background-color:#fbc412}.maplibregl-terradraw-delete-button,.maplibregl-terradraw-measure-delete-button,.maplibregl-terradraw-valhalla-delete-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120zm400-600H280v520h400zM360-280h80v-360h-80zm160 0h80v-360h-80zM280-720v520z'/%3E%3C/svg%3E") 50%/90% no-repeat}.maplibregl-terradraw-delete-button:disabled,.maplibregl-terradraw-measure-delete-button:disabled,.maplibregl-terradraw-valhalla-delete-button:disabled{background-color:#ebebe4}.maplibregl-terradraw-delete-selection-button,.maplibregl-terradraw-measure-delete-selection-button,.maplibregl-terradraw-valhalla-delete-selection-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='m500-120-56-56 142-142-142-142 56-56 142 142 142-142 56 56-142 142 142 142-56 56-142-142zm-220 0v-80h80v80zm-80-640h-80q0-33 23.5-56.5T200-840zm80 0v-80h80v80zm160 0v-80h80v80zm160 0v-80h80v80zm160 0v-80q33 0 56.5 23.5T840-760zM200-200v80q-33 0-56.5-23.5T120-200zm-80-80v-80h80v80zm0-160v-80h80v80zm0-160v-80h80v80zm640 0v-80h80v80z'/%3E%3C/svg%3E") 50%/90% no-repeat;display:block}.maplibregl-terradraw-delete-selection-button.hidden-delete-selection,.maplibregl-terradraw-measure-delete-selection-button.hidden-delete-selection,.maplibregl-terradraw-valhalla-delete-selection-button.hidden-delete-selection{display:none}.maplibregl-terradraw-download-button,.maplibregl-terradraw-measure-download-button,.maplibregl-terradraw-valhalla-download-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M480-320 280-520l56-58 104 104v-326h80v326l104-104 56 58zM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160z'/%3E%3C/svg%3E") 50%/90% no-repeat}.maplibregl-terradraw-download-button:disabled,.maplibregl-terradraw-measure-download-button:disabled,.maplibregl-terradraw-valhalla-download-button:disabled{background-color:#ebebe4}.maplibregl-terradraw-measure-undo-button,.maplibregl-terradraw-undo-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M280-200v-80h284q63 0 109.5-40T720-420t-46.5-100T564-560H312l104 104-56 56-200-200 200-200 56 56-104 104h252q97 0 166.5 63T800-420t-69.5 157T564-200z'/%3E%3C/svg%3E") 50%/90% no-repeat}.maplibregl-terradraw-measure-undo-button:disabled,.maplibregl-terradraw-undo-button:disabled{background-color:#ebebe4}.maplibregl-terradraw-measure-redo-button,.maplibregl-terradraw-redo-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M396-200q-97 0-166.5-63T160-420t69.5-157T396-640h252L544-744l56-56 200 200-200 200-56-56 104-104H396q-63 0-109.5 40T240-420t46.5 100T396-280h284v80z'/%3E%3C/svg%3E") 50%/90% no-repeat}.maplibregl-terradraw-measure-redo-button:disabled,.maplibregl-terradraw-redo-button:disabled{background-color:#ebebe4}.maplibregl-terradraw-valhalla-settings-button{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%235f6368' viewBox='0 -960 960 960'%3E%3Cpath d='M440-120v-240h80v80h320v80H520v80zm-320-80v-80h240v80zm160-160v-80H120v-80h160v-80h80v240zm160-80v-80h400v80zm160-160v-240h80v80h160v80H680v80zm-480-80v-80h400v80z'/%3E%3C/svg%3E") 50%/80% no-repeat}.maplibre-terradraw-delete-confirmation-dialog,.maplibregl-terradraw-valhalla-settings-dialog{text-align:center;border:none;border-radius:.5rem;width:fit-content;margin:0;padding:0;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 5px 10px #0003}.maplibre-terradraw-delete-confirmation-dialog::backdrop,.maplibregl-terradraw-valhalla-settings-dialog::backdrop{-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px)}.maplibre-terradraw-delete-confirmation-dialog::backdrop,.maplibre-terradraw-delete-confirmation-dialog[open],.maplibregl-terradraw-valhalla-settings-dialog::backdrop,.maplibregl-terradraw-valhalla-settings-dialog[open]{animation:.3s fadeIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.maplibre-terradraw-delete-confirmation-dialog .dialog-header,.maplibregl-terradraw-valhalla-settings-dialog .dialog-header{color:#fff;background-color:#222;border-top-left-radius:.5rem;border-top-right-radius:.5rem;justify-content:space-between;align-items:center;padding:1rem 1.5rem;display:flex}.maplibre-terradraw-delete-confirmation-dialog .dialog-header .dialog-title,.maplibregl-terradraw-valhalla-settings-dialog .dialog-header .dialog-title{margin:0;font-size:1.1rem;font-weight:600}.maplibre-terradraw-delete-confirmation-dialog .dialog-header .close-button,.maplibregl-terradraw-valhalla-settings-dialog .dialog-header .close-button{box-shadow:none;color:#fff;cursor:pointer;background:0 0;border:none;border-radius:50%;outline:none;width:2rem;height:2rem;font-size:1.2rem;font-weight:700;line-height:1;transition:background-color .2s}.maplibre-terradraw-delete-confirmation-dialog .dialog-header .close-button:hover,.maplibregl-terradraw-valhalla-settings-dialog .dialog-header .close-button:hover{background-color:#ffffff1a}.maplibre-terradraw-delete-confirmation-dialog .content,.maplibregl-terradraw-valhalla-settings-dialog .content{flex-direction:column;gap:1.5rem;padding:1.5rem;display:flex}.maplibre-terradraw-delete-confirmation-dialog{min-width:300px;max-width:400px}.maplibre-terradraw-delete-confirmation-dialog .content p{color:#333;margin:0;font-size:1rem;line-height:1.5}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons{justify-content:flex-end;gap:.75rem;margin-top:.5rem;display:flex}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons button{cursor:pointer;border:none;border-radius:.25rem;padding:.5rem 1.5rem;font-size:.9rem;font-weight:500;transition:all .2s}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons button.dialog-button-cancel{color:#333;background-color:#f5f5f5}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons button.dialog-button-cancel:hover{background-color:#e0e0e0}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons button.dialog-button-delete{color:#fff;background-color:#dc3545}.maplibre-terradraw-delete-confirmation-dialog .dialog-buttons button.dialog-button-delete:hover{background-color:#c82333}.maplibregl-terradraw-valhalla-settings-dialog .tab-container{flex-direction:column;gap:1rem;display:flex}.maplibregl-terradraw-valhalla-settings-dialog .tab-buttons{border-bottom:1px solid #ddd;display:flex}.maplibregl-terradraw-valhalla-settings-dialog .tab-button{color:#666;cursor:pointer;background-color:#0000;border:none;border-bottom:2px solid #0000;flex:1;padding:.75rem 1rem;font-size:.9rem;font-weight:500;transition:all .2s}.maplibregl-terradraw-valhalla-settings-dialog .tab-button.active{color:#222;border-bottom-color:#222}.maplibregl-terradraw-valhalla-settings-dialog .tab-button:hover{background-color:#f5f5f5}.maplibregl-terradraw-valhalla-settings-dialog .tab-content{display:none}.maplibregl-terradraw-valhalla-settings-dialog .tab-content.active{display:block}.maplibregl-terradraw-valhalla-settings-dialog .setting-section{flex-direction:column;gap:.5rem;display:flex}.maplibregl-terradraw-valhalla-settings-dialog .setting-label{text-align:left;margin-top:.5em;margin-bottom:.25em;font-size:1rem;font-weight:500}.maplibregl-terradraw-valhalla-settings-dialog .segment-buttons{border:1px solid #ddd;border-radius:.4rem;padding:.5rem;display:flex;overflow:hidden}.maplibregl-terradraw-valhalla-settings-dialog .segment-buttons .segment-button{color:#666;cursor:pointer;background-color:#0000;border:none;border-radius:.4rem;flex:1;padding:.25rem 1rem;font-size:.8rem;font-weight:500;transition:all .2s}.maplibregl-terradraw-valhalla-settings-dialog .segment-buttons .segment-button.active{color:#fff;background-color:#222}.maplibregl-terradraw-valhalla-settings-dialog .contours-table{flex-direction:column;gap:.5rem;display:flex}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element{border-collapse:collapse;border:1px solid #ddd;border-radius:.25rem;width:100%;overflow:hidden}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element td,.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element th{text-align:center;border-bottom:1px solid #eee;padding:.5rem}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element th{font-size:.85rem;font-weight:600}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element .color-picker{cursor:pointer;border:none;border-radius:.25rem;width:40px;height:30px}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element .number-input{text-align:center;border:1px solid #ddd;border-radius:.25rem;width:80px;padding:.25rem}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element .delete-button{box-shadow:none;cursor:pointer;background-color:#c3c3c3;border:none;border-radius:50%;outline:none;width:2rem;height:2rem;font-size:1.2rem;font-weight:700;line-height:1;transition:background-color .2s}.maplibregl-terradraw-valhalla-settings-dialog .contours-table-element .delete-button:hover{background-color:#0000004d}.maplibregl-terradraw-valhalla-settings-dialog .add-row-button{cursor:pointer;background-color:#c3c3c3;border-radius:.25rem;align-self:flex-start;padding:.5rem 1rem;font-size:.85rem}.maplibregl-terradraw-valhalla-settings-dialog .add-row-button:hover{background-color:#0000004d}
|
|
2
|
-
/*$vite$:1*/
|