@defra/forms-engine-plugin 4.0.41 → 4.0.42

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