mapicgc-gl-js 0.0.20 → 0.0.22
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/LICENSE.md +26 -17
- package/README.md +30 -7
- package/assets/images/JS-logo.svg +4 -0
- package/assets/images/TS-logo.svg +6 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo.svg +64 -0
- package/assets/images/logo2.png +0 -0
- package/assets/images/maptiler-sdk-logo.svg +66 -0
- package/dist/mapicgc-gl.js +35 -35
- package/dist/mapicgc-gl.umd.js +35 -35
- package/package.json +3 -3
- package/src/map/Map.js +410 -2
- package/test/index.html +72 -16
package/LICENSE.md
CHANGED
|
@@ -1,21 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
BSD 3-Clause License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2024 unitatgeostart
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
All rights reserved.
|
|
11
6
|
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
Redistribution and use in source and binary forms, with or without
|
|
8
|
+
modification, are permitted provided that the following conditions are met:
|
|
14
9
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
11
|
+
list of conditions and the following disclaimer.
|
|
12
|
+
|
|
13
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
14
|
+
this list of conditions and the following disclaimer in the documentation
|
|
15
|
+
and/or other materials provided with the distribution.
|
|
16
|
+
|
|
17
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
18
|
+
contributors may be used to endorse or promote products derived from
|
|
19
|
+
this software without specific prior written permission.
|
|
20
|
+
|
|
21
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
22
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
23
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
24
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
25
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
26
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
27
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
28
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
29
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
30
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/README.md
CHANGED
|
@@ -1,17 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://betaserver.icgc.cat/cdn/mapicgc-gl-js/images/logo2.png" width="400px">
|
|
3
|
+
</p>
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="https://betaserver.icgc.cat/cdn/mapicgc-gl-js/images/JS-logo.svg" width="20px">
|
|
6
|
+
<img src="https://betaserver.icgc.cat//cdn/mapicgc-gl-js/images/TS-logo.svg" width="20px">
|
|
7
|
+
<img src="https://img.shields.io/npm/v/@unitatgeostart/mapicgc-gl-js"></img>
|
|
8
|
+
<img src="https://img.shields.io/twitter/follow/icgcat?style=social"></img>
|
|
9
|
+
</p>
|
|
4
10
|
|
|
5
11
|
<br>
|
|
6
|
-
|
|
12
|
+
Version 0.0.22
|
|
7
13
|
|
|
8
|
-
|
|
9
|
-
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# What and why?
|
|
17
|
+
The MapICGC GL JS library builds upon the MapLibre GL JS framework, exposing its existing capabilities while introducing new features specific to the MapICGC ecosystem. This library is tailored to seamlessly integrate with the MapICGC Cloud service, offering a comprehensive set of data to enhance web mapping experiences, including vector tiles, satellite raster tiles, DEM with Terrain RGB, and customizable styles with an editor.
|
|
18
|
+
|
|
19
|
+
**Why did we develop a new library?** Our goal is to simplify the development process for MapICGC developers! With MapICGC GL JS, you won't need to load external plugins for basic functionalities, deal with complex data source URLs, or search for syntax to enable 3D terrain every time you embark on a project. All these features are either built-in, loaded dynamically when necessary, or accessible through straightforward functions. While the SDK is opinionated, being closely tied to MapICGC Cloud data, its MapLibre core ensures 100% compatibility with other data sources..
|
|
20
|
+
|
|
21
|
+
Moreover, MapICGC GL JS provides well-documented and user-friendly wrapper functions for MapICGC Cloud API services, including geocoding, static maps, geolocation, and a coordinate reference system search engine for transforming coordinates between different CRSs.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
> 📣 *__Note:__* If you only need the API Client library for headless usage without map display, consider exploring the MapICGC Client JS library for both browser and NodeJS.
|
|
25
|
+
|
|
26
|
+
# Install
|
|
27
|
+
```shell
|
|
28
|
+
npm install --save @mapicgc-gl-js
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
# API documentation
|
|
32
|
+
In addition to the details and examples provided in this readme, check out:
|
|
10
33
|
|
|
11
34
|
- [Documentació de les funcions del Mapa (docu_Map.md)](docu_Map.md)
|
|
12
35
|
- [Documentació del plugin CompareMaps (docu_CompareMaps.md)](docu_CompareMaps.md)
|
|
13
36
|
|
|
14
|
-
|
|
37
|
+
|
|
15
38
|
|
|
16
39
|
### Com afegir la biblioteca a un projecte propi?
|
|
17
40
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 630 630">
|
|
2
|
+
<rect width="630" height="630" fill="#f7df1e"/>
|
|
3
|
+
<path d="m423.2 492.19c12.69 20.72 29.2 35.95 58.4 35.95 24.53 0 40.2-12.26 40.2-29.2 0-20.3-16.1-27.49-43.1-39.3l-14.8-6.35c-42.72-18.2-71.1-41-71.1-89.2 0-44.4 33.83-78.2 86.7-78.2 37.64 0 64.7 13.1 84.2 47.4l-46.1 29.6c-10.15-18.2-21.1-25.37-38.1-25.37-17.34 0-28.33 11-28.33 25.37 0 17.76 11 24.95 36.4 35.95l14.8 6.34c50.3 21.57 78.7 43.56 78.7 93 0 53.3-41.87 82.5-98.1 82.5-54.98 0-90.5-26.2-107.88-60.54zm-209.13 5.13c9.3 16.5 17.76 30.45 38.1 30.45 19.45 0 31.72-7.61 31.72-37.2v-201.3h59.2v202.1c0 61.3-35.94 89.2-88.4 89.2-47.4 0-74.85-24.53-88.81-54.075z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512" height="512" fill="none" version="1.1" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
3
|
+
<title>TypeScript logo</title>
|
|
4
|
+
<rect width="512" height="512" rx="0" fill="#3178c6"/>
|
|
5
|
+
<path d="m317 407v50c8.1 4.2 18 7.3 29 9.4s23 3.1 35 3.1c12 0 23-1.1 34-3.4 11-2.3 20-6.1 28-11 8.1-5.3 15-12 19-21s7.1-19 7.1-32c0-9.1-1.4-17-4.1-24s-6.6-13-12-18c-5.1-5.3-11-10-18-14s-15-8.2-24-12c-6.6-2.7-12-5.3-18-7.9-5.2-2.6-9.7-5.2-13-7.8-3.7-2.7-6.5-5.5-8.5-8.4-2-3-3-6.3-3-10 0-3.4 0.89-6.5 2.7-9.3s4.3-5.1 7.5-7.1c3.2-2 7.2-3.5 12-4.6 4.7-1.1 9.9-1.6 16-1.6 4.2 0 8.6 0.31 13 0.94 4.6 0.63 9.3 1.6 14 2.9 4.7 1.3 9.3 2.9 14 4.9 4.4 2 8.5 4.3 12 6.9v-47c-7.6-2.9-16-5.1-25-6.5s-19-2.1-31-2.1c-12 0-23 1.3-34 3.8s-20 6.5-28 12c-8.1 5.4-14 12-19 21-4.7 8.4-7 18-7 30 0 15 4.3 28 13 38 8.6 11 22 19 39 27 6.9 2.8 13 5.6 19 8.3s11 5.5 15 8.4c4.3 2.9 7.7 6.1 10 9.5 2.5 3.4 3.8 7.4 3.8 12 0 3.2-0.78 6.2-2.3 9s-3.9 5.2-7.1 7.2-7.1 3.6-12 4.8c-4.7 1.1-10 1.7-17 1.7-11 0-22-1.9-32-5.7-11-3.8-21-9.5-30-17zm-84-123h64v-41h-179v41h64v183h51z" clip-rule="evenodd" fill="#fff" fill-rule="evenodd" style="fill:#fff"/>
|
|
6
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1386.000000pt" height="522.000000pt" viewBox="0 0 1386.000000 522.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
|
|
8
|
+
<g transform="translate(0.000000,522.000000) scale(0.100000,-0.100000)"
|
|
9
|
+
fill="#000000" stroke="none">
|
|
10
|
+
<path d="M7182 5030 c-100 -26 -185 -74 -262 -147 -103 -97 -162 -212 -179
|
|
11
|
+
-352 -15 -122 10 -221 109 -418 l67 -133 -202 0 -201 0 -53 65 c-245 306 -686
|
|
12
|
+
398 -1031 213 -99 -53 -199 -135 -261 -214 l-51 -64 -148 0 c-141 0 -150 -1
|
|
13
|
+
-173 -22 -20 -19 -92 -251 -416 -1348 -215 -729 -391 -1338 -391 -1353 0 -15
|
|
14
|
+
9 -36 20 -47 20 -20 33 -20 2290 -20 2257 0 2270 0 2290 20 11 11 20 32 20 47
|
|
15
|
+
0 15 -177 624 -392 1353 -300 1014 -398 1330 -415 1348 -12 12 -33 22 -47 22
|
|
16
|
+
-24 0 -23 3 39 125 84 164 115 262 115 363 0 158 -54 285 -170 403 -150 152
|
|
17
|
+
-357 211 -558 159z m259 -146 c144 -43 246 -138 298 -278 66 -178 8 -329 -331
|
|
18
|
+
-868 -44 -71 -82 -128 -84 -128 -5 0 -226 358 -282 457 -73 127 -129 251 -148
|
|
19
|
+
327 -20 79 -8 167 33 255 31 66 110 153 171 188 102 60 236 78 343 47z m-1456
|
|
20
|
+
-699 c293 -75 507 -347 508 -645 0 -70 -5 -102 -32 -180 -38 -112 -131 -305
|
|
21
|
+
-231 -480 -121 -209 -413 -671 -420 -663 -21 24 -350 561 -425 693 -141 247
|
|
22
|
+
-222 431 -244 557 -21 112 18 289 91 410 70 117 211 236 337 284 130 49 282
|
|
23
|
+
58 416 24z m-945 -352 c0 -5 -9 -36 -20 -71 -11 -34 -24 -102 -30 -150 -19
|
|
24
|
+
-155 12 -274 140 -539 l79 -163 -295 0 c-162 0 -294 2 -294 5 0 3 59 205 131
|
|
25
|
+
448 71 243 132 450 135 460 5 14 18 17 80 17 41 0 74 -3 74 -7z m2075 -175
|
|
26
|
+
c61 -97 120 -187 131 -200 16 -18 29 -74 63 -273 23 -137 41 -256 41 -262 0
|
|
27
|
+
-10 -100 -13 -465 -13 l-464 0 75 153 c41 83 91 202 111 262 33 100 36 120 35
|
|
28
|
+
215 0 96 -12 165 -47 278 l-7 22 208 -2 208 -3 111 -177z m595 177 c0 -2 61
|
|
29
|
+
-210 135 -460 74 -251 135 -458 135 -460 0 -3 -108 -5 -239 -5 -220 0 -240 1
|
|
30
|
+
-245 18 -2 9 -23 132 -47 272 l-42 255 88 140 c166 264 152 245 185 245 16 0
|
|
31
|
+
30 -2 30 -5z m346 -1175 c18 -58 52 -174 77 -257 l45 -153 -284 0 c-156 0
|
|
32
|
+
-284 3 -284 8 0 4 -18 111 -40 237 -22 127 -40 240 -40 253 l0 22 247 -2 248
|
|
33
|
+
-3 31 -105z m-2737 57 c50 -88 374 -603 393 -624 20 -21 20 -23 3 -147 l-18
|
|
34
|
+
-126 -699 0 c-598 0 -699 2 -696 14 2 8 64 219 138 470 l135 456 360 0 360 0
|
|
35
|
+
24 -43z m2061 36 c0 -5 18 -111 40 -238 22 -126 40 -238 40 -247 0 -17 -41
|
|
36
|
+
-18 -719 -18 l-719 0 130 208 c71 114 142 228 156 254 l27 48 523 0 c287 0
|
|
37
|
+
522 -3 522 -7z m854 -695 c9 -29 60 -204 115 -388 l99 -335 -1074 -3 c-591 -1
|
|
38
|
+
-1557 -1 -2148 0 l-1074 3 30 100 c16 55 38 130 49 168 l20 67 754 0 c468 0
|
|
39
|
+
763 4 779 10 36 13 43 33 70 217 23 152 27 165 53 188 l28 24 1142 1 1142 0
|
|
40
|
+
15 -52z"/>
|
|
41
|
+
<path d="M7240 4695 c-105 -33 -183 -140 -183 -255 -2 -246 301 -364 465 -182
|
|
42
|
+
50 56 69 105 70 180 1 184 -174 312 -352 257z m134 -139 c95 -40 104 -177 16
|
|
43
|
+
-230 -61 -36 -155 -7 -180 55 -29 70 -5 138 61 171 41 22 59 22 103 4z"/>
|
|
44
|
+
<path d="M5668 3961 c-207 -67 -339 -250 -339 -472 -1 -240 174 -441 415 -479
|
|
45
|
+
262 -41 518 151 555 415 33 236 -111 465 -336 535 -84 26 -215 26 -295 1z
|
|
46
|
+
m289 -160 c106 -51 174 -140 192 -253 38 -237 -181 -442 -410 -384 -177 46
|
|
47
|
+
-287 207 -259 382 21 127 116 237 240 275 14 4 59 8 100 8 63 1 85 -4 137 -28z"/>
|
|
48
|
+
<path d="M4390 734 c-19 -8 -45 -25 -57 -36 l-23 -21 0 31 0 32 -80 0 -80 0 0
|
|
49
|
+
-230 0 -230 85 0 85 0 0 139 c0 125 2 141 21 165 23 29 60 34 83 10 13 -13 16
|
|
50
|
+
-42 16 -165 l0 -149 90 0 90 0 0 145 c0 132 2 147 20 165 25 25 62 26 83 2 14
|
|
51
|
+
-16 17 -43 17 -165 l0 -147 91 0 91 0 -4 183 c-3 160 -5 186 -23 216 -50 85
|
|
52
|
+
-183 95 -260 21 l-32 -31 -17 26 c-34 51 -125 70 -196 39z"/>
|
|
53
|
+
<path d="M5146 739 c-55 -13 -102 -52 -116 -95 -7 -19 -10 -37 -8 -39 2 -3 37
|
|
54
|
+
-9 77 -15 70 -10 74 -9 103 15 35 29 97 34 122 9 33 -32 15 -42 -139 -74 -90
|
|
55
|
+
-19 -115 -29 -143 -54 -60 -55 -50 -144 22 -191 57 -37 183 -29 248 16 33 24
|
|
56
|
+
35 24 42 -6 6 -24 9 -25 92 -25 66 0 83 3 77 13 -4 6 -10 84 -13 172 -6 187
|
|
57
|
+
-18 225 -84 259 -45 23 -214 32 -280 15z m194 -268 c0 -57 -47 -101 -108 -101
|
|
58
|
+
-34 0 -52 16 -52 46 0 28 9 34 85 55 77 22 75 22 75 0z"/>
|
|
59
|
+
<path d="M5860 739 c-14 -6 -37 -22 -52 -36 l-28 -27 0 32 0 32 -80 0 -80 0 0
|
|
60
|
+
-315 0 -315 85 0 85 0 0 104 0 103 47 -23 c56 -29 113 -30 170 -5 111 51 146
|
|
61
|
+
244 68 377 -41 69 -140 103 -215 73z m55 -134 c22 -21 25 -33 25 -93 0 -55 -4
|
|
62
|
+
-75 -21 -96 -42 -54 -115 -18 -126 62 -16 118 56 193 122 127z"/>
|
|
63
|
+
</g>
|
|
64
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg width="100%" height="100%" viewBox="0 0 215 41" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
+
<g transform="matrix(1,0,0,1,-9.41979e-05,0.000178727)">
|
|
5
|
+
<g transform="matrix(1,0,0,1,-1.20801,-0.711928)">
|
|
6
|
+
<path d="M58.567,28.139L58.567,20.497C58.567,18.616 57.566,16.908 55.595,16.908C53.654,16.908 52.508,18.616 52.508,20.497L52.508,28.139L48.922,28.139L48.922,13.84L52.244,13.84L52.508,15.578C53.273,14.129 54.949,13.609 56.33,13.609C58.066,13.609 59.8,14.304 60.624,16.271C61.918,14.245 63.595,13.667 65.476,13.667C69.593,13.667 71.622,16.155 71.622,20.44L71.622,28.139L68.034,28.139L68.034,20.44C68.034,18.559 67.24,16.966 65.301,16.966C63.359,16.966 62.153,18.616 62.153,20.497L62.153,28.139L58.567,28.139Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
7
|
+
<path d="M86.765,13.87L90.206,13.87L90.206,28.139L86.824,28.139L86.647,26.056C85.825,27.734 83.561,28.543 81.943,28.573C77.651,28.603 74.474,25.997 74.474,20.989C74.474,16.069 77.798,13.493 82.033,13.522C83.973,13.522 85.824,14.419 86.647,15.838L86.765,13.87ZM78.062,20.989C78.062,23.71 79.973,25.331 82.355,25.331C88,25.331 88,16.677 82.355,16.677C79.973,16.677 78.062,18.269 78.062,20.989Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
8
|
+
<path d="M93.236,34.105L93.236,13.87L96.589,13.87L96.822,15.838C97.94,14.245 99.882,13.551 101.528,13.551C105.996,13.551 108.968,16.822 108.968,21.019C108.968,25.187 106.291,28.487 101.645,28.487C100.118,28.487 97.852,28.023 96.822,26.461L96.822,34.104L93.236,34.104L93.236,34.105ZM105.381,21.019C105.381,18.791 103.851,16.966 101.264,16.966C98.676,16.966 97.146,18.791 97.146,21.019C97.146,23.247 98.823,25.073 101.264,25.073C103.705,25.073 105.381,23.247 105.381,21.019Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
9
|
+
<path d="M115.378,9.528L115.378,13.84L120.319,13.84L120.319,15.026L115.378,15.026L115.378,23.739C115.378,25.679 115.791,27.04 118.055,27.04C118.76,27.04 119.554,26.808 120.289,26.461L120.789,27.617C119.877,28.054 118.965,28.342 118.055,28.342C114.968,28.342 113.967,26.547 113.967,23.74L113.967,15.027L110.879,15.027L110.879,13.84L113.967,13.84L113.967,9.672L115.378,9.528Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
10
|
+
<path d="M125.554,9.18C125.554,10.685 123.23,10.685 123.23,9.18C123.23,7.675 125.554,7.675 125.554,9.18ZM123.643,13.782L123.643,28.14L125.082,28.14L125.082,13.782L123.643,13.782Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
11
|
+
<rect x="129.199" y="7.878" width="1.441" height="20.261" style="fill:rgb(51,51,89);"/>
|
|
12
|
+
<path d="M153.488,13.84L153.547,16.389C154.459,14.448 156.518,13.696 158.37,13.696C159.459,13.667 160.515,13.956 161.486,14.536L160.839,15.693C160.076,15.23 159.221,15.027 158.37,15.027C155.663,15.057 153.576,17.198 153.576,19.804L153.576,28.14L152.135,28.14L152.135,13.84L153.488,13.84Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
13
|
+
<path d="M135.54,23.414C135.541,23.415 135.543,23.417 135.543,23.418L147.303,20.354C147.302,20.349 147.302,20.345 147.302,20.341L135.54,23.414Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
14
|
+
<path d="M141.214,27.28C138.654,27.28 136.461,25.701 135.543,23.458L135.535,23.458L135.542,23.457C135.542,23.456 135.541,23.455 135.54,23.454L147.301,20.38C147.301,20.385 147.302,20.389 147.302,20.394L148.555,20.068C148.049,16.446 144.956,13.658 141.214,13.658C137.12,13.658 133.802,16.996 133.802,21.113C133.802,25.23 137.12,28.569 141.214,28.569C144.276,28.569 146.905,26.7 148.035,24.037L146.855,23.532C145.921,25.734 143.747,27.28 141.214,27.28ZM135.083,21.113C135.083,17.708 137.828,14.946 141.214,14.946C143.862,14.946 146.117,16.634 146.976,18.999L135.16,22.085C135.11,21.768 135.083,21.444 135.083,21.113Z" style="fill:rgb(51,51,89);fill-rule:nonzero;"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g transform="matrix(1,0,0,1,-1.20801,-0.711928)">
|
|
17
|
+
<path d="M11.965,33.743C14.023,35.769 19.5,41.264 19.497,41.269C19.477,41.305 24.938,35.908 27.113,33.768L19.526,26.3L11.965,33.743Z" style="fill:rgb(58,24,136);fill-rule:nonzero;"/>
|
|
18
|
+
<path d="M19.526,26.3L27.113,33.768C27.124,33.756 27.138,33.741 27.15,33.731L34.73,26.27L27.143,18.802L19.526,26.3Z" style="fill:rgb(3,161,196);fill-rule:nonzero;"/>
|
|
19
|
+
<path d="M34.73,26.27L34.749,26.25C38.942,22.123 38.945,15.435 34.762,11.302L27.144,18.802L34.73,26.27Z" style="fill:rgb(5,208,223);fill-rule:nonzero;"/>
|
|
20
|
+
<path d="M11.908,18.802L4.349,26.243C4.351,26.245 4.352,26.248 4.355,26.25L11.953,33.73C11.957,33.734 11.961,33.738 11.966,33.743L19.526,26.3L11.908,18.802Z" style="fill:rgb(118,31,232);fill-rule:nonzero;"/>
|
|
21
|
+
<path d="M19.526,11.303L27.143,18.802L34.762,11.303C34.755,11.298 34.753,11.295 34.749,11.29L27.15,3.81C27.149,3.808 27.146,3.806 27.144,3.804L19.526,11.303Z" style="fill:rgb(255,170,1);fill-rule:nonzero;"/>
|
|
22
|
+
<path d="M4.317,11.328C0.161,15.46 0.172,22.124 4.349,26.243L11.908,18.802L4.317,11.328Z" style="fill:rgb(241,23,93);fill-rule:nonzero;"/>
|
|
23
|
+
<path d="M19.526,11.303L11.934,3.829L4.355,11.29C4.341,11.303 4.33,11.317 4.316,11.329L11.908,18.802L19.526,11.303Z" style="fill:rgb(251,58,27);fill-rule:nonzero;"/>
|
|
24
|
+
<path d="M27.144,3.804C22.946,-0.321 16.148,-0.319 11.953,3.81L11.934,3.829L19.526,11.303L27.144,3.804Z" style="fill:rgb(251,201,53);fill-rule:nonzero;"/>
|
|
25
|
+
</g>
|
|
26
|
+
<g>
|
|
27
|
+
<g transform="matrix(1.45413,0,0,1,-169.409,0.0892285)">
|
|
28
|
+
<clipPath id="_clip1">
|
|
29
|
+
<path d="M230.883,4.272L251.826,12.076L247.87,34.519L226.928,26.715L230.883,4.272Z"/>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<g clip-path="url(#_clip1)">
|
|
32
|
+
<path d="M270.382,12.81L232.413,12.81C231.562,12.81 230.871,13.815 230.871,15.052L230.871,25.472C230.871,26.692 231.552,27.683 232.391,27.683L270.382,27.683L270.382,12.81Z" style="fill:rgb(251,58,27);"/>
|
|
33
|
+
</g>
|
|
34
|
+
</g>
|
|
35
|
+
<g transform="matrix(0.364213,0,0,0.364213,-18.0413,0.200674)">
|
|
36
|
+
<g transform="matrix(30.2678,0,0,30.2678,514.098,66.0889)">
|
|
37
|
+
<path d="M0.158,-0.238C0.158,-0.211 0.163,-0.187 0.172,-0.168C0.181,-0.149 0.194,-0.133 0.211,-0.121C0.228,-0.108 0.247,-0.099 0.269,-0.094C0.29,-0.088 0.314,-0.085 0.339,-0.085C0.366,-0.085 0.39,-0.088 0.409,-0.095C0.428,-0.101 0.444,-0.109 0.456,-0.119C0.468,-0.129 0.477,-0.14 0.482,-0.154C0.487,-0.167 0.49,-0.18 0.49,-0.193C0.49,-0.22 0.484,-0.241 0.472,-0.254C0.459,-0.267 0.446,-0.276 0.431,-0.281C0.406,-0.29 0.376,-0.299 0.343,-0.308C0.309,-0.316 0.267,-0.327 0.218,-0.34C0.187,-0.348 0.162,-0.359 0.142,-0.372C0.121,-0.385 0.105,-0.399 0.093,-0.415C0.081,-0.431 0.073,-0.448 0.068,-0.466C0.063,-0.484 0.06,-0.502 0.06,-0.521C0.06,-0.557 0.068,-0.588 0.083,-0.615C0.097,-0.641 0.117,-0.663 0.142,-0.68C0.167,-0.697 0.195,-0.71 0.226,-0.719C0.257,-0.727 0.289,-0.731 0.321,-0.731C0.358,-0.731 0.393,-0.726 0.427,-0.717C0.46,-0.707 0.489,-0.692 0.514,-0.673C0.539,-0.654 0.558,-0.63 0.573,-0.602C0.588,-0.573 0.595,-0.54 0.595,-0.503L0.47,-0.503C0.467,-0.549 0.451,-0.582 0.423,-0.601C0.395,-0.62 0.359,-0.629 0.316,-0.629C0.301,-0.629 0.286,-0.628 0.271,-0.625C0.256,-0.622 0.242,-0.616 0.229,-0.61C0.216,-0.603 0.206,-0.593 0.198,-0.581C0.189,-0.569 0.185,-0.554 0.185,-0.536C0.185,-0.511 0.193,-0.491 0.209,-0.477C0.224,-0.462 0.245,-0.451 0.27,-0.444C0.273,-0.443 0.283,-0.44 0.302,-0.436C0.32,-0.431 0.34,-0.425 0.363,-0.419C0.386,-0.413 0.408,-0.407 0.43,-0.402C0.451,-0.396 0.467,-0.392 0.476,-0.389C0.499,-0.382 0.52,-0.372 0.537,-0.359C0.554,-0.346 0.569,-0.332 0.581,-0.316C0.592,-0.299 0.601,-0.282 0.607,-0.263C0.612,-0.244 0.615,-0.226 0.615,-0.207C0.615,-0.167 0.607,-0.133 0.591,-0.105C0.574,-0.076 0.553,-0.053 0.526,-0.035C0.499,-0.017 0.469,-0.004 0.435,0.005C0.401,0.013 0.366,0.017 0.331,0.017C0.29,0.017 0.252,0.012 0.216,0.002C0.18,-0.008 0.149,-0.023 0.122,-0.044C0.095,-0.065 0.074,-0.091 0.058,-0.124C0.042,-0.156 0.034,-0.194 0.033,-0.238L0.158,-0.238Z" style="fill:white;fill-rule:nonzero;"/>
|
|
38
|
+
</g>
|
|
39
|
+
<g transform="matrix(30.2678,0,0,30.2678,533.712,66.0889)">
|
|
40
|
+
<path d="M0.076,-0.714L0.372,-0.714C0.427,-0.714 0.474,-0.705 0.514,-0.686C0.554,-0.667 0.587,-0.642 0.612,-0.61C0.637,-0.577 0.656,-0.539 0.669,-0.496C0.681,-0.453 0.687,-0.406 0.687,-0.357C0.687,-0.308 0.681,-0.261 0.669,-0.218C0.656,-0.175 0.637,-0.137 0.612,-0.105C0.587,-0.072 0.554,-0.047 0.514,-0.028C0.474,-0.009 0.427,-0 0.372,-0L0.076,-0L0.076,-0.714ZM0.201,-0.102L0.324,-0.102C0.373,-0.102 0.413,-0.109 0.444,-0.122C0.474,-0.135 0.499,-0.153 0.517,-0.176C0.534,-0.199 0.546,-0.226 0.553,-0.257C0.559,-0.288 0.562,-0.321 0.562,-0.357C0.562,-0.393 0.559,-0.427 0.553,-0.458C0.546,-0.489 0.534,-0.516 0.517,-0.539C0.499,-0.562 0.474,-0.58 0.444,-0.593C0.413,-0.606 0.373,-0.612 0.324,-0.612L0.201,-0.612L0.201,-0.102Z" style="fill:white;fill-rule:nonzero;"/>
|
|
41
|
+
</g>
|
|
42
|
+
<g transform="matrix(30.2678,0,0,30.2678,555.565,66.0889)">
|
|
43
|
+
<path d="M0.076,-0.714L0.201,-0.714L0.201,-0.389L0.519,-0.714L0.673,-0.714L0.388,-0.429L0.693,-0L0.537,-0L0.303,-0.341L0.201,-0.24L0.201,-0L0.076,-0L0.076,-0.714Z" style="fill:white;fill-rule:nonzero;"/>
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
<g transform="matrix(1,0,0,1,-21,0)">
|
|
48
|
+
<g transform="matrix(-1.1073,-1.35605e-16,1.40521e-16,-1.14744,491.39,43.567)">
|
|
49
|
+
<clipPath id="_clip2">
|
|
50
|
+
<path d="M222.883,26.693L244.255,31.978L249.737,11.334L228.365,6.049L222.883,26.693Z"/>
|
|
51
|
+
</clipPath>
|
|
52
|
+
<g clip-path="url(#_clip2)">
|
|
53
|
+
<path d="M270.382,12.81L233.848,12.81C232.205,12.81 230.871,14.097 230.871,15.683L230.871,24.808C230.871,26.395 232.206,27.683 233.85,27.683L270.382,27.683L270.382,12.81Z" style="fill:rgb(251,201,53);"/>
|
|
54
|
+
</g>
|
|
55
|
+
</g>
|
|
56
|
+
<g transform="matrix(0.364213,0,0,0.364213,32.4999,0.200674)">
|
|
57
|
+
<g transform="matrix(30.2678,0,0,30.2678,514.098,66.0889)">
|
|
58
|
+
<path d="M0.461,-0.23C0.461,-0.199 0.458,-0.168 0.453,-0.139C0.448,-0.11 0.437,-0.083 0.421,-0.06C0.404,-0.037 0.381,-0.018 0.35,-0.004C0.319,0.01 0.277,0.017 0.226,0.017C0.188,0.017 0.156,0.011 0.129,-0.001C0.102,-0.012 0.08,-0.028 0.063,-0.049C0.046,-0.069 0.033,-0.093 0.025,-0.121C0.017,-0.149 0.013,-0.179 0.013,-0.212L0.013,-0.25L0.138,-0.25L0.138,-0.213C0.138,-0.172 0.145,-0.141 0.159,-0.119C0.172,-0.096 0.198,-0.085 0.236,-0.085C0.256,-0.085 0.273,-0.088 0.286,-0.094C0.299,-0.1 0.309,-0.109 0.317,-0.121C0.324,-0.132 0.329,-0.147 0.332,-0.164C0.335,-0.181 0.336,-0.201 0.336,-0.223L0.336,-0.714L0.461,-0.714L0.461,-0.23Z" style="fill:white;fill-rule:nonzero;"/>
|
|
59
|
+
</g>
|
|
60
|
+
<g transform="matrix(30.2678,0,0,30.2678,530.352,66.0889)">
|
|
61
|
+
<path d="M0.158,-0.238C0.158,-0.211 0.163,-0.187 0.172,-0.168C0.181,-0.149 0.194,-0.133 0.211,-0.121C0.228,-0.108 0.247,-0.099 0.269,-0.094C0.29,-0.088 0.314,-0.085 0.339,-0.085C0.366,-0.085 0.39,-0.088 0.409,-0.095C0.428,-0.101 0.444,-0.109 0.456,-0.119C0.468,-0.129 0.477,-0.14 0.482,-0.154C0.487,-0.167 0.49,-0.18 0.49,-0.193C0.49,-0.22 0.484,-0.241 0.472,-0.254C0.459,-0.267 0.446,-0.276 0.431,-0.281C0.406,-0.29 0.376,-0.299 0.343,-0.308C0.309,-0.316 0.267,-0.327 0.218,-0.34C0.187,-0.348 0.162,-0.359 0.142,-0.372C0.121,-0.385 0.105,-0.399 0.093,-0.415C0.081,-0.431 0.073,-0.448 0.068,-0.466C0.063,-0.484 0.06,-0.502 0.06,-0.521C0.06,-0.557 0.068,-0.588 0.083,-0.615C0.097,-0.641 0.117,-0.663 0.142,-0.68C0.167,-0.697 0.195,-0.71 0.226,-0.719C0.257,-0.727 0.289,-0.731 0.321,-0.731C0.358,-0.731 0.393,-0.726 0.427,-0.717C0.46,-0.707 0.489,-0.692 0.514,-0.673C0.539,-0.654 0.558,-0.63 0.573,-0.602C0.588,-0.573 0.595,-0.54 0.595,-0.503L0.47,-0.503C0.467,-0.549 0.451,-0.582 0.423,-0.601C0.395,-0.62 0.359,-0.629 0.316,-0.629C0.301,-0.629 0.286,-0.628 0.271,-0.625C0.256,-0.622 0.242,-0.616 0.229,-0.61C0.216,-0.603 0.206,-0.593 0.198,-0.581C0.189,-0.569 0.185,-0.554 0.185,-0.536C0.185,-0.511 0.193,-0.491 0.209,-0.477C0.224,-0.462 0.245,-0.451 0.27,-0.444C0.273,-0.443 0.283,-0.44 0.302,-0.436C0.32,-0.431 0.34,-0.425 0.363,-0.419C0.386,-0.413 0.408,-0.407 0.43,-0.402C0.451,-0.396 0.467,-0.392 0.476,-0.389C0.499,-0.382 0.52,-0.372 0.537,-0.359C0.554,-0.346 0.569,-0.332 0.581,-0.316C0.592,-0.299 0.601,-0.282 0.607,-0.263C0.612,-0.244 0.615,-0.226 0.615,-0.207C0.615,-0.167 0.607,-0.133 0.591,-0.105C0.574,-0.076 0.553,-0.053 0.526,-0.035C0.499,-0.017 0.469,-0.004 0.435,0.005C0.401,0.013 0.366,0.017 0.331,0.017C0.29,0.017 0.252,0.012 0.216,0.002C0.18,-0.008 0.149,-0.023 0.122,-0.044C0.095,-0.065 0.074,-0.091 0.058,-0.124C0.042,-0.156 0.034,-0.194 0.033,-0.238L0.158,-0.238Z" style="fill:white;fill-rule:nonzero;"/>
|
|
62
|
+
</g>
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
</g>
|
|
66
|
+
</svg>
|