aviation-chart 0.1.36 → 0.2.1

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.
Files changed (91) hide show
  1. package/CHANGES.md +0 -0
  2. package/README.md +170 -0
  3. package/dist/MapSDK.d.ts +128 -0
  4. package/dist/apis/index.d.ts +60 -0
  5. package/dist/constants/aviation-sources.d.ts +28 -0
  6. package/dist/constants/builtin-layers.d.ts +3 -0
  7. package/dist/index.d.ts +21 -0
  8. package/dist/layericons/Airport-Civil-Selected.png +0 -0
  9. package/dist/layericons/Airport-Joint-Selected.png +0 -0
  10. package/dist/layericons/Airport-Military-Selected.png +0 -0
  11. package/dist/layericons/NDB-Mandatory-Selected.png +0 -0
  12. package/dist/layericons/NDB-Optional-Selected.png +0 -0
  13. package/dist/layericons/VOR-Mandatory-S-Selected.png +0 -0
  14. package/dist/layericons/VOR-Optional-S-Selected.png +0 -0
  15. package/dist/layericons/Waypoint-Mandatory-Selected.png +0 -0
  16. package/dist/layericons/Waypoint-Optional-Selected.png +0 -0
  17. package/dist/layericons/adsb-airplane.png +0 -0
  18. package/dist/layericons/air-label-left1.png +0 -0
  19. package/dist/layericons/air-label-none1.png +0 -0
  20. package/dist/layericons/air-label-right1.png +0 -0
  21. package/dist/layericons/airport-civ.png +0 -0
  22. package/dist/layericons/airport-mil.png +0 -0
  23. package/dist/layericons/airport-milext.png +0 -0
  24. package/dist/layericons/airport-userfoc.png +0 -0
  25. package/dist/layericons/airspace-line.png +0 -0
  26. package/dist/layericons/border.png +0 -0
  27. package/dist/layericons/controlled copy.png +0 -0
  28. package/dist/layericons/controlled-line.png +0 -0
  29. package/dist/layericons/controlled.png +0 -0
  30. package/dist/layericons/designate_point_inway.png +0 -0
  31. package/dist/layericons/designate_point_notinway.png +0 -0
  32. package/dist/layericons/line-blue-pattenr.png +0 -0
  33. package/dist/layericons/line-blue-pattern.png +0 -0
  34. package/dist/layericons/ndb-inway.png +0 -0
  35. package/dist/layericons/ndb-notinway.png +0 -0
  36. package/dist/layericons/notam-fill.png +0 -0
  37. package/dist/layericons/place-label.png +0 -0
  38. package/dist/layericons/re-text-bg.png +0 -0
  39. package/dist/layericons/restricted-line.png +0 -0
  40. package/dist/layericons/restricted.png +0 -0
  41. package/dist/layericons/segment-both.png +0 -0
  42. package/dist/layericons/segment-left.png +0 -0
  43. package/dist/layericons/segment-right.png +0 -0
  44. package/dist/layericons/sprite.json +352 -0
  45. package/dist/layericons/sprite.png +0 -0
  46. package/dist/layericons/sprite@2x.json +352 -0
  47. package/dist/layericons/sprite@2x.png +0 -0
  48. package/dist/layericons/taix-text-bg.png +0 -0
  49. package/dist/layericons/text-bg-orange.png +0 -0
  50. package/dist/layericons/text-bg-t.png +0 -0
  51. package/dist/layericons/text-bg.png +0 -0
  52. package/dist/layericons/vor-inway.png +0 -0
  53. package/dist/layericons/vor-notinway.png +0 -0
  54. package/dist/managers/ADSBManager.d.ts +39 -0
  55. package/dist/managers/ClickManager.d.ts +15 -0
  56. package/dist/managers/ErrorManager.d.ts +25 -0
  57. package/dist/managers/GeoJSONManager.d.ts +29 -0
  58. package/dist/managers/GlobalConfigManager.d.ts +48 -0
  59. package/dist/managers/Graticule.d.ts +41 -0
  60. package/dist/managers/HoverManage.d.ts +26 -0
  61. package/dist/managers/LayerManager.d.ts +33 -0
  62. package/dist/managers/LineLabelOptimizer.d.ts +38 -0
  63. package/dist/managers/NotamManager.d.ts +40 -0
  64. package/dist/managers/PerformanceManager.d.ts +40 -0
  65. package/dist/managers/PluginManager.d.ts +17 -0
  66. package/dist/managers/PopupManager.d.ts +2 -0
  67. package/dist/managers/RasterManager.d.ts +16 -0
  68. package/dist/managers/SelectFeature.d.ts +34 -0
  69. package/dist/managers/ThemeManage.d.ts +11 -0
  70. package/dist/managers/WindManager.d.ts +21 -0
  71. package/dist/nav-sdk.cjs +27061 -0
  72. package/dist/nav-sdk.d.ts +3228 -0
  73. package/dist/nav-sdk.esm.js +27037 -0
  74. package/dist/nav-sdk.min.js +1 -0
  75. package/dist/nav-sdk.umd.js +27067 -0
  76. package/dist/nav-sdk@0.2.1.cjs +27061 -0
  77. package/dist/nav-sdk@0.2.1.d.ts +3228 -0
  78. package/dist/nav-sdk@0.2.1.esm.js +27037 -0
  79. package/dist/nav-sdk@0.2.1.min.js +1 -0
  80. package/dist/nav-sdk@0.2.1.umd.js +27067 -0
  81. package/dist/plugins/DrawPlugin.d.ts +14 -0
  82. package/dist/plugins/MeasurePlugin.d.ts +26 -0
  83. package/dist/sdk.style.css +696 -0
  84. package/dist/style/amm-chart.d.ts +439 -0
  85. package/dist/style/aviation-chart.d.ts +2354 -0
  86. package/dist/types/index.d.ts +212 -0
  87. package/package.json +64 -21
  88. package/dist/aviation-chart.umd.js +0 -6
  89. package/dist/index.cjs +0 -6
  90. package/dist/index.js +0 -3610
  91. package/preview.html +0 -48
