@cdc/map 2.6.3 → 9.22.9

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 (73) hide show
  1. package/dist/cdcmap.js +32 -18
  2. package/examples/bubble-us.json +363 -0
  3. package/examples/bubble-world.json +427 -0
  4. package/examples/default-county.json +64 -12
  5. package/examples/default-hex.json +477 -0
  6. package/examples/default-usa-regions.json +118 -0
  7. package/examples/default-usa.json +1 -1
  8. package/examples/default-world-data.json +1450 -0
  9. package/examples/default-world.json +5 -3
  10. package/examples/example-city-state.json +46 -1
  11. package/examples/gallery/categorical-qualitative.json +797 -0
  12. package/examples/gallery/categorical-scale-based.json +739 -0
  13. package/examples/gallery/city-state.json +479 -0
  14. package/examples/gallery/county.json +22731 -0
  15. package/examples/gallery/equal-interval.json +1027 -0
  16. package/examples/gallery/equal-number.json +1027 -0
  17. package/examples/gallery/filterable.json +909 -0
  18. package/examples/gallery/hex-filtered.json +420 -0
  19. package/examples/gallery/hex.json +413 -0
  20. package/examples/gallery/single-state.json +21402 -0
  21. package/examples/gallery/world.json +1592 -0
  22. package/examples/private/atsdr.json +439 -0
  23. package/examples/private/atsdr_new.json +436 -0
  24. package/examples/private/bubble.json +285 -0
  25. package/examples/private/city-state.json +428 -0
  26. package/examples/private/cty-issue.json +42768 -0
  27. package/examples/private/default-usa.json +460 -0
  28. package/examples/private/default-world-data.json +1444 -0
  29. package/examples/private/default.json +968 -0
  30. package/examples/private/legend-issue.json +1 -0
  31. package/examples/private/map-rounding-error.json +42759 -0
  32. package/examples/private/map.csv +60 -0
  33. package/examples/private/mdx.json +210 -0
  34. package/examples/private/monkeypox.json +376 -0
  35. package/examples/private/regions.json +52 -0
  36. package/examples/private/valid-data-map.csv +59 -0
  37. package/examples/private/wcmsrd-13881-data.json +2858 -0
  38. package/examples/private/wcmsrd-13881.json +5823 -0
  39. package/examples/private/wcmsrd-14492-data.json +292 -0
  40. package/examples/private/wcmsrd-14492.json +114 -0
  41. package/examples/private/wcmsrd-test.json +268 -0
  42. package/examples/private/world.json +1580 -0
  43. package/examples/private/worldmap.json +1490 -0
  44. package/package.json +51 -50
  45. package/src/CdcMap.js +496 -158
  46. package/src/components/BubbleList.js +244 -0
  47. package/src/components/CityList.js +41 -5
  48. package/src/components/CountyMap.js +16 -6
  49. package/src/components/DataTable.js +25 -18
  50. package/src/components/EditorPanel.js +915 -404
  51. package/src/components/Geo.js +1 -1
  52. package/src/components/Modal.js +2 -1
  53. package/src/components/NavigationMenu.js +4 -3
  54. package/src/components/Sidebar.js +14 -19
  55. package/src/components/SingleStateMap.js +11 -5
  56. package/src/components/UsaMap.js +103 -36
  57. package/src/components/UsaRegionMap.js +320 -0
  58. package/src/components/WorldMap.js +116 -34
  59. package/src/data/country-coordinates.js +250 -0
  60. package/src/data/{dfc-map.json → county-map.json} +0 -0
  61. package/src/data/initial-state.js +20 -2
  62. package/src/data/state-coordinates.js +55 -0
  63. package/src/data/supported-geos.js +96 -15
  64. package/src/data/us-regions-topo-2.json +360525 -0
  65. package/src/data/us-regions-topo.json +37894 -0
  66. package/src/hooks/useColorPalette.ts +96 -0
  67. package/src/index.html +7 -4
  68. package/src/scss/editor-panel.scss +78 -57
  69. package/src/scss/main.scss +1 -1
  70. package/src/scss/map.scss +112 -2
  71. package/src/scss/sidebar.scss +2 -1
  72. package/src/data/color-palettes.js +0 -200
  73. package/src/images/map-folded.svg +0 -1
