@cdc/map 4.24.10 → 4.24.12-2

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 (57) hide show
  1. package/dist/cdcmap.js +33447 -32769
  2. package/examples/default-geocode.json +13 -4
  3. package/examples/default-usa-regions.json +267 -117
  4. package/examples/example-city-state.json +6 -3
  5. package/examples/pattern.json +861 -0
  6. package/examples/private/DEV-9644.json +184 -0
  7. package/examples/private/DEV-9989.json +229 -0
  8. package/examples/private/ardi.json +180 -0
  9. package/examples/private/colors 2.json +416 -0
  10. package/examples/private/colors.json +416 -0
  11. package/examples/private/colors.json.zip +0 -0
  12. package/examples/private/customColors.json +45348 -0
  13. package/examples/private/default-patterns.json +867 -0
  14. package/examples/private/test.json +1632 -0
  15. package/index.html +4 -5
  16. package/package.json +3 -3
  17. package/src/CdcMap.tsx +93 -83
  18. package/src/_stories/CdcMap.Legend.Gradient.stories.tsx +67 -0
  19. package/src/_stories/CdcMap.Legend.stories.tsx +40 -0
  20. package/src/_stories/CdcMap.Patterns.stories.tsx +29 -0
  21. package/src/_stories/CdcMap.stories.tsx +59 -0
  22. package/src/_stories/UsaMap.NoData.stories.tsx +19 -0
  23. package/src/_stories/_mock/custom-layer-map.json +1117 -0
  24. package/src/_stories/_mock/default-patterns.json +865 -0
  25. package/src/_stories/_mock/example-city-state.json +858 -0
  26. package/src/_stories/_mock/usa-state-gradient.json +238 -0
  27. package/src/_stories/_mock/wastewater-map.json +208 -0
  28. package/src/components/CityList.tsx +5 -2
  29. package/src/components/EditorPanel/components/EditorPanel.tsx +68 -295
  30. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +27 -23
  31. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +75 -16
  32. package/src/components/Legend/components/Legend.tsx +42 -20
  33. package/src/components/Legend/components/index.scss +24 -24
  34. package/src/components/UsaMap/components/HexIcon.tsx +7 -1
  35. package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +40 -6
  36. package/src/components/UsaMap/components/SingleState/SingleState.StateOutput.tsx +10 -2
  37. package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +57 -12
  38. package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +95 -21
  39. package/src/components/UsaMap/components/Territory/TerritoryShape.ts +13 -0
  40. package/src/components/UsaMap/components/UsaMap.County.tsx +11 -13
  41. package/src/components/UsaMap/components/UsaMap.Region.tsx +59 -16
  42. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +2 -1
  43. package/src/components/UsaMap/components/UsaMap.State.tsx +61 -63
  44. package/src/components/UsaMap/helpers/shapes.ts +5 -4
  45. package/src/components/WorldMap/WorldMap.tsx +77 -16
  46. package/src/data/initial-state.js +2 -1
  47. package/src/helpers/applyColorToLegend.ts +80 -0
  48. package/src/helpers/colors.ts +23 -0
  49. package/src/hooks/useTooltip.ts +9 -6
  50. package/src/scss/editor-panel.scss +0 -3
  51. package/src/scss/filters.scss +1 -9
  52. package/src/scss/main.scss +0 -5
  53. package/src/scss/map.scss +11 -63
  54. package/src/types/MapConfig.ts +8 -2
  55. package/src/types/MapContext.ts +1 -0
  56. package/examples/default-patterns.json +0 -579
  57. package/src/scss/datatable.scss +0 -6
