@cdc/map 4.25.8 → 4.25.11

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 (137) hide show
  1. package/.claude/agents/typescript-organizer.md +118 -0
  2. package/.claude/settings.local.json +30 -0
  3. package/dist/{cdcmap-fce76882.es.js → cdcmap-BnB1QM5d.es.js} +6 -13
  4. package/dist/{cdcmap-c55ac1ea.es.js → cdcmap-D6CG2-Hb.es.js} +5 -12
  5. package/dist/{cdcmap-31a33da1.es.js → cdcmap-MXgURbdZ.es.js} +6 -13
  6. package/dist/{cdcmap-1a1724a1.es.js → cdcmap-dgT_1dIT.es.js} +136 -151
  7. package/dist/cdcmap.js +56991 -53706
  8. package/examples/example-city-state.json +9 -1
  9. package/examples/multi-country-centering.json +45 -0
  10. package/examples/private/c.json +290 -0
  11. package/examples/private/canvas-city-hover.json +787 -0
  12. package/examples/private/colors-2.json +221 -0
  13. package/examples/private/colors.json +221 -0
  14. package/examples/private/d.json +345 -0
  15. package/examples/private/g.json +1 -0
  16. package/examples/private/h.json +105911 -0
  17. package/examples/private/measles-data.json +378 -0
  18. package/examples/private/measles.json +211 -0
  19. package/examples/private/north-dakota.json +1132 -0
  20. package/examples/private/state-with-pattern.json +883 -0
  21. package/index.html +36 -34
  22. package/package.json +26 -5
  23. package/src/CdcMap.tsx +23 -8
  24. package/src/CdcMapComponent.tsx +238 -308
  25. package/src/_stories/CdcMap.ColumnWrap.stories.tsx +31 -0
  26. package/src/_stories/CdcMap.DistrictOfColumbia.stories.tsx +320 -0
  27. package/src/_stories/CdcMap.Editor.stories.tsx +3371 -0
  28. package/src/_stories/CdcMap.Filters.stories.tsx +2 -2
  29. package/src/_stories/CdcMap.Legend.Gradient.stories.tsx +3 -3
  30. package/src/_stories/CdcMap.Legend.stories.tsx +7 -4
  31. package/src/_stories/CdcMap.Patterns.stories.tsx +2 -2
  32. package/src/_stories/CdcMap.SmallMultiples.stories.tsx +35 -0
  33. package/src/_stories/CdcMap.Table.stories.tsx +2 -2
  34. package/src/_stories/CdcMap.stories.tsx +37 -9
  35. package/src/_stories/GoogleMap.stories.tsx +2 -2
  36. package/src/_stories/UsaMap.NoData.stories.tsx +2 -2
  37. package/src/_stories/_mock/column-wrap-test.json +265 -0
  38. package/src/_stories/_mock/equal-number.json +1109 -0
  39. package/src/_stories/_mock/multi-country-hide.json +78 -0
  40. package/src/_stories/_mock/multi-country.json +95 -0
  41. package/src/_stories/_mock/multi-state.json +887 -20403
  42. package/src/_stories/_mock/small_multiples/multi-state-small-multiples.json +8399 -0
  43. package/src/_stories/_mock/small_multiples/region-small-multiples.json +657 -0
  44. package/src/_stories/_mock/small_multiples/wastewater-map-small-multiples.json +221 -0
  45. package/src/_stories/_mock/us-bubble-cities.json +306 -0
  46. package/src/_stories/_mock/usa-state-gradient.json +2 -4
  47. package/src/components/BubbleList.tsx +17 -13
  48. package/src/components/CityList.tsx +85 -107
  49. package/src/components/EditorPanel/components/EditorPanel.tsx +787 -709
  50. package/src/components/EditorPanel/components/HexShapeSettings.tsx +58 -95
  51. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +34 -42
  52. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +354 -0
  53. package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
  54. package/src/components/Geo.tsx +22 -3
  55. package/src/components/Legend/components/Legend.tsx +76 -40
  56. package/src/components/Legend/components/LegendGroup/Legend.Group.tsx +10 -7
  57. package/src/components/Legend/components/index.scss +1 -1
  58. package/src/components/MapContainer.tsx +52 -0
  59. package/src/components/MapControls.tsx +44 -0
  60. package/src/components/NavigationMenu.tsx +27 -15
  61. package/src/components/SmallMultiples/SmallMultipleTile.tsx +163 -0
  62. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  63. package/src/components/SmallMultiples/SmallMultiples.tsx +150 -0
  64. package/src/components/SmallMultiples/SynchronizedTooltip.tsx +105 -0
  65. package/src/components/SmallMultiples/index.tsx +3 -0
  66. package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +36 -4
  67. package/src/components/UsaMap/components/TerritoriesSection.tsx +26 -12
  68. package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +30 -4
  69. package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +23 -4
  70. package/src/components/UsaMap/components/Territory/TerritoryShape.ts +6 -0
  71. package/src/components/UsaMap/components/UsaMap.County.tsx +123 -37
  72. package/src/components/UsaMap/components/UsaMap.Region.tsx +36 -5
  73. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +30 -10
  74. package/src/components/UsaMap/components/UsaMap.State.tsx +53 -12
  75. package/src/components/UsaMap/helpers/map.ts +4 -4
  76. package/src/components/UsaMap/helpers/shapes.ts +9 -6
  77. package/src/components/WorldMap/WorldMap.tsx +193 -35
  78. package/src/components/ZoomControls.tsx +6 -9
  79. package/src/context/LegendMemoContext.tsx +30 -0
  80. package/src/context.ts +1 -40
  81. package/src/data/initial-state.js +153 -130
  82. package/src/data/supported-geos.js +25 -78
  83. package/src/helpers/addUIDs.ts +13 -2
  84. package/src/helpers/applyColorToLegend.ts +140 -20
  85. package/src/helpers/applyLegendToRow.ts +10 -6
  86. package/src/helpers/componentHelpers.ts +8 -0
  87. package/src/helpers/constants.ts +12 -14
  88. package/src/helpers/dataTableHelpers.ts +6 -0
  89. package/src/helpers/displayGeoName.ts +18 -3
  90. package/src/helpers/generateRuntimeLegend.ts +44 -10
  91. package/src/helpers/generateRuntimeLegendHash.ts +4 -2
  92. package/src/helpers/getColumnNames.ts +1 -1
  93. package/src/helpers/getCountriesPicked.ts +103 -0
  94. package/src/helpers/getMapContainerClasses.ts +7 -0
  95. package/src/helpers/getPatternForRow.ts +33 -0
  96. package/src/helpers/getStatesPicked.ts +8 -5
  97. package/src/helpers/index.ts +3 -3
  98. package/src/helpers/isLegendItemDisabled.ts +16 -0
  99. package/src/helpers/mapObserverHelpers.ts +40 -0
  100. package/src/helpers/resetLegendToggles.ts +3 -2
  101. package/src/helpers/smallMultiplesHelpers.ts +359 -0
  102. package/src/helpers/tests/titleCase.test.ts +76 -0
  103. package/src/helpers/titleCase.ts +13 -13
  104. package/src/helpers/toggleLegendActive.ts +6 -11
  105. package/src/helpers/urlDataHelpers.ts +70 -0
  106. package/src/hooks/useCountryZoom.tsx +241 -0
  107. package/src/hooks/useGeoClickHandler.ts +36 -2
  108. package/src/hooks/useLegendMemo.ts +17 -0
  109. package/src/hooks/useMapLayers.tsx +5 -4
  110. package/src/hooks/useProgrammaticMapTooltip.ts +110 -0
  111. package/src/hooks/useResizeObserver.ts +5 -2
  112. package/src/hooks/useStateZoom.tsx +30 -8
  113. package/src/hooks/useSynchronizedGeographies.ts +56 -0
  114. package/src/hooks/useTooltip.ts +1 -2
  115. package/src/index.jsx +1 -2
  116. package/src/scss/editor-panel.scss +4 -440
  117. package/src/scss/main.scss +1 -1
  118. package/src/scss/map.scss +12 -15
  119. package/src/store/map.actions.ts +7 -7
  120. package/src/store/map.reducer.ts +17 -6
  121. package/src/test/CdcMap.test.jsx +11 -0
  122. package/src/types/MapConfig.ts +46 -18
  123. package/src/types/MapContext.ts +6 -7
  124. package/src/types/runtimeLegend.ts +17 -1
  125. package/vite.config.js +2 -7
  126. package/vitest.config.ts +16 -0
  127. package/src/components/DataTable.tsx +0 -385
  128. package/src/components/EditorPanel/components/Inputs.tsx +0 -59
  129. package/src/coreStyles_map.scss +0 -3
  130. package/src/helpers/colorDistributions.ts +0 -12
  131. package/src/helpers/generateColorsArray.ts +0 -14
  132. package/src/helpers/tests/generateColorsArray.test.ts +0 -18
  133. package/src/helpers/tests/generateRuntimeLegendHash.test.ts +0 -11
  134. package/src/hooks/useActiveElement.ts +0 -19
  135. package/src/scss/mixins.scss +0 -47
  136. package/src/types/Annotations.ts +0 -24
  137. /package/dist/{cdcmap-548642e6.es.js → cdcmap-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,883 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "navigationTarget": "_self",
5
+ "noStateFoundMessage": "Map Unavailable",
6
+ "annotationDropdownText": "Annotations",
7
+ "geoBorderColor": "darkGray",
8
+ "headerColor": "theme-cyan",
9
+ "title": "Example Data Map with Cities",
10
+ "showTitle": true,
11
+ "showSidebar": true,
12
+ "showDownloadMediaButton": false,
13
+ "displayAsHex": false,
14
+ "displayStateLabels": false,
15
+ "territoriesAlwaysShow": false,
16
+ "language": "en",
17
+ "geoType": "us",
18
+ "geoLabelOverride": "",
19
+ "hasRegions": false,
20
+ "fullBorder": false,
21
+ "type": "data",
22
+ "convertFipsCodes": true,
23
+ "palette": {
24
+ "isReversed": false,
25
+ "name": "sequential_yellow_orange_red",
26
+ "version": "1.0",
27
+ "backups": [
28
+ {
29
+ "name": "yelloworangered",
30
+ "version": "1.0",
31
+ "isReversed": false
32
+ }
33
+ ]
34
+ },
35
+ "allowMapZoom": true,
36
+ "hideGeoColumnInTooltip": false,
37
+ "hidePrimaryColumnInTooltip": false,
38
+ "statesPicked": [
39
+ {
40
+ "fipsCode": "01",
41
+ "stateName": "Alabama"
42
+ }
43
+ ],
44
+ "subtext": "*: Lorem ipsum; NA: Lorem ipsum.",
45
+ "expandDataTable": false,
46
+ "backgroundColor": "#f5f5f5",
47
+ "showDownloadImgButton": false,
48
+ "showDownloadPdfButton": false
49
+ },
50
+ "type": "map",
51
+ "columns": {
52
+ "geo": {
53
+ "name": "STATE",
54
+ "label": "",
55
+ "tooltip": false,
56
+ "dataTable": true
57
+ },
58
+ "primary": {
59
+ "dataTable": true,
60
+ "tooltip": false,
61
+ "prefix": "",
62
+ "suffix": "",
63
+ "name": "Rate",
64
+ "label": "Rate",
65
+ "roundToPlace": 0
66
+ },
67
+ "navigate": {
68
+ "name": "",
69
+ "dataTable": false,
70
+ "tooltip": false
71
+ },
72
+ "latitude": {
73
+ "name": ""
74
+ },
75
+ "longitude": {
76
+ "name": ""
77
+ },
78
+ "additionalColumn1": {
79
+ "label": "Location",
80
+ "dataTable": true,
81
+ "tooltips": false,
82
+ "prefix": "",
83
+ "suffix": "",
84
+ "name": "Location",
85
+ "tooltip": true
86
+ },
87
+ "geosInRegion": {
88
+ "name": ""
89
+ }
90
+ },
91
+ "legend": {
92
+ "descriptions": {},
93
+ "specialClasses": [
94
+ {
95
+ "key": "Rate",
96
+ "value": "*",
97
+ "label": "*"
98
+ },
99
+ {
100
+ "key": "Rate",
101
+ "value": "NA",
102
+ "label": "N/A"
103
+ }
104
+ ],
105
+ "unified": false,
106
+ "singleColumn": false,
107
+ "singleRow": false,
108
+ "verticalSorted": false,
109
+ "showSpecialClassesLast": false,
110
+ "dynamicDescription": false,
111
+ "type": "equalnumber",
112
+ "numberOfItems": 3,
113
+ "position": "side",
114
+ "title": "Legend Title",
115
+ "style": "circles",
116
+ "subStyle": "linear blocks",
117
+ "tickRotation": "",
118
+ "singleColumnLegend": false,
119
+ "hideBorder": false,
120
+ "groupBy": "",
121
+ "description": "Legend Text"
122
+ },
123
+ "filters": [],
124
+ "data": [
125
+ {
126
+ "STATE": "AL",
127
+ "Rate": 1000,
128
+ "Location": "Home",
129
+ "URL": "https://www.cdc.gov/"
130
+ },
131
+ {
132
+ "STATE": "Great Plains Tribal Leaders Health Board",
133
+ "Rate": 1000,
134
+ "Location": "Home",
135
+ "URL": "https://www.cdc.gov/"
136
+ },
137
+ {
138
+ "STATE": "Montana American Indian Women’s Health Coalition",
139
+ "Rate": 1000,
140
+ "Location": "Home",
141
+ "URL": "https://www.cdc.gov/"
142
+ },
143
+ {
144
+ "STATE": "AK",
145
+ "Rate": 1200,
146
+ "Location": "Vehicle",
147
+ "URL": "https://www.cdc.gov/"
148
+ },
149
+ {
150
+ "STATE": "AS",
151
+ "Rate": 14,
152
+ "Location": "Work",
153
+ "URL": "https://www.cdc.gov/"
154
+ },
155
+ {
156
+ "STATE": "EAU CLAIRE",
157
+ "Rate": 140,
158
+ "Location": "Work",
159
+ "URL": "https://www.cdc.gov/"
160
+ },
161
+ {
162
+ "STATE": "AZ",
163
+ "Rate": 9,
164
+ "Location": "School",
165
+ "URL": "https://www.cdc.gov/"
166
+ },
167
+ {
168
+ "STATE": "AR",
169
+ "Rate": 17,
170
+ "Location": "School",
171
+ "URL": "https://www.cdc.gov/"
172
+ },
173
+ {
174
+ "STATE": "CA",
175
+ "Rate": "*",
176
+ "Location": "Work",
177
+ "URL": "https://www.cdc.gov/"
178
+ },
179
+ {
180
+ "STATE": "CO",
181
+ "Rate": 22,
182
+ "Location": "Vehicle",
183
+ "URL": "https://www.cdc.gov/"
184
+ },
185
+ {
186
+ "STATE": "CT",
187
+ "Rate": 10,
188
+ "Location": "Home",
189
+ "URL": "https://www.cdc.gov/"
190
+ },
191
+ {
192
+ "STATE": "DE",
193
+ "Rate": 12,
194
+ "Location": "Home",
195
+ "URL": "https://www.cdc.gov/"
196
+ },
197
+ {
198
+ "STATE": "DC",
199
+ "Rate": 14,
200
+ "Location": "Home",
201
+ "URL": "https://www.cdc.gov/"
202
+ },
203
+ {
204
+ "STATE": "FL",
205
+ "Rate": 9,
206
+ "Location": "Vehicle",
207
+ "URL": "https://www.cdc.gov/"
208
+ },
209
+ {
210
+ "STATE": "GA",
211
+ "Rate": 17,
212
+ "Location": "Work",
213
+ "URL": "https://www.cdc.gov/"
214
+ },
215
+ {
216
+ "STATE": "GU",
217
+ "Rate": 20,
218
+ "Location": "School",
219
+ "URL": "https://www.cdc.gov/"
220
+ },
221
+ {
222
+ "STATE": "HI",
223
+ "Rate": 22,
224
+ "Location": "School",
225
+ "URL": "https://www.cdc.gov/"
226
+ },
227
+ {
228
+ "STATE": "GAINESVILLE",
229
+ "Rate": 22,
230
+ "Location": "School",
231
+ "URL": "https://www.cdc.gov/"
232
+ },
233
+ {
234
+ "STATE": "ID",
235
+ "Rate": "*",
236
+ "Location": "Work",
237
+ "URL": "https://www.cdc.gov/"
238
+ },
239
+ {
240
+ "STATE": "IL",
241
+ "Rate": 12,
242
+ "Location": "Vehicle",
243
+ "URL": "https://www.cdc.gov/"
244
+ },
245
+ {
246
+ "STATE": "IN",
247
+ "Rate": 14,
248
+ "Location": "Home",
249
+ "URL": "https://www.cdc.gov/"
250
+ },
251
+ {
252
+ "STATE": "IA",
253
+ "Rate": 9,
254
+ "Location": "Home",
255
+ "URL": "https://www.cdc.gov/"
256
+ },
257
+ {
258
+ "STATE": "KS",
259
+ "Rate": "NA",
260
+ "Location": "Home",
261
+ "URL": "https://www.cdc.gov/"
262
+ },
263
+ {
264
+ "STATE": "KY",
265
+ "Rate": 20,
266
+ "Location": "Vehicle",
267
+ "URL": "https://www.cdc.gov/"
268
+ },
269
+ {
270
+ "STATE": "LA",
271
+ "Rate": 22,
272
+ "Location": "Work",
273
+ "URL": "https://www.cdc.gov/"
274
+ },
275
+ {
276
+ "STATE": "ME",
277
+ "Rate": 10,
278
+ "Location": "School",
279
+ "URL": "https://www.cdc.gov/"
280
+ },
281
+ {
282
+ "STATE": "MH",
283
+ "Rate": 12,
284
+ "Location": "School",
285
+ "URL": "https://www.cdc.gov/"
286
+ },
287
+ {
288
+ "STATE": "MD",
289
+ "Rate": "*",
290
+ "Location": "Work",
291
+ "URL": "https://www.cdc.gov/"
292
+ },
293
+ {
294
+ "STATE": "MA",
295
+ "Rate": 9,
296
+ "Location": "Vehicle",
297
+ "URL": "https://www.cdc.gov/"
298
+ },
299
+ {
300
+ "STATE": "MI",
301
+ "Rate": 17,
302
+ "Location": "Home",
303
+ "URL": "https://www.cdc.gov/"
304
+ },
305
+ {
306
+ "STATE": "FM",
307
+ "Rate": 20,
308
+ "Location": "Home",
309
+ "URL": "https://www.cdc.gov/"
310
+ },
311
+ {
312
+ "STATE": "MN",
313
+ "Rate": 22,
314
+ "Location": "Home",
315
+ "URL": "https://www.cdc.gov/"
316
+ },
317
+ {
318
+ "STATE": "MS",
319
+ "Rate": 10,
320
+ "Location": "Vehicle",
321
+ "URL": "https://www.cdc.gov/"
322
+ },
323
+ {
324
+ "STATE": "MO",
325
+ "Rate": 11,
326
+ "Location": "Work",
327
+ "URL": "https://www.cdc.gov/"
328
+ },
329
+ {
330
+ "STATE": "MT",
331
+ "Rate": 14,
332
+ "Location": "School",
333
+ "URL": "https://www.cdc.gov/"
334
+ },
335
+ {
336
+ "STATE": "NE",
337
+ "Rate": 9,
338
+ "Location": "School",
339
+ "URL": "https://www.cdc.gov/"
340
+ },
341
+ {
342
+ "STATE": "NV",
343
+ "Rate": 17,
344
+ "Location": "Work",
345
+ "URL": "https://www.cdc.gov/"
346
+ },
347
+ {
348
+ "STATE": "NH",
349
+ "Rate": 20,
350
+ "Location": "Vehicle",
351
+ "URL": "https://www.cdc.gov/"
352
+ },
353
+ {
354
+ "STATE": "NJ",
355
+ "Rate": 28,
356
+ "Location": "Home",
357
+ "URL": "https://www.cdc.gov/"
358
+ },
359
+ {
360
+ "STATE": "NM",
361
+ "Rate": 10,
362
+ "Location": "Home",
363
+ "URL": "https://www.cdc.gov/"
364
+ },
365
+ {
366
+ "STATE": "NY",
367
+ "Rate": 12,
368
+ "Location": "Home",
369
+ "URL": "https://www.cdc.gov/"
370
+ },
371
+ {
372
+ "STATE": "NC",
373
+ "Rate": 14,
374
+ "Location": "Vehicle",
375
+ "URL": "https://www.cdc.gov/"
376
+ },
377
+ {
378
+ "STATE": "ND",
379
+ "Rate": 9,
380
+ "Location": "Work",
381
+ "URL": "https://www.cdc.gov/"
382
+ },
383
+ {
384
+ "STATE": "MP",
385
+ "Rate": 17,
386
+ "Location": "School",
387
+ "URL": "https://www.cdc.gov/"
388
+ },
389
+ {
390
+ "STATE": "OH",
391
+ "Rate": "NA",
392
+ "Location": "School",
393
+ "URL": "https://www.cdc.gov/"
394
+ },
395
+ {
396
+ "STATE": "OK",
397
+ "Rate": 22,
398
+ "Location": "Work",
399
+ "URL": "https://www.cdc.gov/"
400
+ },
401
+ {
402
+ "STATE": "OR",
403
+ "Rate": 10,
404
+ "Location": "Vehicle",
405
+ "URL": "https://www.cdc.gov/"
406
+ },
407
+ {
408
+ "STATE": "PW-2",
409
+ "Rate": 12,
410
+ "Location": "Home",
411
+ "URL": "https://www.cdc.gov/"
412
+ },
413
+ {
414
+ "STATE": "PA",
415
+ "Rate": 14,
416
+ "Location": "Home",
417
+ "URL": "https://www.cdc.gov/"
418
+ },
419
+ {
420
+ "STATE": "PR",
421
+ "Rate": 6,
422
+ "Location": "Home",
423
+ "URL": "https://www.cdc.gov/"
424
+ },
425
+ {
426
+ "STATE": "RI",
427
+ "Rate": 17,
428
+ "Location": "Vehicle",
429
+ "URL": "https://www.cdc.gov/"
430
+ },
431
+ {
432
+ "STATE": "SC",
433
+ "Rate": 20,
434
+ "Location": "Work",
435
+ "URL": "https://www.cdc.gov/"
436
+ },
437
+ {
438
+ "STATE": "SD",
439
+ "Rate": 22,
440
+ "Location": "School",
441
+ "URL": "https://www.cdc.gov/"
442
+ },
443
+ {
444
+ "STATE": "TN",
445
+ "Rate": 10,
446
+ "Location": "School",
447
+ "URL": "https://www.cdc.gov/"
448
+ },
449
+ {
450
+ "STATE": "TX",
451
+ "Rate": 12,
452
+ "Location": "Work",
453
+ "URL": "https://www.cdc.gov/"
454
+ },
455
+ {
456
+ "STATE": "VT",
457
+ "Rate": 9,
458
+ "Location": "Home",
459
+ "URL": "https://www.cdc.gov/"
460
+ },
461
+ {
462
+ "STATE": "VI",
463
+ "Rate": 17,
464
+ "Location": "Vehicle",
465
+ "URL": "https://www.cdc.gov/"
466
+ },
467
+ {
468
+ "STATE": "VA",
469
+ "Rate": 20,
470
+ "Location": "Work",
471
+ "URL": "https://www.cdc.gov/"
472
+ },
473
+ {
474
+ "STATE": "WA",
475
+ "Rate": 22,
476
+ "Location": "School",
477
+ "URL": "https://www.cdc.gov/"
478
+ },
479
+ {
480
+ "STATE": "WV",
481
+ "Rate": 10,
482
+ "Location": "School",
483
+ "URL": "https://www.cdc.gov/"
484
+ },
485
+ {
486
+ "STATE": "WI",
487
+ "Rate": 12,
488
+ "Location": "Work",
489
+ "URL": "https://www.cdc.gov/"
490
+ },
491
+ {
492
+ "STATE": "WY",
493
+ "Rate": 14,
494
+ "Location": "Home",
495
+ "URL": "https://www.cdc.gov/"
496
+ },
497
+ {
498
+ "STATE": "Los Angeles",
499
+ "Rate": 14,
500
+ "Location": "Vehicle",
501
+ "URL": "https://www.cdc.gov/"
502
+ },
503
+ {
504
+ "STATE": "Grand Rapids, MICHIGAN",
505
+ "Rate": 14,
506
+ "Location": "Vehicle",
507
+ "URL": "https://www.cdc.gov/"
508
+ },
509
+ {
510
+ "STATE": "Salem, OReGON",
511
+ "Rate": 14,
512
+ "Location": "Vehicle",
513
+ "URL": "https://www.cdc.gov/"
514
+ },
515
+ {
516
+ "STATE": "Round Rock, TEXAS",
517
+ "Rate": 14,
518
+ "Location": "Vehicle",
519
+ "URL": "https://www.cdc.gov/"
520
+ },
521
+ {
522
+ "STATE": "PROVO, UT",
523
+ "Rate": 14,
524
+ "Location": "Vehicle",
525
+ "URL": "https://www.cdc.gov/"
526
+ },
527
+ {
528
+ "STATE": "SALUDA, VIRGINIA",
529
+ "Rate": 14,
530
+ "Location": "Vehicle",
531
+ "URL": "https://www.cdc.gov/"
532
+ },
533
+ {
534
+ "STATE": "ELLENSBURG, WA",
535
+ "Rate": 14,
536
+ "Location": "Vehicle",
537
+ "URL": "https://www.cdc.gov/"
538
+ },
539
+ {
540
+ "STATE": "Atlanta",
541
+ "Rate": 12,
542
+ "Location": "Work",
543
+ "URL": "https://www.cdc.gov/"
544
+ },
545
+ {
546
+ "STATE": "Boston",
547
+ "Rate": 20,
548
+ "Location": "School",
549
+ "URL": "https://www.cdc.gov/"
550
+ },
551
+ {
552
+ "STATE": "New York City",
553
+ "Rate": 22,
554
+ "Location": "School",
555
+ "URL": "https://www.cdc.gov/"
556
+ },
557
+ {
558
+ "STATE": "Dallas",
559
+ "Rate": 18,
560
+ "Location": "Work",
561
+ "URL": "https://www.cdc.gov/"
562
+ },
563
+ {
564
+ "STATE": "Seattle",
565
+ "Rate": 17,
566
+ "Location": "Home",
567
+ "URL": "https://www.cdc.gov/"
568
+ },
569
+ {
570
+ "STATE": "New Orleans",
571
+ "Rate": 14,
572
+ "Location": "Vehicle",
573
+ "URL": "https://www.cdc.gov/"
574
+ },
575
+ {
576
+ "STATE": "Birmingham",
577
+ "Rate": 14,
578
+ "Location": "Vehicle",
579
+ "URL": "https://www.cdc.gov/"
580
+ },
581
+ {
582
+ "STATE": "St Paul",
583
+ "Rate": 14,
584
+ "Location": "Vehicle",
585
+ "URL": "https://www.cdc.gov/"
586
+ },
587
+ {
588
+ "STATE": "Hershey",
589
+ "Rate": 14,
590
+ "Location": "Vehicle",
591
+ "URL": "https://www.cdc.gov/"
592
+ },
593
+ {
594
+ "STATE": "Salt Lake City",
595
+ "Rate": 14,
596
+ "Location": "Vehicle",
597
+ "URL": "https://www.cdc.gov/"
598
+ },
599
+ {
600
+ "STATE": "Syracuse",
601
+ "Rate": 14,
602
+ "Location": "Vehicle",
603
+ "URL": "https://www.cdc.gov/"
604
+ },
605
+ {
606
+ "STATE": "Philadelphia",
607
+ "Rate": 14,
608
+ "Location": "Vehicle",
609
+ "URL": "https://www.cdc.gov/"
610
+ },
611
+ {
612
+ "STATE": "Alaska Native Tribal Health Consortium",
613
+ "Rate": 24,
614
+ "Location": "Work",
615
+ "URL": "https://www.cdc.gov/"
616
+ },
617
+ {
618
+ "STATE": "American Indian Cancer Foundation",
619
+ "Rate": 14,
620
+ "Location": "Vehicle",
621
+ "URL": "https://www.cdc.gov/"
622
+ },
623
+ {
624
+ "STATE": "Arctic Slope Native Association Limited",
625
+ "Rate": 14,
626
+ "Location": "Vehicle",
627
+ "URL": "https://www.cdc.gov/"
628
+ },
629
+ {
630
+ "STATE": "California Rural Indian Health Board Inc.",
631
+ "Rate": 19,
632
+ "Location": "Work",
633
+ "URL": "https://www.cdc.gov/"
634
+ },
635
+ {
636
+ "STATE": "Cherokee Nation",
637
+ "Rate": 12,
638
+ "Location": "Vehicle",
639
+ "URL": "https://www.cdc.gov/"
640
+ },
641
+ {
642
+ "STATE": "Cheyenne River Sioux Tribe",
643
+ "Rate": 11,
644
+ "Location": "Vehicle",
645
+ "URL": "https://www.cdc.gov/"
646
+ },
647
+ {
648
+ "STATE": "Fond du Lac Reservation",
649
+ "Rate": 22,
650
+ "Location": "Vehicle",
651
+ "URL": "https://www.cdc.gov/"
652
+ },
653
+ {
654
+ "STATE": "Great Plains Tribal Leaders Health Board",
655
+ "Rate": 18,
656
+ "Location": "Vehicle",
657
+ "URL": "https://www.cdc.gov/"
658
+ },
659
+ {
660
+ "STATE": "Hopi Tribe",
661
+ "Rate": 19,
662
+ "Location": "Vehicle",
663
+ "URL": "https://www.cdc.gov/"
664
+ },
665
+ {
666
+ "STATE": "Inter-Tribal Council of Michigan, Inc.",
667
+ "Rate": 14,
668
+ "Location": "Vehicle",
669
+ "URL": "https://www.cdc.gov/"
670
+ },
671
+ {
672
+ "STATE": "Kaw Nation of Oklahoma",
673
+ "Rate": 16,
674
+ "Location": "Vehicle",
675
+ "URL": "https://www.cdc.gov/"
676
+ },
677
+ {
678
+ "STATE": "Native American Rehabilitation Association of the Northwest, Inc.",
679
+ "Rate": 22,
680
+ "Location": "School",
681
+ "URL": "https://www.cdc.gov/"
682
+ },
683
+ {
684
+ "STATE": "Navajo Nation",
685
+ "Rate": 24,
686
+ "Location": "Vehicle",
687
+ "URL": "https://www.cdc.gov/"
688
+ },
689
+ {
690
+ "STATE": "Northwest Portland Area Indian Health Board",
691
+ "Rate": 24,
692
+ "Location": "Vehicle",
693
+ "URL": "https://www.cdc.gov/"
694
+ },
695
+ {
696
+ "STATE": "South Puget Intertribal Planning Agency",
697
+ "Rate": 9,
698
+ "Location": "Vehicle",
699
+ "URL": "https://www.cdc.gov/"
700
+ },
701
+ {
702
+ "STATE": "Southcentral Foundation",
703
+ "Rate": 29,
704
+ "Location": "Vehicle",
705
+ "URL": "https://www.cdc.gov/"
706
+ },
707
+ {
708
+ "STATE": "Southeast Alaska Regional Health Consortium",
709
+ "Rate": 8,
710
+ "Location": "Vehicle",
711
+ "URL": "https://www.cdc.gov/"
712
+ },
713
+ {
714
+ "STATE": "Yukon-Kuskokwim Health Corporation",
715
+ "Rate": 5,
716
+ "Location": "Vehicle",
717
+ "URL": "https://www.cdc.gov/"
718
+ },
719
+ {
720
+ "STATE": "Modesto",
721
+ "Rate": 5,
722
+ "Location": "Vehicle",
723
+ "URL": "https://www.cdc.gov/"
724
+ },
725
+ {
726
+ "STATE": "Lakeview",
727
+ "Rate": 5,
728
+ "Location": "Vehicle",
729
+ "URL": "https://www.cdc.gov/"
730
+ },
731
+ {
732
+ "STATE": "Lockport",
733
+ "Rate": 5,
734
+ "Location": "Vehicle",
735
+ "URL": "https://www.cdc.gov/"
736
+ },
737
+ {
738
+ "STATE": "Warren",
739
+ "Rate": 5,
740
+ "Location": "Vehicle",
741
+ "URL": "https://www.cdc.gov/"
742
+ },
743
+ {
744
+ "STATE": "Salem, Oregon",
745
+ "Rate": 5,
746
+ "Location": "Vehicle",
747
+ "URL": "https://www.cdc.gov/"
748
+ },
749
+ {
750
+ "STATE": "Salem, Connecticut",
751
+ "Rate": 5,
752
+ "Location": "Vehicle",
753
+ "URL": "https://www.cdc.gov/"
754
+ },
755
+ {
756
+ "STATE": "Salem, Alabama",
757
+ "Rate": 5,
758
+ "Location": "Vehicle",
759
+ "URL": "https://www.cdc.gov/"
760
+ },
761
+ {
762
+ "STATE": "Salem, Florida",
763
+ "Rate": 5,
764
+ "Location": "Vehicle",
765
+ "URL": "https://www.cdc.gov/"
766
+ },
767
+ {
768
+ "STATE": "Salem, Massachusetts",
769
+ "Rate": 5,
770
+ "Location": "Vehicle",
771
+ "URL": "https://www.cdc.gov/"
772
+ },
773
+ {
774
+ "STATE": "San Benito",
775
+ "Rate": 5,
776
+ "Location": "Vehicle",
777
+ "URL": "https://www.cdc.gov/"
778
+ },
779
+ {
780
+ "STATE": "Alexandria",
781
+ "Rate": 5,
782
+ "Location": "Vehicle",
783
+ "URL": "https://www.cdc.gov/"
784
+ },
785
+ {
786
+ "STATE": "San Juan",
787
+ "Rate": 5,
788
+ "Location": "Vehicle",
789
+ "URL": "https://www.cdc.gov/"
790
+ }
791
+ ],
792
+ "table": {
793
+ "wrapColumns": false,
794
+ "label": "Data Table",
795
+ "expanded": true,
796
+ "limitHeight": false,
797
+ "height": "",
798
+ "caption": "",
799
+ "showDownloadUrl": false,
800
+ "showDataTableLink": true,
801
+ "showDownloadLinkBelow": true,
802
+ "showFullGeoNameInCSV": false,
803
+ "forceDisplay": true,
804
+ "download": true,
805
+ "indexLabel": "",
806
+ "cellMinWidth": "0",
807
+ "collapsible": true
808
+ },
809
+ "tooltips": {
810
+ "appearanceType": "hover",
811
+ "linkLabel": "Learn More",
812
+ "opacity": 90,
813
+ "capitalizeLabels": true
814
+ },
815
+ "runtime": {
816
+ "editorErrorMessage": ""
817
+ },
818
+ "visual": {
819
+ "minBubbleSize": 1,
820
+ "maxBubbleSize": 20,
821
+ "extraBubbleBorder": false,
822
+ "cityStyle": "pin",
823
+ "cityStyleLabel": "",
824
+ "showBubbleZeros": false,
825
+ "additionalCityStyles": [],
826
+ "geoCodeCircleSize": 2
827
+ },
828
+ "mapPosition": {
829
+ "coordinates": [
830
+ 0,
831
+ 30
832
+ ],
833
+ "zoom": 1
834
+ },
835
+ "map": {
836
+ "layers": [],
837
+ "patterns": [
838
+ {
839
+ "dataKey": "Location",
840
+ "pattern": "circles",
841
+ "contrastCheck": true,
842
+ "dataValue": "School",
843
+ "color": "black",
844
+ "size": "medium"
845
+ }
846
+ ]
847
+ },
848
+ "hexMap": {
849
+ "type": "",
850
+ "shapeGroups": [
851
+ {
852
+ "legendTitle": "",
853
+ "legendDescription": "",
854
+ "items": [
855
+ {
856
+ "key": "",
857
+ "shape": "Arrow Up",
858
+ "column": "",
859
+ "operator": "=",
860
+ "value": ""
861
+ }
862
+ ]
863
+ }
864
+ ]
865
+ },
866
+ "filterBehavior": "Filter Change",
867
+ "filterIntro": "",
868
+ "dataTable": {
869
+ "title": "Data Table",
870
+ "forceDisplay": true
871
+ },
872
+ "sharing": {
873
+ "enabled": false,
874
+ "dataHost": "wcms-wp.cdc.gov",
875
+ "configUrl": "/wcms/4.0/cdc-wp/data-presentation/examples/city-data-map-example.json"
876
+ },
877
+ "usingWidgetLoader": true,
878
+ "filterStyle": "Filter Changes",
879
+ "version": "4.25.9",
880
+ "migrations": {
881
+ "addColorMigration": true
882
+ }
883
+ }