@@ -0,0 +1,797 @@
1
+ {
2
+ "columns": {
3
+ "geo": {
4
+ "name": "STATE",
5
+ "label": "Location",
6
+ "tooltip": false,
7
+ "dataTable": true
8
+ },
9
+ "primary": {
10
+ "name": "Location",
11
+ "label": "Location",
12
+ "prefix": "",
13
+ "suffix": "",
14
+ "dataTable": true,
15
+ "tooltip": true
16
+ },
17
+ "navigate": {
18
+ "name": "URL",
19
+ "tooltip": false,
20
+ "dataTable": false
21
+ },
22
+ "Rate": {
23
+ "name": "Rate",
24
+ "label": "Rate",
25
+ "prefix": "",
26
+ "suffix": "",
27
+ "tooltip": true,
28
+ "dataTable": true
29
+ }
30
+ },
31
+ "legend": {
32
+ "numberOfItems": 4,
33
+ "position": "side",
34
+ "title": "Legend Title",
35
+ "description": "Legend Text",
36
+ "type": "category",
37
+ "specialClasses": [],
38
+ "data": [],
39
+ "categoryValuesOrder": [
40
+ "Vehicle",
41
+ "Home",
42
+ "Office",
43
+ "School"
44
+ ],
45
+ "disabledAmt": 0,
46
+ "geosPerColor": {},
47
+ "descriptions": {},
48
+ "unified": false,
49
+ "singleColumn": false,
50
+ "dynamicDescription": false
51
+ },
52
+ "data": [
53
+ {
54
+ "STATE": "AL",
55
+ "Location": "Vehicle",
56
+ "Rate": "97",
57
+ "URL": "https:\/\/www.cdc.gov\/",
58
+ "$$hashKey": "object:195",
59
+ "stateabbreviation": "al",
60
+ "statename": "Alabama",
61
+ "stateId": "1",
62
+ "timeIntervalDataVal": 0,
63
+ "color": "class4_color1"
64
+ },
65
+ {
66
+ "STATE": "AK",
67
+ "Location": "Home",
68
+ "Rate": "92",
69
+ "URL": "https:\/\/www.cdc.gov\/",
70
+ "$$hashKey": "object:196",
71
+ "stateabbreviation": "ak",
72
+ "statename": "Alaska",
73
+ "stateId": "2",
74
+ "timeIntervalDataVal": 0,
75
+ "color": "class4_color2"
76
+ },
77
+ {
78
+ "STATE": "AS",
79
+ "Location": "Office",
80
+ "Rate": "85",
81
+ "URL": "https:\/\/www.cdc.gov\/",
82
+ "$$hashKey": "object:197",
83
+ "type": "territory",
84
+ "stateabbreviation": "as",
85
+ "statename": "American Samoa",
86
+ "stateId": "60",
87
+ "timeIntervalDataVal": 0,
88
+ "color": "class4_color3"
89
+ },
90
+ {
91
+ "STATE": "AZ",
92
+ "Location": "School",
93
+ "Rate": "82",
94
+ "URL": "https:\/\/www.cdc.gov\/",
95
+ "$$hashKey": "object:198",
96
+ "stateabbreviation": "az",
97
+ "statename": "Arizona",
98
+ "stateId": "4",
99
+ "timeIntervalDataVal": 0,
100
+ "color": "class4_color4"
101
+ },
102
+ {
103
+ "STATE": "AR",
104
+ "Location": "Vehicle",
105
+ "Rate": "84",
106
+ "URL": "https:\/\/www.cdc.gov\/",
107
+ "$$hashKey": "object:199",
108
+ "stateabbreviation": "ar",
109
+ "statename": "Arkansas",
110
+ "textoffsety": 3,
111
+ "stateId": "5",
112
+ "timeIntervalDataVal": 0,
113
+ "color": "class4_color1"
114
+ },
115
+ {
116
+ "STATE": "CA",
117
+ "Location": "Home",
118
+ "Rate": "96",
119
+ "URL": "https:\/\/www.cdc.gov\/",
120
+ "stateabbreviation": "ca",
121
+ "statename": "California",
122
+ "textoffsety": 10,
123
+ "stateId": "6",
124
+ "timeIntervalDataVal": 0,
125
+ "color": "class4_color2"
126
+ },
127
+ {
128
+ "STATE": "CO",
129
+ "Location": "Office",
130
+ "Rate": "77",
131
+ "URL": "https:\/\/www.cdc.gov\/",
132
+ "stateabbreviation": "co",
133
+ "statename": "Colorado",
134
+ "textoffsety": 3,
135
+ "stateId": "8",
136
+ "timeIntervalDataVal": 0,
137
+ "color": "class4_color3"
138
+ },
139
+ {
140
+ "STATE": "CT",
141
+ "Location": "School",
142
+ "Rate": "97",
143
+ "URL": "https:\/\/www.cdc.gov\/",
144
+ "type": "smallstate",
145
+ "stateabbreviation": "ct",
146
+ "statename": "Connecticut",
147
+ "textoffsetx": 2,
148
+ "textoffsety": 4,
149
+ "stateId": "9",
150
+ "timeIntervalDataVal": 0,
151
+ "color": "class4_color4"
152
+ },
153
+ {
154
+ "STATE": "DE",
155
+ "Location": "Vehicle",
156
+ "Rate": "92",
157
+ "URL": "https:\/\/www.cdc.gov\/",
158
+ "type": "smallstate",
159
+ "stateabbreviation": "de",
160
+ "statename": "Delaware",
161
+ "stateId": "10",
162
+ "timeIntervalDataVal": 0,
163
+ "color": "class4_color1"
164
+ },
165
+ {
166
+ "STATE": "DC",
167
+ "Location": "Home",
168
+ "Rate": "85",
169
+ "URL": "https:\/\/www.cdc.gov\/",
170
+ "type": "smallstate",
171
+ "stateabbreviation": "dc",
172
+ "statename": "District of Columbia",
173
+ "stateId": "11",
174
+ "timeIntervalDataVal": 0,
175
+ "color": "class4_color2"
176
+ },
177
+ {
178
+ "STATE": "FL",
179
+ "Location": "Office",
180
+ "Rate": "82",
181
+ "URL": "https:\/\/www.cdc.gov\/",
182
+ "stateabbreviation": "fl",
183
+ "statename": "Florida",
184
+ "textoffsetx": 8,
185
+ "textoffsety": 7,
186
+ "stateId": "12",
187
+ "timeIntervalDataVal": 0,
188
+ "color": "class4_color3"
189
+ },
190
+ {
191
+ "STATE": "GA",
192
+ "Location": "School",
193
+ "Rate": "84",
194
+ "URL": "https:\/\/www.cdc.gov\/",
195
+ "stateabbreviation": "ga",
196
+ "statename": "Georgia",
197
+ "stateId": "13",
198
+ "timeIntervalDataVal": 0,
199
+ "color": "class4_color4"
200
+ },
201
+ {
202
+ "STATE": "GU",
203
+ "Location": "Vehicle",
204
+ "Rate": "96",
205
+ "URL": "https:\/\/www.cdc.gov\/",
206
+ "type": "territory",
207
+ "stateabbreviation": "gu",
208
+ "statename": "Guam",
209
+ "stateId": "66",
210
+ "timeIntervalDataVal": 0,
211
+ "color": "class4_color1"
212
+ },
213
+ {
214
+ "STATE": "HI",
215
+ "Location": "Home",
216
+ "Rate": "77",
217
+ "URL": "https:\/\/www.cdc.gov\/",
218
+ "stateabbreviation": "hi",
219
+ "statename": "Hawaii",
220
+ "textoffsetx": -15,
221
+ "textoffsety": 7,
222
+ "stateId": "15",
223
+ "timeIntervalDataVal": 0,
224
+ "color": "class4_color2"
225
+ },
226
+ {
227
+ "STATE": "ID",
228
+ "Location": "Office",
229
+ "Rate": "97",
230
+ "URL": "https:\/\/www.cdc.gov\/",
231
+ "stateabbreviation": "id",
232
+ "statename": "Idaho",
233
+ "textoffsety": 10,
234
+ "stateId": "16",
235
+ "timeIntervalDataVal": 0,
236
+ "color": "class4_color3"
237
+ },
238
+ {
239
+ "STATE": "IL",
240
+ "Location": "School",
241
+ "Rate": "92",
242
+ "URL": "https:\/\/www.cdc.gov\/",
243
+ "stateabbreviation": "il",
244
+ "statename": "Illinois",
245
+ "stateId": "17",
246
+ "timeIntervalDataVal": 0,
247
+ "color": "class4_color4"
248
+ },
249
+ {
250
+ "STATE": "IN",
251
+ "Location": "Vehicle",
252
+ "Rate": "85",
253
+ "URL": "https:\/\/www.cdc.gov\/",
254
+ "stateabbreviation": "in",
255
+ "statename": "Indiana",
256
+ "stateId": "18",
257
+ "timeIntervalDataVal": 0,
258
+ "color": "class4_color1"
259
+ },
260
+ {
261
+ "STATE": "IA",
262
+ "Location": "Home",
263
+ "Rate": "82",
264
+ "URL": "https:\/\/www.cdc.gov\/",
265
+ "stateabbreviation": "ia",
266
+ "statename": "Iowa",
267
+ "textoffsety": 3,
268
+ "stateId": "19",
269
+ "timeIntervalDataVal": 0,
270
+ "color": "class4_color2"
271
+ },
272
+ {
273
+ "STATE": "KS",
274
+ "Location": "Office",
275
+ "Rate": "84",
276
+ "URL": "https:\/\/www.cdc.gov\/",
277
+ "stateabbreviation": "ks",
278
+ "statename": "Kansas",
279
+ "textoffsety": 5,
280
+ "stateId": "20",
281
+ "timeIntervalDataVal": 0,
282
+ "color": "class4_color3"
283
+ },
284
+ {
285
+ "STATE": "KY",
286
+ "Location": "School",
287
+ "Rate": "96",
288
+ "URL": "https:\/\/www.cdc.gov\/",
289
+ "stateabbreviation": "ky",
290
+ "statename": "Kentucky",
291
+ "textoffsetx": 4,
292
+ "textoffsety": 3,
293
+ "stateId": "21",
294
+ "timeIntervalDataVal": 0,
295
+ "color": "class4_color4"
296
+ },
297
+ {
298
+ "STATE": "LA",
299
+ "Location": "Vehicle",
300
+ "Rate": "77",
301
+ "URL": "https:\/\/www.cdc.gov\/",
302
+ "stateabbreviation": "la",
303
+ "statename": "Louisiana",
304
+ "textoffsetx": -5,
305
+ "stateId": "22",
306
+ "timeIntervalDataVal": 0,
307
+ "color": "class4_color1"
308
+ },
309
+ {
310
+ "STATE": "ME",
311
+ "Location": "Home",
312
+ "Rate": "97",
313
+ "URL": "https:\/\/www.cdc.gov\/",
314
+ "stateabbreviation": "me",
315
+ "statename": "Maine",
316
+ "stateId": "23",
317
+ "timeIntervalDataVal": 0,
318
+ "color": "class4_color2"
319
+ },
320
+ {
321
+ "STATE": "MH",
322
+ "Location": "Office",
323
+ "Rate": "92",
324
+ "URL": "https:\/\/www.cdc.gov\/",
325
+ "type": "territory",
326
+ "stateabbreviation": "mh",
327
+ "statename": "Marshall Islands",
328
+ "stateId": "68",
329
+ "timeIntervalDataVal": 0,
330
+ "color": "class4_color3"
331
+ },
332
+ {
333
+ "STATE": "MD",
334
+ "Location": "School",
335
+ "Rate": "85",
336
+ "URL": "https:\/\/www.cdc.gov\/",
337
+ "type": "smallstate",
338
+ "stateabbreviation": "md",
339
+ "statename": "Maryland",
340
+ "textoffsetx": 2,
341
+ "textoffsety": 2,
342
+ "stateId": "24",
343
+ "timeIntervalDataVal": 0,
344
+ "color": "class4_color4"
345
+ },
346
+ {
347
+ "STATE": "MA",
348
+ "Location": "Vehicle",
349
+ "Rate": "82",
350
+ "URL": "https:\/\/www.cdc.gov\/",
351
+ "stateabbreviation": "ma",
352
+ "statename": "Massachusetts",
353
+ "textoffsety": 3,
354
+ "stateId": "25",
355
+ "timeIntervalDataVal": 0,
356
+ "color": "class4_color1"
357
+ },
358
+ {
359
+ "STATE": "MI",
360
+ "Location": "Home",
361
+ "Rate": "84",
362
+ "URL": "https:\/\/www.cdc.gov\/",
363
+ "stateabbreviation": "mi",
364
+ "statename": "Michigan",
365
+ "textoffsetx": 6,
366
+ "textoffsety": 10,
367
+ "stateId": "26",
368
+ "timeIntervalDataVal": 0,
369
+ "color": "class4_color2"
370
+ },
371
+ {
372
+ "STATE": "FM",
373
+ "Location": "Office",
374
+ "Rate": "96",
375
+ "URL": "https:\/\/www.cdc.gov\/",
376
+ "type": "territory",
377
+ "stateabbreviation": "fm",
378
+ "statename": "Micronesia",
379
+ "stateId": "71",
380
+ "timeIntervalDataVal": 0,
381
+ "color": "class4_color3"
382
+ },
383
+ {
384
+ "STATE": "MN",
385
+ "Location": "School",
386
+ "Rate": "77",
387
+ "URL": "https:\/\/www.cdc.gov\/",
388
+ "stateabbreviation": "mn",
389
+ "statename": "Minnesota",
390
+ "stateId": "27",
391
+ "timeIntervalDataVal": 0,
392
+ "color": "class4_color4"
393
+ },
394
+ {
395
+ "STATE": "MS",
396
+ "Location": "Vehicle",
397
+ "Rate": "97",
398
+ "URL": "https:\/\/www.cdc.gov\/",
399
+ "stateabbreviation": "ms",
400
+ "statename": "Mississippi",
401
+ "stateId": "28",
402
+ "timeIntervalDataVal": 0,
403
+ "color": "class4_color1"
404
+ },
405
+ {
406
+ "STATE": "MO",
407
+ "Location": "Home",
408
+ "Rate": "92",
409
+ "URL": "https:\/\/www.cdc.gov\/",
410
+ "stateabbreviation": "mo",
411
+ "statename": "Missouri",
412
+ "textoffsety": 5,
413
+ "stateId": "29",
414
+ "timeIntervalDataVal": 0,
415
+ "color": "class4_color2"
416
+ },
417
+ {
418
+ "STATE": "MT",
419
+ "Location": "Office",
420
+ "Rate": "85",
421
+ "URL": "https:\/\/www.cdc.gov\/",
422
+ "stateabbreviation": "mt",
423
+ "statename": "Montana",
424
+ "stateId": "30",
425
+ "timeIntervalDataVal": 0,
426
+ "color": "class4_color3"
427
+ },
428
+ {
429
+ "STATE": "NE",
430
+ "Location": "School",
431
+ "Rate": "82",
432
+ "URL": "https:\/\/www.cdc.gov\/",
433
+ "stateabbreviation": "ne",
434
+ "statename": "Nebraska",
435
+ "textoffsety": 3,
436
+ "stateId": "31",
437
+ "timeIntervalDataVal": 0,
438
+ "color": "class4_color4"
439
+ },
440
+ {
441
+ "STATE": "NV",
442
+ "Location": "Vehicle",
443
+ "Rate": "84",
444
+ "URL": "https:\/\/www.cdc.gov\/",
445
+ "stateabbreviation": "nv",
446
+ "statename": "Nevada",
447
+ "stateId": "32",
448
+ "timeIntervalDataVal": 0,
449
+ "color": "class4_color1"
450
+ },
451
+ {
452
+ "STATE": "NH",
453
+ "Location": "Home",
454
+ "Rate": "96",
455
+ "URL": "https:\/\/www.cdc.gov\/",
456
+ "type": "smallstate",
457
+ "stateabbreviation": "nh",
458
+ "statename": "New Hampshire",
459
+ "textoffsety": 6,
460
+ "stateId": "33",
461
+ "timeIntervalDataVal": 0,
462
+ "color": "class4_color2"
463
+ },
464
+ {
465
+ "STATE": "NJ",
466
+ "Location": "Office",
467
+ "Rate": "77",
468
+ "URL": "https:\/\/www.cdc.gov\/",
469
+ "type": "smallstate",
470
+ "stateabbreviation": "nj",
471
+ "statename": "New Jersey",
472
+ "stateId": "34",
473
+ "timeIntervalDataVal": 0,
474
+ "color": "class4_color3"
475
+ },
476
+ {
477
+ "STATE": "NM",
478
+ "Location": "School",
479
+ "Rate": "97",
480
+ "URL": "https:\/\/www.cdc.gov\/",
481
+ "stateabbreviation": "nm",
482
+ "statename": "New Mexico",
483
+ "textoffsety": 3,
484
+ "stateId": "35",
485
+ "timeIntervalDataVal": 0,
486
+ "color": "class4_color4"
487
+ },
488
+ {
489
+ "STATE": "NY",
490
+ "Location": "Vehicle",
491
+ "Rate": "92",
492
+ "URL": "https:\/\/www.cdc.gov\/",
493
+ "stateabbreviation": "ny",
494
+ "statename": "New York",
495
+ "stateId": "36",
496
+ "timeIntervalDataVal": 0,
497
+ "color": "class4_color1"
498
+ },
499
+ {
500
+ "STATE": "NC",
501
+ "Location": "Home",
502
+ "Rate": "85",
503
+ "URL": "https:\/\/www.cdc.gov\/",
504
+ "stateabbreviation": "nc",
505
+ "statename": "North Carolina",
506
+ "textoffsety": 3,
507
+ "stateId": "37",
508
+ "timeIntervalDataVal": 0,
509
+ "color": "class4_color2"
510
+ },
511
+ {
512
+ "STATE": "ND",
513
+ "Location": "Office",
514
+ "Rate": "82",
515
+ "URL": "https:\/\/www.cdc.gov\/",
516
+ "stateabbreviation": "nd",
517
+ "statename": "North Dakota",
518
+ "textoffsety": 3,
519
+ "stateId": "38",
520
+ "timeIntervalDataVal": 0,
521
+ "color": "class4_color3"
522
+ },
523
+ {
524
+ "STATE": "MP",
525
+ "Location": "School",
526
+ "Rate": "84",
527
+ "URL": "https:\/\/www.cdc.gov\/",
528
+ "type": "territory",
529
+ "stateabbreviation": "mp",
530
+ "statename": "Northern Mariana Islands",
531
+ "stateId": "69",
532
+ "timeIntervalDataVal": 0,
533
+ "color": "class4_color4"
534
+ },
535
+ {
536
+ "STATE": "OH",
537
+ "Location": "Vehicle",
538
+ "Rate": "96",
539
+ "URL": "https:\/\/www.cdc.gov\/",
540
+ "stateabbreviation": "oh",
541
+ "statename": "Ohio",
542
+ "textoffsety": 5,
543
+ "stateId": "39",
544
+ "timeIntervalDataVal": 0,
545
+ "color": "class4_color1"
546
+ },
547
+ {
548
+ "STATE": "OK",
549
+ "Location": "Home",
550
+ "Rate": "77",
551
+ "URL": "https:\/\/www.cdc.gov\/",
552
+ "stateabbreviation": "ok",
553
+ "statename": "Oklahoma",
554
+ "textoffsety": 3,
555
+ "stateId": "40",
556
+ "timeIntervalDataVal": 0,
557
+ "color": "class4_color2"
558
+ },
559
+ {
560
+ "STATE": "OR",
561
+ "Location": "Office",
562
+ "Rate": "97",
563
+ "URL": "https:\/\/www.cdc.gov\/",
564
+ "stateabbreviation": "or",
565
+ "statename": "Oregon",
566
+ "textoffsety": 3,
567
+ "stateId": "41",
568
+ "timeIntervalDataVal": 0,
569
+ "color": "class4_color3"
570
+ },
571
+ {
572
+ "STATE": "PW",
573
+ "Location": "School",
574
+ "Rate": "92",
575
+ "URL": "https:\/\/www.cdc.gov\/",
576
+ "type": "territory",
577
+ "stateabbreviation": "pw",
578
+ "statename": "Palau",
579
+ "stateId": "70",
580
+ "timeIntervalDataVal": 0,
581
+ "color": "class4_color4"
582
+ },
583
+ {
584
+ "STATE": "PA",
585
+ "Location": "Vehicle",
586
+ "Rate": "85",
587
+ "URL": "https:\/\/www.cdc.gov\/",
588
+ "stateabbreviation": "pa",
589
+ "statename": "Pennsylvania",
590
+ "textoffsety": 5,
591
+ "stateId": "42",
592
+ "timeIntervalDataVal": 0,
593
+ "color": "class4_color1"
594
+ },
595
+ {
596
+ "STATE": "PR",
597
+ "Location": "Home",
598
+ "Rate": "82",
599
+ "URL": "https:\/\/www.cdc.gov\/",
600
+ "type": "territory",
601
+ "stateabbreviation": "pr",
602
+ "statename": "Puerto Rico",
603
+ "stateId": "72",
604
+ "timeIntervalDataVal": 0,
605
+ "color": "class4_color2"
606
+ },
607
+ {
608
+ "STATE": "RI",
609
+ "Location": "Office",
610
+ "Rate": "84",
611
+ "URL": "https:\/\/www.cdc.gov\/",
612
+ "type": "smallstate",
613
+ "stateabbreviation": "ri",
614
+ "statename": "Rhode Island",
615
+ "stateId": "44",
616
+ "timeIntervalDataVal": 0,
617
+ "color": "class4_color3"
618
+ },
619
+ {
620
+ "STATE": "SC",
621
+ "Location": "School",
622
+ "Rate": "96",
623
+ "URL": "https:\/\/www.cdc.gov\/",
624
+ "stateabbreviation": "sc",
625
+ "statename": "South Carolina",
626
+ "textoffsety": 3,
627
+ "stateId": "45",
628
+ "timeIntervalDataVal": 0,
629
+ "color": "class4_color4"
630
+ },
631
+ {
632
+ "STATE": "SD",
633
+ "Location": "Vehicle",
634
+ "Rate": "77",
635
+ "URL": "https:\/\/www.cdc.gov\/",
636
+ "stateabbreviation": "sd",
637
+ "statename": "South Dakota",
638
+ "textoffsety": 3,
639
+ "stateId": "46",
640
+ "timeIntervalDataVal": 0,
641
+ "color": "class4_color1"
642
+ },
643
+ {
644
+ "STATE": "TN",
645
+ "Location": "Home",
646
+ "Rate": "97",
647
+ "URL": "https:\/\/www.cdc.gov\/",
648
+ "stateabbreviation": "tn",
649
+ "statename": "Tennessee",
650
+ "textoffsety": 4,
651
+ "stateId": "47",
652
+ "timeIntervalDataVal": 0,
653
+ "color": "class4_color2"
654
+ },
655
+ {
656
+ "STATE": "TX",
657
+ "Location": "Office",
658
+ "Rate": "92",
659
+ "URL": "https:\/\/www.cdc.gov\/",
660
+ "stateabbreviation": "tx",
661
+ "statename": "Texas",
662
+ "stateId": "48",
663
+ "timeIntervalDataVal": 0,
664
+ "color": "class4_color3"
665
+ },
666
+ {
667
+ "STATE": "UT",
668
+ "Location": "School",
669
+ "Rate": "85",
670
+ "URL": "https:\/\/www.cdc.gov\/",
671
+ "stateabbreviation": "ut",
672
+ "statename": "Utah",
673
+ "textoffsety": 3,
674
+ "stateId": "49",
675
+ "timeIntervalDataVal": 0,
676
+ "color": "class4_color4"
677
+ },
678
+ {
679
+ "STATE": "VT",
680
+ "Location": "Vehicle",
681
+ "Rate": "82",
682
+ "URL": "https:\/\/www.cdc.gov\/",
683
+ "type": "smallstate",
684
+ "stateabbreviation": "vt",
685
+ "statename": "Vermont",
686
+ "stateId": "50",
687
+ "timeIntervalDataVal": 0,
688
+ "color": "class4_color1"
689
+ },
690
+ {
691
+ "STATE": "VI",
692
+ "Location": "Home",
693
+ "Rate": "84",
694
+ "URL": "https:\/\/www.cdc.gov\/",
695
+ "type": "territory",
696
+ "stateabbreviation": "vi",
697
+ "statename": "Virgin Islands",
698
+ "stateId": "78",
699
+ "timeIntervalDataVal": 0,
700
+ "color": "class4_color2"
701
+ },
702
+ {
703
+ "STATE": "VA",
704
+ "Location": "Office",
705
+ "Rate": "96",
706
+ "URL": "https:\/\/www.cdc.gov\/",
707
+ "stateabbreviation": "va",
708
+ "statename": "Virginia",
709
+ "textoffsety": 3,
710
+ "stateId": "51",
711
+ "timeIntervalDataVal": 0,
712
+ "color": "class4_color3"
713
+ },
714
+ {
715
+ "STATE": "WA",
716
+ "Location": "School",
717
+ "Rate": "77",
718
+ "URL": "https:\/\/www.cdc.gov\/",
719
+ "stateabbreviation": "wa",
720
+ "statename": "Washington",
721
+ "textoffsety": 5,
722
+ "stateId": "53",
723
+ "timeIntervalDataVal": 0,
724
+ "color": "class4_color4"
725
+ },
726
+ {
727
+ "STATE": "WV",
728
+ "Location": "Vehicle",
729
+ "Rate": "97",
730
+ "URL": "https:\/\/www.cdc.gov\/",
731
+ "stateabbreviation": "wv",
732
+ "statename": "West Virginia",
733
+ "textoffsetx": -4,
734
+ "textoffsety": 10,
735
+ "stateId": "54",
736
+ "timeIntervalDataVal": 0,
737
+ "color": "class4_color1"
738
+ },
739
+ {
740
+ "STATE": "WI",
741
+ "Location": "Home",
742
+ "Rate": "92",
743
+ "URL": "https:\/\/www.cdc.gov\/",
744
+ "stateabbreviation": "wi",
745
+ "statename": "Wisconsin",
746
+ "stateId": "55",
747
+ "timeIntervalDataVal": 0,
748
+ "color": "class4_color2"
749
+ },
750
+ {
751
+ "STATE": "WY",
752
+ "Location": "Office",
753
+ "Rate": "85",
754
+ "URL": "https:\/\/www.cdc.gov\/",
755
+ "stateabbreviation": "wy",
756
+ "statename": "Wyoming",
757
+ "textoffsety": 3,
758
+ "stateId": "56",
759
+ "timeIntervalDataVal": 0,
760
+ "color": "class4_color3"
761
+ }
762
+ ],
763
+ "filters": [],
764
+ "sharing": {
765
+ "enabled": false,
766
+ "dataHost": "wcms-wp.cdc.gov",
767
+ "configUrl": "\/wcms\/4.0\/cdc-wp\/data-presentation\/page-elements\/qualitative-map.json"
768
+ },
769
+ "general": {
770
+ "title": "Qualitative Categorical Map",
771
+ "subtext": "Map subtext...",
772
+ "type": "data",
773
+ "geoType": "us",
774
+ "headerColor": "theme-cyan",
775
+ "showSidebar": true,
776
+ "showTitle": true,
777
+ "showDownloadButton": true,
778
+ "expandDataTable": false,
779
+ "backgroundColor": "#f5f5f5",
780
+ "geoBorderColor": "darkGray",
781
+ "territoriesLabel": "Territories",
782
+ "modalOpen": false,
783
+ "modalContent": null,
784
+ "language": "en",
785
+ "parentUrl": "https:\/\/wcms-wp.cdc.gov\/wcms\/wp-admin\/post.php?post=36361&action=edit"
786
+ },
787
+ "dataTable": {
788
+ "title": "Data Table"
789
+ },
790
+ "tooltips": {
791
+ "appearanceType": "hover",
792
+ "linkLabel": "Learn More",
793
+ "capitalizeLabels": true
794
+ },
795
+ "color": "qualitative2",
796
+ "type": "map"
797
+ }