@@ -0,0 +1,1117 @@
1
+ {
2
+ "general": {
3
+ "title": "Example U.S. Data Map with Custom Geographic Layer",
4
+ "subtext": "Map subtext",
5
+ "type": "data",
6
+ "geoType": "us",
7
+ "headerColor": "theme-cyan",
8
+ "showSidebar": true,
9
+ "showTitle": true,
10
+ "showDownloadButton": true,
11
+ "expandDataTable": false,
12
+ "backgroundColor": "#f5f5f5",
13
+ "geoBorderColor": "darkGray",
14
+ "territoriesLabel": "Territories",
15
+ "language": "en",
16
+ "hasRegions": false,
17
+ "showDownloadMediaButton": false,
18
+ "displayAsHex": false,
19
+ "displayStateLabels": false,
20
+ "territoriesAlwaysShow": false,
21
+ "geoLabelOverride": "",
22
+ "fullBorder": false,
23
+ "palette": {
24
+ "isReversed": false
25
+ },
26
+ "allowMapZoom": true,
27
+ "hideGeoColumnInTooltip": false,
28
+ "hidePrimaryColumnInTooltip": false,
29
+ "statePicked": {
30
+ "fipsCode": "01",
31
+ "stateName": "Alabama"
32
+ },
33
+ "convertFipsCodes": true
34
+ },
35
+ "type": "map",
36
+ "color": "yelloworangebrown",
37
+ "columns": {
38
+ "geo": {
39
+ "name": "STATE",
40
+ "label": "Location",
41
+ "tooltip": false,
42
+ "dataTable": true
43
+ },
44
+ "primary": {
45
+ "name": "Rate",
46
+ "label": "Rate",
47
+ "prefix": "",
48
+ "suffix": "%",
49
+ "dataTable": true,
50
+ "tooltip": true
51
+ },
52
+ "navigate": {
53
+ "name": "URL",
54
+ "tooltip": false,
55
+ "dataTable": false
56
+ },
57
+ "Location": {
58
+ "name": "Location",
59
+ "label": "Location",
60
+ "prefix": "",
61
+ "suffix": "",
62
+ "tooltip": true,
63
+ "dataTable": true
64
+ },
65
+ "geosInRegion": {
66
+ "name": ""
67
+ },
68
+ "latitude": {
69
+ "name": ""
70
+ },
71
+ "longitude": {
72
+ "name": ""
73
+ }
74
+ },
75
+ "legend": {
76
+ "numberOfItems": 4,
77
+ "position": "side",
78
+ "title": "Title of the Map",
79
+ "description": "Legend of the Map",
80
+ "type": "equalinterval",
81
+ "specialClasses": [],
82
+ "geosPerColor": {},
83
+ "unified": false,
84
+ "singleColumn": true,
85
+ "descriptions": {},
86
+ "dynamicDescription": false,
87
+ "singleRow": false,
88
+ "showSpecialClassesLast": false,
89
+ "verticalSorted": false
90
+ },
91
+ "filters": [],
92
+ "table": {
93
+ "label": "Data Table",
94
+ "expanded": false,
95
+ "limitHeight": false,
96
+ "height": "",
97
+ "caption": "",
98
+ "showDownloadUrl": false,
99
+ "showDataTableLink": true,
100
+ "showFullGeoNameInCSV": false,
101
+ "forceDisplay": true,
102
+ "download": true,
103
+ "indexLabel": "",
104
+ "wrapColumns": false
105
+ },
106
+ "tooltips": {
107
+ "appearanceType": "hover",
108
+ "linkLabel": "Learn More",
109
+ "capitalizeLabels": true,
110
+ "opacity": 90
111
+ },
112
+ "visual": {
113
+ "minBubbleSize": 1,
114
+ "maxBubbleSize": 20,
115
+ "extraBubbleBorder": false,
116
+ "cityStyle": "circle",
117
+ "geoCodeCircleSize": 2,
118
+ "showBubbleZeros": false,
119
+ "cityStyleLabel": "",
120
+ "additionalCityStyles": []
121
+ },
122
+ "mapPosition": {
123
+ "coordinates": [0, 30],
124
+ "zoom": 1
125
+ },
126
+ "map": {
127
+ "layers": [
128
+ {
129
+ "name": "Oregon",
130
+ "url": "https://www.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/oregon-topojson.json",
131
+ "namespace": "cove (1)",
132
+ "fillOpacity": 0.75,
133
+ "fill": "aqua",
134
+ "strokeWidth": "2",
135
+ "tooltip": "Oregon"
136
+ }
137
+ ],
138
+ "patterns": []
139
+ },
140
+ "hexMap": {
141
+ "type": "",
142
+ "shapeGroups": [
143
+ {
144
+ "legendTitle": "",
145
+ "legendDescription": "",
146
+ "items": [
147
+ {
148
+ "key": "",
149
+ "shape": "Arrow Up",
150
+ "column": "",
151
+ "operator": "=",
152
+ "value": ""
153
+ }
154
+ ]
155
+ }
156
+ ]
157
+ },
158
+ "filterBehavior": "Filter Change",
159
+ "data": [
160
+ {
161
+ "STATE": "AL",
162
+ "Rate": 30,
163
+ "Location": "Vehicle",
164
+ "URL": "https://www.cdc.gov/",
165
+ "$$hashKey": "object:195",
166
+ "stateabbreviation": "al",
167
+ "statename": "Alabama",
168
+ "stateId": "1",
169
+ "timeIntervalDataVal": 0,
170
+ "color": "class4_color1",
171
+ "$$stateabbreviation": "al",
172
+ "$$statename": "Alabama",
173
+ "$$stateId": "1",
174
+ "$$color": "class4_color1"
175
+ },
176
+ {
177
+ "STATE": "AK",
178
+ "Rate": 40,
179
+ "Location": "Work",
180
+ "URL": "https://www.cdc.gov/",
181
+ "$$hashKey": "object:196",
182
+ "stateabbreviation": "ak",
183
+ "statename": "Alaska",
184
+ "stateId": "2",
185
+ "timeIntervalDataVal": 0,
186
+ "color": "class4_color2",
187
+ "$$stateabbreviation": "ak",
188
+ "$$statename": "Alaska",
189
+ "$$stateId": "2",
190
+ "$$color": "class4_color2"
191
+ },
192
+ {
193
+ "STATE": "AS",
194
+ "Rate": 55,
195
+ "Location": "Home",
196
+ "URL": "https://www.cdc.gov/",
197
+ "$$hashKey": "object:197",
198
+ "type": "territory",
199
+ "stateabbreviation": "as",
200
+ "statename": "American Samoa",
201
+ "stateId": "60",
202
+ "timeIntervalDataVal": 0,
203
+ "color": "class4_color3",
204
+ "$$stateabbreviation": "as",
205
+ "$$statename": "American Samoa",
206
+ "$$stateId": "60",
207
+ "$$color": "class4_color3"
208
+ },
209
+ {
210
+ "STATE": "AZ",
211
+ "Rate": 57,
212
+ "Location": "School",
213
+ "URL": "https://www.cdc.gov/",
214
+ "$$hashKey": "object:198",
215
+ "stateabbreviation": "az",
216
+ "statename": "Arizona",
217
+ "stateId": "4",
218
+ "timeIntervalDataVal": 0,
219
+ "color": "class4_color3",
220
+ "$$stateabbreviation": "az",
221
+ "$$statename": "Arizona",
222
+ "$$stateId": "4",
223
+ "$$color": "class4_color3"
224
+ },
225
+ {
226
+ "STATE": "AR",
227
+ "Rate": 60,
228
+ "Location": "School",
229
+ "URL": "https://www.cdc.gov/",
230
+ "$$hashKey": "object:199",
231
+ "stateabbreviation": "ar",
232
+ "statename": "Arkansas",
233
+ "textoffsety": 3,
234
+ "stateId": "5",
235
+ "timeIntervalDataVal": 0,
236
+ "color": "class4_color3",
237
+ "$$stateabbreviation": "ar",
238
+ "$$statename": "Arkansas",
239
+ "$$stateId": "5",
240
+ "$$color": "class4_color3"
241
+ },
242
+ {
243
+ "STATE": "CA",
244
+ "Rate": 30,
245
+ "Location": "Home",
246
+ "URL": "https://www.cdc.gov/",
247
+ "stateabbreviation": "ca",
248
+ "statename": "California",
249
+ "textoffsety": 10,
250
+ "stateId": "6",
251
+ "timeIntervalDataVal": 0,
252
+ "color": "class4_color1",
253
+ "$$stateabbreviation": "ca",
254
+ "$$statename": "California",
255
+ "$$stateId": "6",
256
+ "$$color": "class4_color1"
257
+ },
258
+ {
259
+ "STATE": "CO",
260
+ "Rate": 40,
261
+ "Location": "Vehicle",
262
+ "URL": "https://www.cdc.gov/",
263
+ "stateabbreviation": "co",
264
+ "statename": "Colorado",
265
+ "textoffsety": 3,
266
+ "stateId": "8",
267
+ "timeIntervalDataVal": 0,
268
+ "color": "class4_color2",
269
+ "$$stateabbreviation": "co",
270
+ "$$statename": "Colorado",
271
+ "$$stateId": "8",
272
+ "$$color": "class4_color2"
273
+ },
274
+ {
275
+ "STATE": "CT",
276
+ "Rate": 55,
277
+ "Location": "Home",
278
+ "URL": "https://www.cdc.gov/",
279
+ "type": "smallstate",
280
+ "stateabbreviation": "ct",
281
+ "statename": "Connecticut",
282
+ "textoffsetx": 2,
283
+ "textoffsety": 4,
284
+ "stateId": "9",
285
+ "timeIntervalDataVal": 0,
286
+ "color": "class4_color3",
287
+ "$$stateabbreviation": "ct",
288
+ "$$statename": "Connecticut",
289
+ "$$stateId": "9",
290
+ "$$color": "class4_color3"
291
+ },
292
+ {
293
+ "STATE": "DE",
294
+ "Rate": 57,
295
+ "Location": "Home",
296
+ "URL": "https://www.cdc.gov/",
297
+ "type": "smallstate",
298
+ "stateabbreviation": "de",
299
+ "statename": "Delaware",
300
+ "stateId": "10",
301
+ "timeIntervalDataVal": 0,
302
+ "color": "class4_color3",
303
+ "$$stateabbreviation": "de",
304
+ "$$statename": "Delaware",
305
+ "$$stateId": "10",
306
+ "$$color": "class4_color3"
307
+ },
308
+ {
309
+ "STATE": "DC",
310
+ "Rate": 60,
311
+ "Location": "Home",
312
+ "URL": "https://www.cdc.gov/",
313
+ "type": "smallstate",
314
+ "stateabbreviation": "dc",
315
+ "statename": "District of Columbia",
316
+ "stateId": "11",
317
+ "timeIntervalDataVal": 0,
318
+ "color": "class4_color3",
319
+ "$$stateabbreviation": "dc",
320
+ "$$statename": "District of Columbia",
321
+ "$$stateId": "11",
322
+ "$$color": "class4_color3"
323
+ },
324
+ {
325
+ "STATE": "FL",
326
+ "Rate": 30,
327
+ "Location": "Work",
328
+ "URL": "https://www.cdc.gov/",
329
+ "stateabbreviation": "fl",
330
+ "statename": "Florida",
331
+ "textoffsetx": 8,
332
+ "textoffsety": 7,
333
+ "stateId": "12",
334
+ "timeIntervalDataVal": 0,
335
+ "color": "class4_color1",
336
+ "$$stateabbreviation": "fl",
337
+ "$$statename": "Florida",
338
+ "$$stateId": "12",
339
+ "$$color": "class4_color1"
340
+ },
341
+ {
342
+ "STATE": "GA",
343
+ "Rate": 40,
344
+ "Location": "Work",
345
+ "URL": "https://www.cdc.gov/",
346
+ "stateabbreviation": "ga",
347
+ "statename": "Georgia",
348
+ "stateId": "13",
349
+ "timeIntervalDataVal": 0,
350
+ "color": "class4_color2",
351
+ "$$stateabbreviation": "ga",
352
+ "$$statename": "Georgia",
353
+ "$$stateId": "13",
354
+ "$$color": "class4_color2"
355
+ },
356
+ {
357
+ "STATE": "GU",
358
+ "Rate": 55,
359
+ "Location": "Home",
360
+ "URL": "https://www.cdc.gov/",
361
+ "type": "territory",
362
+ "stateabbreviation": "gu",
363
+ "statename": "Guam",
364
+ "stateId": "66",
365
+ "timeIntervalDataVal": 0,
366
+ "color": "class4_color3",
367
+ "$$stateabbreviation": "gu",
368
+ "$$statename": "Guam",
369
+ "$$stateId": "66",
370
+ "$$color": "class4_color3"
371
+ },
372
+ {
373
+ "STATE": "HI",
374
+ "Rate": 57,
375
+ "Location": "School",
376
+ "URL": "https://www.cdc.gov/",
377
+ "stateabbreviation": "hi",
378
+ "statename": "Hawaii",
379
+ "textoffsetx": -15,
380
+ "textoffsety": 7,
381
+ "stateId": "15",
382
+ "timeIntervalDataVal": 0,
383
+ "color": "class4_color3",
384
+ "$$stateabbreviation": "hi",
385
+ "$$statename": "Hawaii",
386
+ "$$stateId": "15",
387
+ "$$color": "class4_color3"
388
+ },
389
+ {
390
+ "STATE": "ID",
391
+ "Rate": 60,
392
+ "Location": "School",
393
+ "URL": "https://www.cdc.gov/",
394
+ "stateabbreviation": "id",
395
+ "statename": "Idaho",
396
+ "textoffsety": 10,
397
+ "stateId": "16",
398
+ "timeIntervalDataVal": 0,
399
+ "color": "class4_color3",
400
+ "$$stateabbreviation": "id",
401
+ "$$statename": "Idaho",
402
+ "$$stateId": "16",
403
+ "$$color": "class4_color3"
404
+ },
405
+ {
406
+ "STATE": "IL",
407
+ "Rate": 30,
408
+ "Location": "Work",
409
+ "URL": "https://www.cdc.gov/",
410
+ "stateabbreviation": "il",
411
+ "statename": "Illinois",
412
+ "stateId": "17",
413
+ "timeIntervalDataVal": 0,
414
+ "color": "class4_color1",
415
+ "$$stateabbreviation": "il",
416
+ "$$statename": "Illinois",
417
+ "$$stateId": "17",
418
+ "$$color": "class4_color1"
419
+ },
420
+ {
421
+ "STATE": "IN",
422
+ "Rate": 40,
423
+ "Location": "Vehicle",
424
+ "URL": "https://www.cdc.gov/",
425
+ "stateabbreviation": "in",
426
+ "statename": "Indiana",
427
+ "stateId": "18",
428
+ "timeIntervalDataVal": 0,
429
+ "color": "class4_color2",
430
+ "$$stateabbreviation": "in",
431
+ "$$statename": "Indiana",
432
+ "$$stateId": "18",
433
+ "$$color": "class4_color2"
434
+ },
435
+ {
436
+ "STATE": "IA",
437
+ "Rate": 55,
438
+ "Location": "Home",
439
+ "URL": "https://www.cdc.gov/",
440
+ "stateabbreviation": "ia",
441
+ "statename": "Iowa",
442
+ "textoffsety": 3,
443
+ "stateId": "19",
444
+ "timeIntervalDataVal": 0,
445
+ "color": "class4_color3",
446
+ "$$stateabbreviation": "ia",
447
+ "$$statename": "Iowa",
448
+ "$$stateId": "19",
449
+ "$$color": "class4_color3"
450
+ },
451
+ {
452
+ "STATE": "KS",
453
+ "Rate": 57,
454
+ "Location": "Home",
455
+ "URL": "https://www.cdc.gov/",
456
+ "stateabbreviation": "ks",
457
+ "statename": "Kansas",
458
+ "textoffsety": 5,
459
+ "stateId": "20",
460
+ "timeIntervalDataVal": 0,
461
+ "color": "class4_color3",
462
+ "$$stateabbreviation": "ks",
463
+ "$$statename": "Kansas",
464
+ "$$stateId": "20",
465
+ "$$color": "class4_color3"
466
+ },
467
+ {
468
+ "STATE": "KY",
469
+ "Rate": 60,
470
+ "Location": "NA",
471
+ "URL": "https://www.cdc.gov/",
472
+ "stateabbreviation": "ky",
473
+ "statename": "Kentucky",
474
+ "textoffsetx": 4,
475
+ "textoffsety": 3,
476
+ "stateId": "21",
477
+ "timeIntervalDataVal": 0,
478
+ "color": "class4_color3",
479
+ "$$stateabbreviation": "ky",
480
+ "$$statename": "Kentucky",
481
+ "$$stateId": "21",
482
+ "$$color": "class4_color3"
483
+ },
484
+ {
485
+ "STATE": "LA",
486
+ "Rate": 30,
487
+ "Location": "Vehicle",
488
+ "URL": "https://www.cdc.gov/",
489
+ "stateabbreviation": "la",
490
+ "statename": "Louisiana",
491
+ "textoffsetx": -5,
492
+ "stateId": "22",
493
+ "timeIntervalDataVal": 0,
494
+ "color": "class4_color1",
495
+ "$$stateabbreviation": "la",
496
+ "$$statename": "Louisiana",
497
+ "$$stateId": "22",
498
+ "$$color": "class4_color1"
499
+ },
500
+ {
501
+ "STATE": "ME",
502
+ "Rate": 40,
503
+ "Location": "Work",
504
+ "URL": "https://www.cdc.gov/",
505
+ "stateabbreviation": "me",
506
+ "statename": "Maine",
507
+ "stateId": "23",
508
+ "timeIntervalDataVal": 0,
509
+ "color": "class4_color2",
510
+ "$$stateabbreviation": "me",
511
+ "$$statename": "Maine",
512
+ "$$stateId": "23",
513
+ "$$color": "class4_color2"
514
+ },
515
+ {
516
+ "STATE": "MH",
517
+ "Rate": 55,
518
+ "Location": "Home",
519
+ "URL": "https://www.cdc.gov/",
520
+ "type": "territory",
521
+ "stateabbreviation": "mh",
522
+ "statename": "Marshall Islands",
523
+ "stateId": "68",
524
+ "timeIntervalDataVal": 0,
525
+ "color": "class4_color3",
526
+ "$$stateabbreviation": "mh",
527
+ "$$statename": "Marshall Islands",
528
+ "$$stateId": "68",
529
+ "$$color": "class4_color3"
530
+ },
531
+ {
532
+ "STATE": "MD",
533
+ "Rate": 57,
534
+ "Location": "School",
535
+ "URL": "https://www.cdc.gov/",
536
+ "type": "smallstate",
537
+ "stateabbreviation": "md",
538
+ "statename": "Maryland",
539
+ "textoffsetx": 2,
540
+ "textoffsety": 2,
541
+ "stateId": "24",
542
+ "timeIntervalDataVal": 0,
543
+ "color": "class4_color3",
544
+ "$$stateabbreviation": "md",
545
+ "$$statename": "Maryland",
546
+ "$$stateId": "24",
547
+ "$$color": "class4_color3"
548
+ },
549
+ {
550
+ "STATE": "MA",
551
+ "Rate": 60,
552
+ "Location": "School",
553
+ "URL": "https://www.cdc.gov/",
554
+ "stateabbreviation": "ma",
555
+ "statename": "Massachusetts",
556
+ "textoffsety": 3,
557
+ "stateId": "25",
558
+ "timeIntervalDataVal": 0,
559
+ "color": "class4_color3",
560
+ "$$stateabbreviation": "ma",
561
+ "$$statename": "Massachusetts",
562
+ "$$stateId": "25",
563
+ "$$color": "class4_color3"
564
+ },
565
+ {
566
+ "STATE": "MI",
567
+ "Rate": 12,
568
+ "Location": "Work",
569
+ "URL": "https://www.cdc.gov/",
570
+ "stateabbreviation": "mi",
571
+ "statename": "Michigan",
572
+ "textoffsetx": 6,
573
+ "textoffsety": 10,
574
+ "stateId": "26",
575
+ "timeIntervalDataVal": 0,
576
+ "color": "class4_color1",
577
+ "$$stateabbreviation": "mi",
578
+ "$$statename": "Michigan",
579
+ "$$stateId": "26",
580
+ "$$color": "class4_color1"
581
+ },
582
+ {
583
+ "STATE": "FM",
584
+ "Rate": 65,
585
+ "Location": "Vehicle",
586
+ "URL": "https://www.cdc.gov/",
587
+ "type": "territory",
588
+ "stateabbreviation": "fm",
589
+ "statename": "Micronesia",
590
+ "stateId": "71",
591
+ "timeIntervalDataVal": 0,
592
+ "color": "class4_color3",
593
+ "$$stateabbreviation": "fm",
594
+ "$$statename": "Micronesia",
595
+ "$$stateId": "71",
596
+ "$$color": "class4_color3"
597
+ },
598
+ {
599
+ "STATE": "MN",
600
+ "Rate": 55,
601
+ "Location": "Home",
602
+ "URL": "https://www.cdc.gov/",
603
+ "stateabbreviation": "mn",
604
+ "statename": "Minnesota",
605
+ "stateId": "27",
606
+ "timeIntervalDataVal": 0,
607
+ "color": "class4_color3",
608
+ "$$stateabbreviation": "mn",
609
+ "$$statename": "Minnesota",
610
+ "$$stateId": "27",
611
+ "$$color": "class4_color3"
612
+ },
613
+ {
614
+ "STATE": "MS",
615
+ "Rate": 57,
616
+ "Location": "Home",
617
+ "URL": "https://www.cdc.gov/",
618
+ "stateabbreviation": "ms",
619
+ "statename": "Mississippi",
620
+ "stateId": "28",
621
+ "timeIntervalDataVal": 0,
622
+ "color": "class4_color3",
623
+ "$$stateabbreviation": "ms",
624
+ "$$statename": "Mississippi",
625
+ "$$stateId": "28",
626
+ "$$color": "class4_color3"
627
+ },
628
+ {
629
+ "STATE": "MO",
630
+ "Rate": 60,
631
+ "Location": "Home",
632
+ "URL": "https://www.cdc.gov/",
633
+ "stateabbreviation": "mo",
634
+ "statename": "Missouri",
635
+ "textoffsety": 5,
636
+ "stateId": "29",
637
+ "timeIntervalDataVal": 0,
638
+ "color": "class4_color3",
639
+ "$$stateabbreviation": "mo",
640
+ "$$statename": "Missouri",
641
+ "$$stateId": "29",
642
+ "$$color": "class4_color3"
643
+ },
644
+ {
645
+ "STATE": "MT",
646
+ "Rate": 30,
647
+ "Location": "Vehicle",
648
+ "URL": "https://www.cdc.gov/",
649
+ "stateabbreviation": "mt",
650
+ "statename": "Montana",
651
+ "stateId": "30",
652
+ "timeIntervalDataVal": 0,
653
+ "color": "class4_color1",
654
+ "$$stateabbreviation": "mt",
655
+ "$$statename": "Montana",
656
+ "$$stateId": "30",
657
+ "$$color": "class4_color1"
658
+ },
659
+ {
660
+ "STATE": "NE",
661
+ "Rate": 40,
662
+ "Location": "Work",
663
+ "URL": "https://www.cdc.gov/",
664
+ "stateabbreviation": "ne",
665
+ "statename": "Nebraska",
666
+ "textoffsety": 3,
667
+ "stateId": "31",
668
+ "timeIntervalDataVal": 0,
669
+ "color": "class4_color2",
670
+ "$$stateabbreviation": "ne",
671
+ "$$statename": "Nebraska",
672
+ "$$stateId": "31",
673
+ "$$color": "class4_color2"
674
+ },
675
+ {
676
+ "STATE": "NV",
677
+ "Rate": 55,
678
+ "Location": "Home",
679
+ "URL": "https://www.cdc.gov/",
680
+ "stateabbreviation": "nv",
681
+ "statename": "Nevada",
682
+ "stateId": "32",
683
+ "timeIntervalDataVal": 0,
684
+ "color": "class4_color3",
685
+ "$$stateabbreviation": "nv",
686
+ "$$statename": "Nevada",
687
+ "$$stateId": "32",
688
+ "$$color": "class4_color3"
689
+ },
690
+ {
691
+ "STATE": "NH",
692
+ "Rate": 57,
693
+ "Location": "School",
694
+ "URL": "https://www.cdc.gov/",
695
+ "type": "smallstate",
696
+ "stateabbreviation": "nh",
697
+ "statename": "New Hampshire",
698
+ "textoffsety": 6,
699
+ "stateId": "33",
700
+ "timeIntervalDataVal": 0,
701
+ "color": "class4_color3",
702
+ "$$stateabbreviation": "nh",
703
+ "$$statename": "New Hampshire",
704
+ "$$stateId": "33",
705
+ "$$color": "class4_color3"
706
+ },
707
+ {
708
+ "STATE": "NJ",
709
+ "Rate": 60,
710
+ "Location": "School",
711
+ "URL": "https://www.cdc.gov/",
712
+ "type": "smallstate",
713
+ "stateabbreviation": "nj",
714
+ "statename": "New Jersey",
715
+ "stateId": "34",
716
+ "timeIntervalDataVal": 0,
717
+ "color": "class4_color3",
718
+ "$$stateabbreviation": "nj",
719
+ "$$statename": "New Jersey",
720
+ "$$stateId": "34",
721
+ "$$color": "class4_color3"
722
+ },
723
+ {
724
+ "STATE": "NM",
725
+ "Rate": 12,
726
+ "Location": "Work",
727
+ "URL": "https://www.cdc.gov/",
728
+ "stateabbreviation": "nm",
729
+ "statename": "New Mexico",
730
+ "textoffsety": 3,
731
+ "stateId": "35",
732
+ "timeIntervalDataVal": 0,
733
+ "color": "class4_color1",
734
+ "$$stateabbreviation": "nm",
735
+ "$$statename": "New Mexico",
736
+ "$$stateId": "35",
737
+ "$$color": "class4_color1"
738
+ },
739
+ {
740
+ "STATE": "NY",
741
+ "Rate": 40,
742
+ "Location": "Vehicle",
743
+ "URL": "https://www.cdc.gov/",
744
+ "stateabbreviation": "ny",
745
+ "statename": "New York",
746
+ "stateId": "36",
747
+ "timeIntervalDataVal": 0,
748
+ "color": "class4_color2",
749
+ "$$stateabbreviation": "ny",
750
+ "$$statename": "New York",
751
+ "$$stateId": "36",
752
+ "$$color": "class4_color2"
753
+ },
754
+ {
755
+ "STATE": "NC",
756
+ "Rate": 55,
757
+ "Location": "Home",
758
+ "URL": "https://www.cdc.gov/",
759
+ "stateabbreviation": "nc",
760
+ "statename": "North Carolina",
761
+ "textoffsety": 3,
762
+ "stateId": "37",
763
+ "timeIntervalDataVal": 0,
764
+ "color": "class4_color3",
765
+ "$$stateabbreviation": "nc",
766
+ "$$statename": "North Carolina",
767
+ "$$stateId": "37",
768
+ "$$color": "class4_color3"
769
+ },
770
+ {
771
+ "STATE": "ND",
772
+ "Rate": 57,
773
+ "Location": "Home",
774
+ "URL": "https://www.cdc.gov/",
775
+ "stateabbreviation": "nd",
776
+ "statename": "North Dakota",
777
+ "textoffsety": 3,
778
+ "stateId": "38",
779
+ "timeIntervalDataVal": 0,
780
+ "color": "class4_color3",
781
+ "$$stateabbreviation": "nd",
782
+ "$$statename": "North Dakota",
783
+ "$$stateId": "38",
784
+ "$$color": "class4_color3"
785
+ },
786
+ {
787
+ "STATE": "MP",
788
+ "Rate": 60,
789
+ "Location": "Home",
790
+ "URL": "https://www.cdc.gov/",
791
+ "type": "territory",
792
+ "stateabbreviation": "mp",
793
+ "statename": "Northern Mariana Islands",
794
+ "stateId": "69",
795
+ "timeIntervalDataVal": 0,
796
+ "color": "class4_color3",
797
+ "$$stateabbreviation": "mp",
798
+ "$$statename": "Northern Mariana Islands",
799
+ "$$stateId": "69",
800
+ "$$color": "class4_color3"
801
+ },
802
+ {
803
+ "STATE": "OH",
804
+ "Rate": 88,
805
+ "Location": "Vehicle",
806
+ "URL": "https://www.cdc.gov/",
807
+ "stateabbreviation": "oh",
808
+ "statename": "Ohio",
809
+ "textoffsety": 5,
810
+ "stateId": "39",
811
+ "timeIntervalDataVal": 0,
812
+ "color": "class4_color4",
813
+ "$$stateabbreviation": "oh",
814
+ "$$statename": "Ohio",
815
+ "$$stateId": "39",
816
+ "$$color": "class4_color4"
817
+ },
818
+ {
819
+ "STATE": "OK",
820
+ "Rate": 40,
821
+ "Location": "Work",
822
+ "URL": "https://www.cdc.gov/",
823
+ "stateabbreviation": "ok",
824
+ "statename": "Oklahoma",
825
+ "textoffsety": 3,
826
+ "stateId": "40",
827
+ "timeIntervalDataVal": 0,
828
+ "color": "class4_color2",
829
+ "$$stateabbreviation": "ok",
830
+ "$$statename": "Oklahoma",
831
+ "$$stateId": "40",
832
+ "$$color": "class4_color2"
833
+ },
834
+ {
835
+ "STATE": "OR",
836
+ "Rate": 55,
837
+ "Location": "Home",
838
+ "URL": "https://www.cdc.gov/",
839
+ "stateabbreviation": "or",
840
+ "statename": "Oregon",
841
+ "textoffsety": 3,
842
+ "stateId": "41",
843
+ "timeIntervalDataVal": 0,
844
+ "color": "class4_color3",
845
+ "$$stateabbreviation": "or",
846
+ "$$statename": "Oregon",
847
+ "$$stateId": "41",
848
+ "$$color": "class4_color3"
849
+ },
850
+ {
851
+ "STATE": "PW",
852
+ "Rate": 15,
853
+ "Location": "School",
854
+ "URL": "https://www.cdc.gov/",
855
+ "type": "territory",
856
+ "stateabbreviation": "pw",
857
+ "statename": "Palau",
858
+ "stateId": "70",
859
+ "timeIntervalDataVal": 0,
860
+ "color": "class4_color1",
861
+ "$$stateabbreviation": "pw",
862
+ "$$statename": "Palau",
863
+ "$$stateId": "70",
864
+ "$$color": "class4_color1"
865
+ },
866
+ {
867
+ "STATE": "PA",
868
+ "Rate": 60,
869
+ "Location": "School",
870
+ "URL": "https://www.cdc.gov/",
871
+ "stateabbreviation": "pa",
872
+ "statename": "Pennsylvania",
873
+ "textoffsety": 5,
874
+ "stateId": "42",
875
+ "timeIntervalDataVal": 0,
876
+ "color": "class4_color3",
877
+ "$$stateabbreviation": "pa",
878
+ "$$statename": "Pennsylvania",
879
+ "$$stateId": "42",
880
+ "$$color": "class4_color3"
881
+ },
882
+ {
883
+ "STATE": "PR",
884
+ "Rate": 30,
885
+ "Location": "Work",
886
+ "URL": "https://www.cdc.gov/",
887
+ "type": "territory",
888
+ "stateabbreviation": "pr",
889
+ "statename": "Puerto Rico",
890
+ "stateId": "72",
891
+ "timeIntervalDataVal": 0,
892
+ "color": "class4_color1",
893
+ "$$stateabbreviation": "pr",
894
+ "$$statename": "Puerto Rico",
895
+ "$$stateId": "72",
896
+ "$$color": "class4_color1"
897
+ },
898
+ {
899
+ "STATE": "RI",
900
+ "Rate": 40,
901
+ "Location": "Vehicle",
902
+ "URL": "https://www.cdc.gov/",
903
+ "type": "smallstate",
904
+ "stateabbreviation": "ri",
905
+ "statename": "Rhode Island",
906
+ "stateId": "44",
907
+ "timeIntervalDataVal": 0,
908
+ "color": "class4_color2",
909
+ "$$stateabbreviation": "ri",
910
+ "$$statename": "Rhode Island",
911
+ "$$stateId": "44",
912
+ "$$color": "class4_color2"
913
+ },
914
+ {
915
+ "STATE": "SC",
916
+ "Rate": 55,
917
+ "Location": "Home",
918
+ "URL": "https://www.cdc.gov/",
919
+ "stateabbreviation": "sc",
920
+ "statename": "South Carolina",
921
+ "textoffsety": 3,
922
+ "stateId": "45",
923
+ "timeIntervalDataVal": 0,
924
+ "color": "class4_color3",
925
+ "$$stateabbreviation": "sc",
926
+ "$$statename": "South Carolina",
927
+ "$$stateId": "45",
928
+ "$$color": "class4_color3"
929
+ },
930
+ {
931
+ "STATE": "SD",
932
+ "Rate": 86,
933
+ "Location": "Home",
934
+ "URL": "https://www.cdc.gov/",
935
+ "stateabbreviation": "sd",
936
+ "statename": "South Dakota",
937
+ "textoffsety": 3,
938
+ "stateId": "46",
939
+ "timeIntervalDataVal": 0,
940
+ "color": "class4_color4",
941
+ "$$stateabbreviation": "sd",
942
+ "$$statename": "South Dakota",
943
+ "$$stateId": "46",
944
+ "$$color": "class4_color4"
945
+ },
946
+ {
947
+ "STATE": "TN",
948
+ "Rate": 60,
949
+ "Location": "Home",
950
+ "URL": "https://www.cdc.gov/",
951
+ "stateabbreviation": "tn",
952
+ "statename": "Tennessee",
953
+ "textoffsety": 4,
954
+ "stateId": "47",
955
+ "timeIntervalDataVal": 0,
956
+ "color": "class4_color3",
957
+ "$$stateabbreviation": "tn",
958
+ "$$statename": "Tennessee",
959
+ "$$stateId": "47",
960
+ "$$color": "class4_color3"
961
+ },
962
+ {
963
+ "STATE": "TX",
964
+ "Rate": 30,
965
+ "Location": "Vehicle",
966
+ "URL": "https://www.cdc.gov/",
967
+ "stateabbreviation": "tx",
968
+ "statename": "Texas",
969
+ "stateId": "48",
970
+ "timeIntervalDataVal": 0,
971
+ "color": "class4_color1",
972
+ "$$stateabbreviation": "tx",
973
+ "$$statename": "Texas",
974
+ "$$stateId": "48",
975
+ "$$color": "class4_color1"
976
+ },
977
+ {
978
+ "STATE": "UT",
979
+ "Rate": 54,
980
+ "Location": "Work",
981
+ "URL": "https://www.cdc.gov/",
982
+ "stateabbreviation": "ut",
983
+ "statename": "Utah",
984
+ "textoffsety": 3,
985
+ "stateId": "49",
986
+ "timeIntervalDataVal": 0,
987
+ "color": "class4_color3",
988
+ "$$stateabbreviation": "ut",
989
+ "$$statename": "Utah",
990
+ "$$stateId": "49",
991
+ "$$color": "class4_color3"
992
+ },
993
+ {
994
+ "STATE": "VT",
995
+ "Rate": 40,
996
+ "Location": "Home",
997
+ "URL": "https://www.cdc.gov/",
998
+ "type": "smallstate",
999
+ "stateabbreviation": "vt",
1000
+ "statename": "Vermont",
1001
+ "stateId": "50",
1002
+ "timeIntervalDataVal": 0,
1003
+ "color": "class4_color2",
1004
+ "$$stateabbreviation": "vt",
1005
+ "$$statename": "Vermont",
1006
+ "$$stateId": "50",
1007
+ "$$color": "class4_color2"
1008
+ },
1009
+ {
1010
+ "STATE": "VI",
1011
+ "Rate": 55,
1012
+ "Location": "School",
1013
+ "URL": "https://www.cdc.gov/",
1014
+ "type": "territory",
1015
+ "stateabbreviation": "vi",
1016
+ "statename": "Virgin Islands",
1017
+ "stateId": "78",
1018
+ "timeIntervalDataVal": 0,
1019
+ "color": "class4_color3",
1020
+ "$$stateabbreviation": "vi",
1021
+ "$$statename": "Virgin Islands",
1022
+ "$$stateId": "78",
1023
+ "$$color": "class4_color3"
1024
+ },
1025
+ {
1026
+ "STATE": "VA",
1027
+ "Rate": 57,
1028
+ "Location": "School",
1029
+ "URL": "https://www.cdc.gov/",
1030
+ "stateabbreviation": "va",
1031
+ "statename": "Virginia",
1032
+ "textoffsety": 3,
1033
+ "stateId": "51",
1034
+ "timeIntervalDataVal": 0,
1035
+ "color": "class4_color3",
1036
+ "$$stateabbreviation": "va",
1037
+ "$$statename": "Virginia",
1038
+ "$$stateId": "51",
1039
+ "$$color": "class4_color3"
1040
+ },
1041
+ {
1042
+ "STATE": "WA",
1043
+ "Rate": 62,
1044
+ "Location": "Work",
1045
+ "URL": "https://www.cdc.gov/",
1046
+ "stateabbreviation": "wa",
1047
+ "statename": "Washington",
1048
+ "textoffsety": 5,
1049
+ "stateId": "53",
1050
+ "timeIntervalDataVal": 0,
1051
+ "color": "class4_color3",
1052
+ "$$stateabbreviation": "wa",
1053
+ "$$statename": "Washington",
1054
+ "$$stateId": "53",
1055
+ "$$color": "class4_color3"
1056
+ },
1057
+ {
1058
+ "STATE": "WV",
1059
+ "Rate": 25,
1060
+ "Location": "Vehicle",
1061
+ "URL": "https://www.cdc.gov/",
1062
+ "stateabbreviation": "wv",
1063
+ "statename": "West Virginia",
1064
+ "textoffsetx": -4,
1065
+ "textoffsety": 10,
1066
+ "stateId": "54",
1067
+ "timeIntervalDataVal": 0,
1068
+ "color": "class4_color1",
1069
+ "$$stateabbreviation": "wv",
1070
+ "$$statename": "West Virginia",
1071
+ "$$stateId": "54",
1072
+ "$$color": "class4_color1"
1073
+ },
1074
+ {
1075
+ "STATE": "WI",
1076
+ "Rate": 40,
1077
+ "Location": "Home",
1078
+ "URL": "https://www.cdc.gov/",
1079
+ "stateabbreviation": "wi",
1080
+ "statename": "Wisconsin",
1081
+ "stateId": "55",
1082
+ "timeIntervalDataVal": 0,
1083
+ "color": "class4_color2",
1084
+ "$$stateabbreviation": "wi",
1085
+ "$$statename": "Wisconsin",
1086
+ "$$stateId": "55",
1087
+ "$$color": "class4_color2"
1088
+ },
1089
+ {
1090
+ "STATE": "WY",
1091
+ "Rate": 55,
1092
+ "Location": "Home",
1093
+ "URL": "https://www.cdc.gov/",
1094
+ "stateabbreviation": "wy",
1095
+ "statename": "Wyoming",
1096
+ "textoffsety": 3,
1097
+ "stateId": "56",
1098
+ "timeIntervalDataVal": 0,
1099
+ "color": "class4_color3",
1100
+ "$$stateabbreviation": "wy",
1101
+ "$$statename": "Wyoming",
1102
+ "$$stateId": "56",
1103
+ "$$color": "class4_color3"
1104
+ }
1105
+ ],
1106
+ "sharing": {
1107
+ "enabled": false,
1108
+ "dataHost": "wcms-wp.cdc.gov",
1109
+ "configUrl": "/wcms/4.0/cdc-wp/data-presentation/page-elements/equal-interval-map.json"
1110
+ },
1111
+ "dataTable": {
1112
+ "title": "Data Table"
1113
+ },
1114
+ "usingWidgetLoader": true,
1115
+ "validated": 4.23,
1116
+ "version": "4.24.4"
1117
+ }