@@ -0,0 +1,352 @@
1
+ {
2
+ "icon-0": {
3
+ "x": 0,
4
+ "y": 0,
5
+ "width": 80,
6
+ "height": 80,
7
+ "pixelRatio": 1
8
+ },
9
+ "icon-1": {
10
+ "x": 80,
11
+ "y": 0,
12
+ "width": 80,
13
+ "height": 80,
14
+ "pixelRatio": 1
15
+ },
16
+ "icon-2": {
17
+ "x": 0,
18
+ "y": 80,
19
+ "width": 80,
20
+ "height": 80,
21
+ "pixelRatio": 1
22
+ },
23
+ "icon-3": {
24
+ "x": 80,
25
+ "y": 80,
26
+ "width": 80,
27
+ "height": 80,
28
+ "pixelRatio": 1
29
+ },
30
+ "icon-4": {
31
+ "x": 0,
32
+ "y": 160,
33
+ "width": 80,
34
+ "height": 80,
35
+ "pixelRatio": 1
36
+ },
37
+ "icon-5": {
38
+ "x": 80,
39
+ "y": 160,
40
+ "width": 80,
41
+ "height": 80,
42
+ "pixelRatio": 1
43
+ },
44
+ "icon-6": {
45
+ "x": 0,
46
+ "y": 240,
47
+ "width": 80,
48
+ "height": 80,
49
+ "pixelRatio": 1
50
+ },
51
+ "icon-7": {
52
+ "x": 80,
53
+ "y": 240,
54
+ "width": 80,
55
+ "height": 80,
56
+ "pixelRatio": 1
57
+ },
58
+ "icon-8": {
59
+ "x": 0,
60
+ "y": 320,
61
+ "width": 80,
62
+ "height": 80,
63
+ "pixelRatio": 1
64
+ },
65
+ "icon-9": {
66
+ "x": 80,
67
+ "y": 320,
68
+ "width": 80,
69
+ "height": 80,
70
+ "pixelRatio": 1
71
+ },
72
+ "icon-10": {
73
+ "x": 0,
74
+ "y": 400,
75
+ "width": 80,
76
+ "height": 80,
77
+ "pixelRatio": 1
78
+ },
79
+ "icon-11": {
80
+ "x": 80,
81
+ "y": 400,
82
+ "width": 80,
83
+ "height": 80,
84
+ "pixelRatio": 1
85
+ },
86
+ "icon-12": {
87
+ "x": 0,
88
+ "y": 480,
89
+ "width": 80,
90
+ "height": 80,
91
+ "pixelRatio": 1
92
+ },
93
+ "icon-13": {
94
+ "x": 80,
95
+ "y": 480,
96
+ "width": 80,
97
+ "height": 80,
98
+ "pixelRatio": 1
99
+ },
100
+ "icon-14": {
101
+ "x": 0,
102
+ "y": 560,
103
+ "width": 80,
104
+ "height": 80,
105
+ "pixelRatio": 1
106
+ },
107
+ "icon-15": {
108
+ "x": 80,
109
+ "y": 560,
110
+ "width": 80,
111
+ "height": 80,
112
+ "pixelRatio": 1
113
+ },
114
+ "icon-16": {
115
+ "x": 0,
116
+ "y": 640,
117
+ "width": 80,
118
+ "height": 80,
119
+ "pixelRatio": 1
120
+ },
121
+ "icon-17": {
122
+ "x": 80,
123
+ "y": 640,
124
+ "width": 80,
125
+ "height": 80,
126
+ "pixelRatio": 1
127
+ },
128
+ "icon-18": {
129
+ "x": 0,
130
+ "y": 720,
131
+ "width": 80,
132
+ "height": 80,
133
+ "pixelRatio": 1
134
+ },
135
+ "icon-19": {
136
+ "x": 80,
137
+ "y": 720,
138
+ "width": 80,
139
+ "height": 80,
140
+ "pixelRatio": 1
141
+ },
142
+ "icon-20": {
143
+ "x": 0,
144
+ "y": 800,
145
+ "width": 80,
146
+ "height": 80,
147
+ "pixelRatio": 1
148
+ },
149
+ "icon-21": {
150
+ "x": 80,
151
+ "y": 800,
152
+ "width": 80,
153
+ "height": 80,
154
+ "pixelRatio": 1
155
+ },
156
+ "icon-22": {
157
+ "x": 0,
158
+ "y": 880,
159
+ "width": 80,
160
+ "height": 80,
161
+ "pixelRatio": 1
162
+ },
163
+ "icon-23": {
164
+ "x": 80,
165
+ "y": 880,
166
+ "width": 80,
167
+ "height": 80,
168
+ "pixelRatio": 1
169
+ },
170
+ "icon-24": {
171
+ "x": 0,
172
+ "y": 960,
173
+ "width": 80,
174
+ "height": 80,
175
+ "pixelRatio": 1
176
+ },
177
+ "icon-25": {
178
+ "x": 80,
179
+ "y": 960,
180
+ "width": 80,
181
+ "height": 80,
182
+ "pixelRatio": 1
183
+ },
184
+ "icon-26": {
185
+ "x": 0,
186
+ "y": 1040,
187
+ "width": 80,
188
+ "height": 80,
189
+ "pixelRatio": 1
190
+ },
191
+ "icon-27": {
192
+ "x": 80,
193
+ "y": 1040,
194
+ "width": 80,
195
+ "height": 80,
196
+ "pixelRatio": 1
197
+ },
198
+ "icon-28": {
199
+ "x": 0,
200
+ "y": 1120,
201
+ "width": 80,
202
+ "height": 80,
203
+ "pixelRatio": 1
204
+ },
205
+ "icon-29": {
206
+ "x": 80,
207
+ "y": 1120,
208
+ "width": 80,
209
+ "height": 80,
210
+ "pixelRatio": 1
211
+ },
212
+ "icon-30": {
213
+ "x": 0,
214
+ "y": 1200,
215
+ "width": 80,
216
+ "height": 80,
217
+ "pixelRatio": 1
218
+ },
219
+ "icon-31": {
220
+ "x": 80,
221
+ "y": 1200,
222
+ "width": 80,
223
+ "height": 80,
224
+ "pixelRatio": 1
225
+ },
226
+ "icon-32": {
227
+ "x": 0,
228
+ "y": 1280,
229
+ "width": 80,
230
+ "height": 80,
231
+ "pixelRatio": 1
232
+ },
233
+ "icon-33": {
234
+ "x": 80,
235
+ "y": 1280,
236
+ "width": 80,
237
+ "height": 80,
238
+ "pixelRatio": 1
239
+ },
240
+ "icon-34": {
241
+ "x": 0,
242
+ "y": 1360,
243
+ "width": 80,
244
+ "height": 80,
245
+ "pixelRatio": 1
246
+ },
247
+ "icon-35": {
248
+ "x": 80,
249
+ "y": 1360,
250
+ "width": 80,
251
+ "height": 80,
252
+ "pixelRatio": 1
253
+ },
254
+ "icon-36": {
255
+ "x": 0,
256
+ "y": 1440,
257
+ "width": 80,
258
+ "height": 80,
259
+ "pixelRatio": 1
260
+ },
261
+ "icon-37": {
262
+ "x": 80,
263
+ "y": 1440,
264
+ "width": 80,
265
+ "height": 80,
266
+ "pixelRatio": 1
267
+ },
268
+ "icon-38": {
269
+ "x": 0,
270
+ "y": 1520,
271
+ "width": 80,
272
+ "height": 80,
273
+ "pixelRatio": 1
274
+ },
275
+ "icon-39": {
276
+ "x": 80,
277
+ "y": 1520,
278
+ "width": 80,
279
+ "height": 80,
280
+ "pixelRatio": 1
281
+ },
282
+ "icon-40": {
283
+ "x": 0,
284
+ "y": 1600,
285
+ "width": 80,
286
+ "height": 80,
287
+ "pixelRatio": 1
288
+ },
289
+ "icon-41": {
290
+ "x": 80,
291
+ "y": 1600,
292
+ "width": 80,
293
+ "height": 80,
294
+ "pixelRatio": 1
295
+ },
296
+ "icon-42": {
297
+ "x": 0,
298
+ "y": 1680,
299
+ "width": 80,
300
+ "height": 80,
301
+ "pixelRatio": 1
302
+ },
303
+ "icon-43": {
304
+ "x": 80,
305
+ "y": 1680,
306
+ "width": 80,
307
+ "height": 80,
308
+ "pixelRatio": 1
309
+ },
310
+ "icon-44": {
311
+ "x": 0,
312
+ "y": 1760,
313
+ "width": 80,
314
+ "height": 80,
315
+ "pixelRatio": 1
316
+ },
317
+ "icon-45": {
318
+ "x": 80,
319
+ "y": 1760,
320
+ "width": 80,
321
+ "height": 80,
322
+ "pixelRatio": 1
323
+ },
324
+ "icon-46": {
325
+ "x": 0,
326
+ "y": 1840,
327
+ "width": 80,
328
+ "height": 80,
329
+ "pixelRatio": 1
330
+ },
331
+ "icon-47": {
332
+ "x": 80,
333
+ "y": 1840,
334
+ "width": 80,
335
+ "height": 80,
336
+ "pixelRatio": 1
337
+ },
338
+ "icon-48": {
339
+ "x": 0,
340
+ "y": 1920,
341
+ "width": 80,
342
+ "height": 80,
343
+ "pixelRatio": 1
344
+ },
345
+ "icon-49": {
346
+ "x": 80,
347
+ "y": 1920,
348
+ "width": 80,
349
+ "height": 80,
350
+ "pixelRatio": 1
351
+ }
352
+ }
Binary file
@@ -0,0 +1,352 @@
1
+ {
2
+ "icon-0": {
3
+ "x": 0,
4
+ "y": 0,
5
+ "width": 80,
6
+ "height": 80,
7
+ "pixelRatio": 1
8
+ },
9
+ "icon-1": {
10
+ "x": 80,
11
+ "y": 0,
12
+ "width": 80,
13
+ "height": 80,
14
+ "pixelRatio": 1
15
+ },
16
+ "icon-2": {
17
+ "x": 0,
18
+ "y": 80,
19
+ "width": 80,
20
+ "height": 80,
21
+ "pixelRatio": 1
22
+ },
23
+ "icon-3": {
24
+ "x": 80,
25
+ "y": 80,
26
+ "width": 80,
27
+ "height": 80,
28
+ "pixelRatio": 1
29
+ },
30
+ "icon-4": {
31
+ "x": 0,
32
+ "y": 160,
33
+ "width": 80,
34
+ "height": 80,
35
+ "pixelRatio": 1
36
+ },
37
+ "icon-5": {
38
+ "x": 80,
39
+ "y": 160,
40
+ "width": 80,
41
+ "height": 80,
42
+ "pixelRatio": 1
43
+ },
44
+ "icon-6": {
45
+ "x": 0,
46
+ "y": 240,
47
+ "width": 80,
48
+ "height": 80,
49
+ "pixelRatio": 1
50
+ },
51
+ "icon-7": {
52
+ "x": 80,
53
+ "y": 240,
54
+ "width": 80,
55
+ "height": 80,
56
+ "pixelRatio": 1
57
+ },
58
+ "icon-8": {
59
+ "x": 0,
60
+ "y": 320,
61
+ "width": 80,
62
+ "height": 80,
63
+ "pixelRatio": 1
64
+ },
65
+ "icon-9": {
66
+ "x": 80,
67
+ "y": 320,
68
+ "width": 80,
69
+ "height": 80,
70
+ "pixelRatio": 1
71
+ },
72
+ "icon-10": {
73
+ "x": 0,
74
+ "y": 400,
75
+ "width": 80,
76
+ "height": 80,
77
+ "pixelRatio": 1
78
+ },
79
+ "icon-11": {
80
+ "x": 80,
81
+ "y": 400,
82
+ "width": 80,
83
+ "height": 80,
84
+ "pixelRatio": 1
85
+ },
86
+ "icon-12": {
87
+ "x": 0,
88
+ "y": 480,
89
+ "width": 80,
90
+ "height": 80,
91
+ "pixelRatio": 1
92
+ },
93
+ "icon-13": {
94
+ "x": 80,
95
+ "y": 480,
96
+ "width": 80,
97
+ "height": 80,
98
+ "pixelRatio": 1
99
+ },
100
+ "icon-14": {
101
+ "x": 0,
102
+ "y": 560,
103
+ "width": 80,
104
+ "height": 80,
105
+ "pixelRatio": 1
106
+ },
107
+ "icon-15": {
108
+ "x": 80,
109
+ "y": 560,
110
+ "width": 80,
111
+ "height": 80,
112
+ "pixelRatio": 1
113
+ },
114
+ "icon-16": {
115
+ "x": 0,
116
+ "y": 640,
117
+ "width": 80,
118
+ "height": 80,
119
+ "pixelRatio": 1
120
+ },
121
+ "icon-17": {
122
+ "x": 80,
123
+ "y": 640,
124
+ "width": 80,
125
+ "height": 80,
126
+ "pixelRatio": 1
127
+ },
128
+ "icon-18": {
129
+ "x": 0,
130
+ "y": 720,
131
+ "width": 80,
132
+ "height": 80,
133
+ "pixelRatio": 1
134
+ },
135
+ "icon-19": {
136
+ "x": 80,
137
+ "y": 720,
138
+ "width": 80,
139
+ "height": 80,
140
+ "pixelRatio": 1
141
+ },
142
+ "icon-20": {
143
+ "x": 0,
144
+ "y": 800,
145
+ "width": 80,
146
+ "height": 80,
147
+ "pixelRatio": 1
148
+ },
149
+ "icon-21": {
150
+ "x": 80,
151
+ "y": 800,
152
+ "width": 80,
153
+ "height": 80,
154
+ "pixelRatio": 1
155
+ },
156
+ "icon-22": {
157
+ "x": 0,
158
+ "y": 880,
159
+ "width": 80,
160
+ "height": 80,
161
+ "pixelRatio": 1
162
+ },
163
+ "icon-23": {
164
+ "x": 80,
165
+ "y": 880,
166
+ "width": 80,
167
+ "height": 80,
168
+ "pixelRatio": 1
169
+ },
170
+ "icon-24": {
171
+ "x": 0,
172
+ "y": 960,
173
+ "width": 80,
174
+ "height": 80,
175
+ "pixelRatio": 1
176
+ },
177
+ "icon-25": {
178
+ "x": 80,
179
+ "y": 960,
180
+ "width": 80,
181
+ "height": 80,
182
+ "pixelRatio": 1
183
+ },
184
+ "icon-26": {
185
+ "x": 0,
186
+ "y": 1040,
187
+ "width": 80,
188
+ "height": 80,
189
+ "pixelRatio": 1
190
+ },
191
+ "icon-27": {
192
+ "x": 80,
193
+ "y": 1040,
194
+ "width": 80,
195
+ "height": 80,
196
+ "pixelRatio": 1
197
+ },
198
+ "icon-28": {
199
+ "x": 0,
200
+ "y": 1120,
201
+ "width": 80,
202
+ "height": 80,
203
+ "pixelRatio": 1
204
+ },
205
+ "icon-29": {
206
+ "x": 80,
207
+ "y": 1120,
208
+ "width": 80,
209
+ "height": 80,
210
+ "pixelRatio": 1
211
+ },
212
+ "icon-30": {
213
+ "x": 0,
214
+ "y": 1200,
215
+ "width": 80,
216
+ "height": 80,
217
+ "pixelRatio": 1
218
+ },
219
+ "icon-31": {
220
+ "x": 80,
221
+ "y": 1200,
222
+ "width": 80,
223
+ "height": 80,
224
+ "pixelRatio": 1
225
+ },
226
+ "icon-32": {
227
+ "x": 0,
228
+ "y": 1280,
229
+ "width": 80,
230
+ "height": 80,
231
+ "pixelRatio": 1
232
+ },
233
+ "icon-33": {
234
+ "x": 80,
235
+ "y": 1280,
236
+ "width": 80,
237
+ "height": 80,
238
+ "pixelRatio": 1
239
+ },
240
+ "icon-34": {
241
+ "x": 0,
242
+ "y": 1360,
243
+ "width": 80,
244
+ "height": 80,
245
+ "pixelRatio": 1
246
+ },
247
+ "icon-35": {
248
+ "x": 80,
249
+ "y": 1360,
250
+ "width": 80,
251
+ "height": 80,
252
+ "pixelRatio": 1
253
+ },
254
+ "icon-36": {
255
+ "x": 0,
256
+ "y": 1440,
257
+ "width": 80,
258
+ "height": 80,
259
+ "pixelRatio": 1
260
+ },
261
+ "icon-37": {
262
+ "x": 80,
263
+ "y": 1440,
264
+ "width": 80,
265
+ "height": 80,
266
+ "pixelRatio": 1
267
+ },
268
+ "icon-38": {
269
+ "x": 0,
270
+ "y": 1520,
271
+ "width": 80,
272
+ "height": 80,
273
+ "pixelRatio": 1
274
+ },
275
+ "icon-39": {
276
+ "x": 80,
277
+ "y": 1520,
278
+ "width": 80,
279
+ "height": 80,
280
+ "pixelRatio": 1
281
+ },
282
+ "icon-40": {
283
+ "x": 0,
284
+ "y": 1600,
285
+ "width": 80,
286
+ "height": 80,
287
+ "pixelRatio": 1
288
+ },
289
+ "icon-41": {
290
+ "x": 80,
291
+ "y": 1600,
292
+ "width": 80,
293
+ "height": 80,
294
+ "pixelRatio": 1
295
+ },
296
+ "icon-42": {
297
+ "x": 0,
298
+ "y": 1680,
299
+ "width": 80,
300
+ "height": 80,
301
+ "pixelRatio": 1
302
+ },
303
+ "icon-43": {
304
+ "x": 80,
305
+ "y": 1680,
306
+ "width": 80,
307
+ "height": 80,
308
+ "pixelRatio": 1
309
+ },
310
+ "icon-44": {
311
+ "x": 0,
312
+ "y": 1760,
313
+ "width": 80,
314
+ "height": 80,
315
+ "pixelRatio": 1
316
+ },
317
+ "icon-45": {
318
+ "x": 80,
319
+ "y": 1760,
320
+ "width": 80,
321
+ "height": 80,
322
+ "pixelRatio": 1
323
+ },
324
+ "icon-46": {
325
+ "x": 0,
326
+ "y": 1840,
327
+ "width": 80,
328
+ "height": 80,
329
+ "pixelRatio": 1
330
+ },
331
+ "icon-47": {
332
+ "x": 80,
333
+ "y": 1840,
334
+ "width": 80,
335
+ "height": 80,
336
+ "pixelRatio": 1
337
+ },
338
+ "icon-48": {
339
+ "x": 0,
340
+ "y": 1920,
341
+ "width": 80,
342
+ "height": 80,
343
+ "pixelRatio": 1
344
+ },
345
+ "icon-49": {
346
+ "x": 80,
347
+ "y": 1920,
348
+ "width": 80,
349
+ "height": 80,
350
+ "pixelRatio": 1
351
+ }
352
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file