@defra/forms-engine-plugin 4.0.41 → 4.0.43

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 (110) hide show
  1. package/.public/javascripts/application.min.js +1 -1
  2. package/.public/javascripts/application.min.js.map +1 -1
  3. package/.public/javascripts/shared.min.js +1 -1
  4. package/.public/javascripts/shared.min.js.map +1 -1
  5. package/.public/stylesheets/application.min.css +2 -2
  6. package/.public/stylesheets/application.min.css.map +1 -1
  7. package/.server/client/javascripts/location-map.d.ts +93 -0
  8. package/.server/client/javascripts/location-map.js +749 -0
  9. package/.server/client/javascripts/location-map.js.map +1 -0
  10. package/.server/client/javascripts/shared.d.ts +4 -0
  11. package/.server/client/javascripts/shared.js +5 -0
  12. package/.server/client/javascripts/shared.js.map +1 -1
  13. package/.server/client/stylesheets/_location-fields.scss +11 -0
  14. package/.server/client/stylesheets/application.scss +0 -1
  15. package/.server/client/stylesheets/shared.scss +1 -0
  16. package/.server/config/index.js +1 -1
  17. package/.server/config/index.js.map +1 -1
  18. package/.server/server/plugins/engine/configureEnginePlugin.d.ts +1 -1
  19. package/.server/server/plugins/engine/configureEnginePlugin.js +4 -2
  20. package/.server/server/plugins/engine/configureEnginePlugin.js.map +1 -1
  21. package/.server/server/plugins/engine/options.js +2 -1
  22. package/.server/server/plugins/engine/options.js.map +1 -1
  23. package/.server/server/plugins/engine/plugin.js +14 -1
  24. package/.server/server/plugins/engine/plugin.js.map +1 -1
  25. package/.server/server/plugins/engine/types.d.ts +1 -0
  26. package/.server/server/plugins/engine/types.js.map +1 -1
  27. package/.server/server/plugins/engine/views/components/_location-field-base.html +1 -1
  28. package/.server/server/plugins/engine/views/components/osgridreffield.html +4 -2
  29. package/.server/server/plugins/map/index.d.ts +7 -0
  30. package/.server/server/plugins/map/index.js +20 -0
  31. package/.server/server/plugins/map/index.js.map +1 -0
  32. package/.server/server/plugins/map/routes/get-os-token.d.ts +6 -0
  33. package/.server/server/plugins/map/routes/get-os-token.js +41 -0
  34. package/.server/server/plugins/map/routes/get-os-token.js.map +1 -0
  35. package/.server/server/plugins/map/routes/get-os-token.test.js +49 -0
  36. package/.server/server/plugins/map/routes/get-os-token.test.js.map +1 -0
  37. package/.server/server/plugins/map/routes/index.d.ts +10 -0
  38. package/.server/server/plugins/map/routes/index.js +172 -0
  39. package/.server/server/plugins/map/routes/index.js.map +1 -0
  40. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark.json +690 -0
  41. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark.png +0 -0
  42. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark@2x.json +690 -0
  43. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark@2x.png +0 -0
  44. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale.json +690 -0
  45. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale.png +0 -0
  46. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale@2x.json +690 -0
  47. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale@2x.png +0 -0
  48. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite.json +690 -0
  49. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite.png +0 -0
  50. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite@2x.json +690 -0
  51. package/.server/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite@2x.png +0 -0
  52. package/.server/server/plugins/map/routes/vts/OS_VTS_3857_Black_and_White.json +7858 -0
  53. package/.server/server/plugins/map/routes/vts/OS_VTS_3857_Dark.json +7669 -0
  54. package/.server/server/plugins/map/routes/vts/OS_VTS_3857_Outdoor.json +7653 -0
  55. package/.server/server/plugins/map/routes/vts/README.md +5 -0
  56. package/.server/server/plugins/map/service.d.ts +14 -0
  57. package/.server/server/plugins/map/service.js +76 -0
  58. package/.server/server/plugins/map/service.js.map +1 -0
  59. package/.server/server/plugins/map/service.test.js +120 -0
  60. package/.server/server/plugins/map/service.test.js.map +1 -0
  61. package/.server/server/plugins/map/test/__stubs__/find.d.ts +3 -0
  62. package/.server/server/plugins/map/test/__stubs__/find.js +216 -0
  63. package/.server/server/plugins/map/test/__stubs__/find.js.map +1 -0
  64. package/.server/server/plugins/map/test/__stubs__/nearest.d.ts +37 -0
  65. package/.server/server/plugins/map/test/__stubs__/nearest.js +38 -0
  66. package/.server/server/plugins/map/test/__stubs__/nearest.js.map +1 -0
  67. package/.server/server/plugins/map/types.d.ts +233 -0
  68. package/.server/server/plugins/map/types.js +121 -0
  69. package/.server/server/plugins/map/types.js.map +1 -0
  70. package/.server/server/types.d.ts +1 -0
  71. package/.server/server/types.js.map +1 -1
  72. package/package.json +3 -1
  73. package/src/client/javascripts/location-map.js +774 -0
  74. package/src/client/javascripts/shared.js +4 -0
  75. package/src/client/stylesheets/_location-fields.scss +11 -0
  76. package/src/client/stylesheets/application.scss +0 -1
  77. package/src/client/stylesheets/shared.scss +1 -0
  78. package/src/config/index.ts +1 -1
  79. package/src/server/plugins/engine/configureEnginePlugin.ts +4 -2
  80. package/src/server/plugins/engine/options.js +2 -1
  81. package/src/server/plugins/engine/plugin.ts +14 -1
  82. package/src/server/plugins/engine/types.ts +1 -0
  83. package/src/server/plugins/engine/views/components/_location-field-base.html +1 -1
  84. package/src/server/plugins/engine/views/components/osgridreffield.html +4 -2
  85. package/src/server/plugins/map/index.js +19 -0
  86. package/src/server/plugins/map/routes/get-os-token.js +41 -0
  87. package/src/server/plugins/map/routes/get-os-token.test.js +55 -0
  88. package/src/server/plugins/map/routes/index.js +192 -0
  89. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark.json +690 -0
  90. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark.png +0 -0
  91. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark@2x.json +690 -0
  92. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/dark@2x.png +0 -0
  93. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale.json +690 -0
  94. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale.png +0 -0
  95. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale@2x.json +690 -0
  96. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/greyscale@2x.png +0 -0
  97. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite.json +690 -0
  98. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite.png +0 -0
  99. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite@2x.json +690 -0
  100. package/src/server/plugins/map/routes/vts/OS_VTS_3857/resources/sprites/sprite@2x.png +0 -0
  101. package/src/server/plugins/map/routes/vts/OS_VTS_3857_Black_and_White.json +7858 -0
  102. package/src/server/plugins/map/routes/vts/OS_VTS_3857_Dark.json +7669 -0
  103. package/src/server/plugins/map/routes/vts/OS_VTS_3857_Outdoor.json +7653 -0
  104. package/src/server/plugins/map/routes/vts/README.md +5 -0
  105. package/src/server/plugins/map/service.js +84 -0
  106. package/src/server/plugins/map/service.test.js +144 -0
  107. package/src/server/plugins/map/test/__stubs__/find.js +271 -0
  108. package/src/server/plugins/map/test/__stubs__/nearest.js +46 -0
  109. package/src/server/plugins/map/types.js +120 -0
  110. package/src/server/types.ts +1 -0
@@ -0,0 +1,690 @@
1
+ {
2
+ "OS/TopographicArea_1/Reeds/3": {
3
+ "x": 0,
4
+ "y": 0,
5
+ "width": 67,
6
+ "height": 67,
7
+ "pixelRatio": 1,
8
+ "sdf": false
9
+ },
10
+ "OS/TopographicArea_1/Reeds/2": {
11
+ "x": 67,
12
+ "y": 0,
13
+ "width": 67,
14
+ "height": 67,
15
+ "pixelRatio": 1,
16
+ "sdf": false
17
+ },
18
+ "OS/TopographicArea_1/Reeds/1": {
19
+ "x": 134,
20
+ "y": 0,
21
+ "width": 67,
22
+ "height": 67,
23
+ "pixelRatio": 1,
24
+ "sdf": false
25
+ },
26
+ "OS/TopographicArea_1/Reeds/0": {
27
+ "x": 201,
28
+ "y": 0,
29
+ "width": 67,
30
+ "height": 67,
31
+ "pixelRatio": 1,
32
+ "sdf": false
33
+ },
34
+ "OS/TopographicArea_1/Marsh/0": {
35
+ "x": 268,
36
+ "y": 0,
37
+ "width": 67,
38
+ "height": 67,
39
+ "pixelRatio": 1,
40
+ "sdf": false
41
+ },
42
+ "OS/TopographicArea_1/Saltmarsh/0": {
43
+ "x": 0,
44
+ "y": 67,
45
+ "width": 67,
46
+ "height": 67,
47
+ "pixelRatio": 1,
48
+ "sdf": false
49
+ },
50
+ "OS/TopographicArea_1/Heath/0": {
51
+ "x": 67,
52
+ "y": 67,
53
+ "width": 67,
54
+ "height": 67,
55
+ "pixelRatio": 1,
56
+ "sdf": false
57
+ },
58
+ "OS/TopographicArea_1/Rough Grassland/0": {
59
+ "x": 134,
60
+ "y": 67,
61
+ "width": 67,
62
+ "height": 67,
63
+ "pixelRatio": 1,
64
+ "sdf": false
65
+ },
66
+ "OS/TopographicArea_1/Scree/0": {
67
+ "x": 201,
68
+ "y": 67,
69
+ "width": 67,
70
+ "height": 67,
71
+ "pixelRatio": 1,
72
+ "sdf": false
73
+ },
74
+ "OS/TopographicArea_1/Rock/0": {
75
+ "x": 268,
76
+ "y": 67,
77
+ "width": 67,
78
+ "height": 67,
79
+ "pixelRatio": 1,
80
+ "sdf": false
81
+ },
82
+ "OS/TopographicArea_1/Boulders/0": {
83
+ "x": 0,
84
+ "y": 134,
85
+ "width": 67,
86
+ "height": 67,
87
+ "pixelRatio": 1,
88
+ "sdf": false
89
+ },
90
+ "OS/TopographicArea_1/Scrub/3": {
91
+ "x": 67,
92
+ "y": 134,
93
+ "width": 67,
94
+ "height": 67,
95
+ "pixelRatio": 1,
96
+ "sdf": false
97
+ },
98
+ "OS/TopographicArea_1/Scrub/2": {
99
+ "x": 134,
100
+ "y": 134,
101
+ "width": 67,
102
+ "height": 67,
103
+ "pixelRatio": 1,
104
+ "sdf": false
105
+ },
106
+ "OS/TopographicArea_1/Scrub/1": {
107
+ "x": 201,
108
+ "y": 134,
109
+ "width": 67,
110
+ "height": 67,
111
+ "pixelRatio": 1,
112
+ "sdf": false
113
+ },
114
+ "OS/TopographicArea_1/Scrub/0": {
115
+ "x": 268,
116
+ "y": 134,
117
+ "width": 67,
118
+ "height": 67,
119
+ "pixelRatio": 1,
120
+ "sdf": false
121
+ },
122
+ "OS/TopographicArea_1/Coppice Or Osiers/0": {
123
+ "x": 0,
124
+ "y": 201,
125
+ "width": 67,
126
+ "height": 67,
127
+ "pixelRatio": 1,
128
+ "sdf": false
129
+ },
130
+ "OS/TopographicArea_1/Coniferous Tree/0": {
131
+ "x": 67,
132
+ "y": 201,
133
+ "width": 67,
134
+ "height": 67,
135
+ "pixelRatio": 1,
136
+ "sdf": false
137
+ },
138
+ "OS/TopographicArea_1/Nonconiferous Tree/0": {
139
+ "x": 134,
140
+ "y": 201,
141
+ "width": 67,
142
+ "height": 67,
143
+ "pixelRatio": 1,
144
+ "sdf": false
145
+ },
146
+ "OS/TopographicArea_1/Mixed Woodland/0": {
147
+ "x": 201,
148
+ "y": 201,
149
+ "width": 67,
150
+ "height": 67,
151
+ "pixelRatio": 1,
152
+ "sdf": false
153
+ },
154
+ "OS/TopographicArea_1/Orchard/0": {
155
+ "x": 268,
156
+ "y": 201,
157
+ "width": 27,
158
+ "height": 27,
159
+ "pixelRatio": 1,
160
+ "sdf": false
161
+ },
162
+ "OS/TopographicPoint/Site Of Heritage": {
163
+ "x": 295,
164
+ "y": 201,
165
+ "width": 26,
166
+ "height": 26,
167
+ "pixelRatio": 1,
168
+ "sdf": false
169
+ },
170
+ "OS/TopographicArea_1/Cliff": {
171
+ "x": 0,
172
+ "y": 268,
173
+ "width": 24,
174
+ "height": 24,
175
+ "pixelRatio": 1,
176
+ "sdf": false
177
+ },
178
+ "OS/TopographicArea_1/Slope": {
179
+ "x": 24,
180
+ "y": 268,
181
+ "width": 24,
182
+ "height": 24,
183
+ "pixelRatio": 1,
184
+ "sdf": false
185
+ },
186
+ "OS/Airports": {
187
+ "x": 48,
188
+ "y": 268,
189
+ "width": 22,
190
+ "height": 22,
191
+ "pixelRatio": 1,
192
+ "sdf": false
193
+ },
194
+ "OS/TopographicPoint/Positioned Nonconiferous Tree": {
195
+ "x": 70,
196
+ "y": 268,
197
+ "width": 18,
198
+ "height": 20,
199
+ "pixelRatio": 1,
200
+ "sdf": false
201
+ },
202
+ "OS/TopographicPoint/Positioned Coniferous Tree": {
203
+ "x": 70,
204
+ "y": 268,
205
+ "width": 18,
206
+ "height": 20,
207
+ "pixelRatio": 1,
208
+ "sdf": false
209
+ },
210
+ "OS/Railway_stations/Railway Station And London Underground Station": {
211
+ "x": 88,
212
+ "y": 268,
213
+ "width": 40,
214
+ "height": 18,
215
+ "pixelRatio": 1,
216
+ "sdf": false
217
+ },
218
+ "OS/Railway_stations/Light Rapid Transit Station And London Underground Station": {
219
+ "x": 128,
220
+ "y": 268,
221
+ "width": 34,
222
+ "height": 18,
223
+ "pixelRatio": 1,
224
+ "sdf": false
225
+ },
226
+ "OS/Railway_stations/Railway Station": {
227
+ "x": 162,
228
+ "y": 268,
229
+ "width": 26,
230
+ "height": 18,
231
+ "pixelRatio": 1,
232
+ "sdf": false
233
+ },
234
+ "OS/Railway_stations/London Underground Station": {
235
+ "x": 188,
236
+ "y": 268,
237
+ "width": 20,
238
+ "height": 18,
239
+ "pixelRatio": 1,
240
+ "sdf": false
241
+ },
242
+ "OS/Railway_stations/Light Rapid Transit Station": {
243
+ "x": 208,
244
+ "y": 268,
245
+ "width": 18,
246
+ "height": 18,
247
+ "pixelRatio": 1,
248
+ "sdf": false
249
+ },
250
+ "OS/Railway_stations/Light Rapid Transit Station And Railway Station": {
251
+ "x": 226,
252
+ "y": 268,
253
+ "width": 40,
254
+ "height": 16,
255
+ "pixelRatio": 1,
256
+ "sdf": false
257
+ },
258
+ "OS/TopographicPoint/Rail": {
259
+ "x": 266,
260
+ "y": 268,
261
+ "width": 16,
262
+ "height": 16,
263
+ "pixelRatio": 1,
264
+ "sdf": false
265
+ },
266
+ "OS/CartographicSymbol/Bench Mark Symbol": {
267
+ "x": 282,
268
+ "y": 268,
269
+ "width": 26,
270
+ "height": 16,
271
+ "pixelRatio": 1,
272
+ "sdf": false
273
+ },
274
+ "OS/TopographicPoint/Triangulation Point Or Pillar": {
275
+ "x": 308,
276
+ "y": 268,
277
+ "width": 18,
278
+ "height": 16,
279
+ "pixelRatio": 1,
280
+ "sdf": false
281
+ },
282
+ "OS/CartographicSymbol/Road Related Flow Symbol": {
283
+ "x": 0,
284
+ "y": 292,
285
+ "width": 18,
286
+ "height": 16,
287
+ "pixelRatio": 1,
288
+ "sdf": false
289
+ },
290
+ "OS/Railway_stations/Railway Station And London Underground Station_1": {
291
+ "x": 18,
292
+ "y": 292,
293
+ "width": 18,
294
+ "height": 12,
295
+ "pixelRatio": 1,
296
+ "sdf": false
297
+ },
298
+ "OS/CartographicSymbol/Direction Of Flow Symbol": {
299
+ "x": 36,
300
+ "y": 292,
301
+ "width": 30,
302
+ "height": 12,
303
+ "pixelRatio": 1,
304
+ "sdf": false
305
+ },
306
+ "OS/Railway_stations/Light Rapid Transit Station And London Underground Station_1": {
307
+ "x": 66,
308
+ "y": 292,
309
+ "width": 10,
310
+ "height": 10,
311
+ "pixelRatio": 1,
312
+ "sdf": false
313
+ },
314
+ "OS/Names/Local/Motorway Junctions": {
315
+ "x": 76,
316
+ "y": 292,
317
+ "width": 10,
318
+ "height": 10,
319
+ "pixelRatio": 1,
320
+ "sdf": false
321
+ },
322
+ "OS/Names/Local/Greenspace:1": {
323
+ "x": 86,
324
+ "y": 292,
325
+ "width": 10,
326
+ "height": 10,
327
+ "pixelRatio": 1,
328
+ "sdf": false
329
+ },
330
+ "OS/TopographicPoint/Structure": {
331
+ "x": 96,
332
+ "y": 292,
333
+ "width": 10,
334
+ "height": 10,
335
+ "pixelRatio": 1,
336
+ "sdf": false
337
+ },
338
+ "OS/TopographicPoint/Tidal Water": {
339
+ "x": 106,
340
+ "y": 292,
341
+ "width": 8,
342
+ "height": 8,
343
+ "pixelRatio": 1,
344
+ "sdf": false
345
+ },
346
+ "OS/TopographicPoint/Landform": {
347
+ "x": 114,
348
+ "y": 292,
349
+ "width": 8,
350
+ "height": 8,
351
+ "pixelRatio": 1,
352
+ "sdf": false
353
+ },
354
+ "OS/Names/National/Country": {
355
+ "x": 122,
356
+ "y": 292,
357
+ "width": 8,
358
+ "height": 8,
359
+ "pixelRatio": 1,
360
+ "sdf": false
361
+ },
362
+ "OS/Names/Regional/City:1": {
363
+ "x": 122,
364
+ "y": 292,
365
+ "width": 8,
366
+ "height": 8,
367
+ "pixelRatio": 1,
368
+ "sdf": false
369
+ },
370
+ "OS/Names/Regional/Capital:2": {
371
+ "x": 122,
372
+ "y": 292,
373
+ "width": 8,
374
+ "height": 8,
375
+ "pixelRatio": 1,
376
+ "sdf": false
377
+ },
378
+ "OS/Names/National/National Park:1": {
379
+ "x": 122,
380
+ "y": 292,
381
+ "width": 8,
382
+ "height": 8,
383
+ "pixelRatio": 1,
384
+ "sdf": false
385
+ },
386
+ "OS/Names/National/Town:3": {
387
+ "x": 122,
388
+ "y": 292,
389
+ "width": 8,
390
+ "height": 8,
391
+ "pixelRatio": 1,
392
+ "sdf": false
393
+ },
394
+ "OS/Names/Local/Water:1": {
395
+ "x": 122,
396
+ "y": 292,
397
+ "width": 8,
398
+ "height": 8,
399
+ "pixelRatio": 1,
400
+ "sdf": false
401
+ },
402
+ "OS/Names/Local/Sites": {
403
+ "x": 122,
404
+ "y": 292,
405
+ "width": 8,
406
+ "height": 8,
407
+ "pixelRatio": 1,
408
+ "sdf": false
409
+ },
410
+ "OS/Names/Local/Landform:1": {
411
+ "x": 122,
412
+ "y": 292,
413
+ "width": 8,
414
+ "height": 8,
415
+ "pixelRatio": 1,
416
+ "sdf": false
417
+ },
418
+ "OS/Names/National/City:2": {
419
+ "x": 122,
420
+ "y": 292,
421
+ "width": 8,
422
+ "height": 8,
423
+ "pixelRatio": 1,
424
+ "sdf": false
425
+ },
426
+ "OS/Names/National/Capital:1": {
427
+ "x": 122,
428
+ "y": 292,
429
+ "width": 8,
430
+ "height": 8,
431
+ "pixelRatio": 1,
432
+ "sdf": false
433
+ },
434
+ "OS/Names/Local/Landcover:2": {
435
+ "x": 122,
436
+ "y": 292,
437
+ "width": 8,
438
+ "height": 8,
439
+ "pixelRatio": 1,
440
+ "sdf": false
441
+ },
442
+ "OS/Names/Local/Woodland:1": {
443
+ "x": 122,
444
+ "y": 292,
445
+ "width": 8,
446
+ "height": 8,
447
+ "pixelRatio": 1,
448
+ "sdf": false
449
+ },
450
+ "OS/Names/Local/Hamlet (Local)": {
451
+ "x": 122,
452
+ "y": 292,
453
+ "width": 8,
454
+ "height": 8,
455
+ "pixelRatio": 1,
456
+ "sdf": false
457
+ },
458
+ "OS/Names/Local/Small Settlement": {
459
+ "x": 122,
460
+ "y": 292,
461
+ "width": 8,
462
+ "height": 8,
463
+ "pixelRatio": 1,
464
+ "sdf": false
465
+ },
466
+ "OS/Names/Local/Suburban Area:3": {
467
+ "x": 122,
468
+ "y": 292,
469
+ "width": 8,
470
+ "height": 8,
471
+ "pixelRatio": 1,
472
+ "sdf": false
473
+ },
474
+ "OS/Names/Local/Village:2": {
475
+ "x": 122,
476
+ "y": 292,
477
+ "width": 8,
478
+ "height": 8,
479
+ "pixelRatio": 1,
480
+ "sdf": false
481
+ },
482
+ "OS/Names/Local/Town:4": {
483
+ "x": 122,
484
+ "y": 292,
485
+ "width": 8,
486
+ "height": 8,
487
+ "pixelRatio": 1,
488
+ "sdf": false
489
+ },
490
+ "OS/Names/Local/City:3": {
491
+ "x": 122,
492
+ "y": 292,
493
+ "width": 8,
494
+ "height": 8,
495
+ "pixelRatio": 1,
496
+ "sdf": false
497
+ },
498
+ "OS/Names/Local/Capital:3": {
499
+ "x": 122,
500
+ "y": 292,
501
+ "width": 8,
502
+ "height": 8,
503
+ "pixelRatio": 1,
504
+ "sdf": false
505
+ },
506
+ "OS/Names/District/National Park:3": {
507
+ "x": 122,
508
+ "y": 292,
509
+ "width": 8,
510
+ "height": 8,
511
+ "pixelRatio": 1,
512
+ "sdf": false
513
+ },
514
+ "OS/Names/District/Landform:2": {
515
+ "x": 122,
516
+ "y": 292,
517
+ "width": 8,
518
+ "height": 8,
519
+ "pixelRatio": 1,
520
+ "sdf": false
521
+ },
522
+ "OS/Names/District/Landcover:3": {
523
+ "x": 122,
524
+ "y": 292,
525
+ "width": 8,
526
+ "height": 8,
527
+ "pixelRatio": 1,
528
+ "sdf": false
529
+ },
530
+ "OS/Names/District/Water:2": {
531
+ "x": 122,
532
+ "y": 292,
533
+ "width": 8,
534
+ "height": 8,
535
+ "pixelRatio": 1,
536
+ "sdf": false
537
+ },
538
+ "OS/Names/District/Woodland:2": {
539
+ "x": 122,
540
+ "y": 292,
541
+ "width": 8,
542
+ "height": 8,
543
+ "pixelRatio": 1,
544
+ "sdf": false
545
+ },
546
+ "OS/Names/District/Hamlet:2": {
547
+ "x": 122,
548
+ "y": 292,
549
+ "width": 8,
550
+ "height": 8,
551
+ "pixelRatio": 1,
552
+ "sdf": false
553
+ },
554
+ "OS/Names/District/Suburban Area:2": {
555
+ "x": 122,
556
+ "y": 292,
557
+ "width": 8,
558
+ "height": 8,
559
+ "pixelRatio": 1,
560
+ "sdf": false
561
+ },
562
+ "OS/Names/District/Village:3": {
563
+ "x": 122,
564
+ "y": 292,
565
+ "width": 8,
566
+ "height": 8,
567
+ "pixelRatio": 1,
568
+ "sdf": false
569
+ },
570
+ "OS/Names/District/Town:1": {
571
+ "x": 122,
572
+ "y": 292,
573
+ "width": 8,
574
+ "height": 8,
575
+ "pixelRatio": 1,
576
+ "sdf": false
577
+ },
578
+ "OS/Names/District/City:4": {
579
+ "x": 122,
580
+ "y": 292,
581
+ "width": 8,
582
+ "height": 8,
583
+ "pixelRatio": 1,
584
+ "sdf": false
585
+ },
586
+ "OS/Names/District/Capital:4": {
587
+ "x": 122,
588
+ "y": 292,
589
+ "width": 8,
590
+ "height": 8,
591
+ "pixelRatio": 1,
592
+ "sdf": false
593
+ },
594
+ "OS/Names/Regional/National Park:2": {
595
+ "x": 122,
596
+ "y": 292,
597
+ "width": 8,
598
+ "height": 8,
599
+ "pixelRatio": 1,
600
+ "sdf": false
601
+ },
602
+ "OS/Names/Regional/Hamlet:1": {
603
+ "x": 122,
604
+ "y": 292,
605
+ "width": 8,
606
+ "height": 8,
607
+ "pixelRatio": 1,
608
+ "sdf": false
609
+ },
610
+ "OS/Names/Regional/Landcover:1": {
611
+ "x": 122,
612
+ "y": 292,
613
+ "width": 8,
614
+ "height": 8,
615
+ "pixelRatio": 1,
616
+ "sdf": false
617
+ },
618
+ "OS/Names/Regional/Suburban Area:1": {
619
+ "x": 122,
620
+ "y": 292,
621
+ "width": 8,
622
+ "height": 8,
623
+ "pixelRatio": 1,
624
+ "sdf": false
625
+ },
626
+ "OS/Names/Regional/Village:1": {
627
+ "x": 122,
628
+ "y": 292,
629
+ "width": 8,
630
+ "height": 8,
631
+ "pixelRatio": 1,
632
+ "sdf": false
633
+ },
634
+ "OS/Names/Regional/Town:2": {
635
+ "x": 122,
636
+ "y": 292,
637
+ "width": 8,
638
+ "height": 8,
639
+ "pixelRatio": 1,
640
+ "sdf": false
641
+ },
642
+ "OS/CartographicSymbol/Culvert Symbol": {
643
+ "x": 130,
644
+ "y": 292,
645
+ "width": 14,
646
+ "height": 8,
647
+ "pixelRatio": 1,
648
+ "sdf": false
649
+ },
650
+ "OS/TopographicPoint/Historic Interest": {
651
+ "x": 144,
652
+ "y": 292,
653
+ "width": 6,
654
+ "height": 6,
655
+ "pixelRatio": 1,
656
+ "sdf": false
657
+ },
658
+ "OS/TopographicPoint/Inland Water": {
659
+ "x": 150,
660
+ "y": 292,
661
+ "width": 6,
662
+ "height": 6,
663
+ "pixelRatio": 1,
664
+ "sdf": false
665
+ },
666
+ "OS/TopographicPoint/Overhead Construction": {
667
+ "x": 156,
668
+ "y": 292,
669
+ "width": 6,
670
+ "height": 6,
671
+ "pixelRatio": 1,
672
+ "sdf": false
673
+ },
674
+ "OS/TopographicPoint/Roadside": {
675
+ "x": 162,
676
+ "y": 292,
677
+ "width": 6,
678
+ "height": 6,
679
+ "pixelRatio": 1,
680
+ "sdf": false
681
+ },
682
+ "OS/TopographicPoint/Spot Height": {
683
+ "x": 168,
684
+ "y": 292,
685
+ "width": 6,
686
+ "height": 6,
687
+ "pixelRatio": 1,
688
+ "sdf": false
689
+ }
690
+ }