@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,221 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "navigationTarget": "_self",
5
+ "noDataMessage": "No State Selected",
6
+ "annotationDropdownText": "Annotations",
7
+ "geoBorderColor": "darkGray",
8
+ "headerColor": "theme-blue",
9
+ "title": "",
10
+ "showTitle": true,
11
+ "showSidebar": true,
12
+ "showDownloadMediaButton": false,
13
+ "displayAsHex": false,
14
+ "displayStateLabels": false,
15
+ "territoriesAlwaysShow": false,
16
+ "language": "en",
17
+ "geoType": "us-county",
18
+ "geoLabelOverride": "Sewershed",
19
+ "hasRegions": false,
20
+ "fullBorder": false,
21
+ "type": "us-geocode",
22
+ "convertFipsCodes": true,
23
+ "palette": {
24
+ "isReversed": false,
25
+ "name": "sequential_pink_purple",
26
+ "version": "1.0",
27
+ "customColors": [
28
+ "#6b0057",
29
+ "#6b0057",
30
+ "#6b0057",
31
+ "#5bc2b9",
32
+ "#e0e0e0",
33
+ "#e0e0e0"
34
+ ],
35
+ "backups": [
36
+ {
37
+ "name": "sequential_pink_purple",
38
+ "version": "1.0",
39
+ "isReversed": false
40
+ }
41
+ ]
42
+ },
43
+ "allowMapZoom": false,
44
+ "hideGeoColumnInTooltip": false,
45
+ "hidePrimaryColumnInTooltip": false,
46
+ "statesPicked": [
47
+ {
48
+ "fipsCode": "01",
49
+ "stateName": "Alabama"
50
+ }
51
+ ],
52
+ "expandDataTable": false,
53
+ "introText": "",
54
+ "subtext": "<div class=\"text-left ml-3 pb-3\" >\nWastewater measles data available on this site may not represent all jurisdictions currently conducting monitoring. Some states and local health departments may publish additional data on their own webpages. CDC continues to work closely with partners to integrate these data into national reporting.\n\nFor Utah, please visit: <a href=\"https://avrpublic.dhhs.utah.gov/uwss/\">Utah Department of Health and Human Services</a>.\n</div>\n\n<div class=\"text-left ml-3 pb-3\">Data <span class=\"date\">FromDB</span></div>\n<p class=\"float-right\"><a href=\"/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemapnocoords.csv\">Download Data</a></p>",
55
+ "footnotes": ""
56
+ },
57
+ "type": "map",
58
+ "columns": {
59
+ "geo": {
60
+ "name": "Sewershed",
61
+ "label": "Location",
62
+ "tooltip": false,
63
+ "dataTable": true
64
+ },
65
+ "primary": {
66
+ "dataTable": true,
67
+ "tooltip": true,
68
+ "prefix": "",
69
+ "suffix": "",
70
+ "name": "Detection_Category",
71
+ "label": "Detection Category",
72
+ "roundToPlace": 0
73
+ },
74
+ "navigate": {
75
+ "name": ""
76
+ },
77
+ "latitude": {
78
+ "name": "Latitude"
79
+ },
80
+ "longitude": {
81
+ "name": "Longitude"
82
+ },
83
+ "additionalColumn1": {
84
+ "label": "State/Territory",
85
+ "dataTable": true,
86
+ "tooltips": false,
87
+ "prefix": "",
88
+ "suffix": "",
89
+ "name": "State/Territory",
90
+ "tooltip": true
91
+ },
92
+ "additionalColumn2": {
93
+ "label": "Counties Served",
94
+ "dataTable": true,
95
+ "tooltips": false,
96
+ "prefix": "",
97
+ "suffix": "",
98
+ "name": "Counties_Served",
99
+ "tooltip": true
100
+ },
101
+ "additionalColumn4": {
102
+ "label": "Population Served",
103
+ "dataTable": true,
104
+ "tooltips": false,
105
+ "prefix": "",
106
+ "suffix": "",
107
+ "name": "Population_Served",
108
+ "useCommas": true,
109
+ "tooltip": true
110
+ }
111
+ },
112
+ "legend": {
113
+ "descriptions": {},
114
+ "specialClasses": [],
115
+ "unified": false,
116
+ "singleColumn": false,
117
+ "singleRow": true,
118
+ "verticalSorted": false,
119
+ "showSpecialClassesLast": false,
120
+ "dynamicDescription": false,
121
+ "type": "category",
122
+ "numberOfItems": 3,
123
+ "position": "bottom",
124
+ "title": "Select a detection type below to add or remove it from the map.",
125
+ "style": "circles",
126
+ "subStyle": "linear blocks",
127
+ "tickRotation": "",
128
+ "singleColumnLegend": false,
129
+ "hideBorder": false,
130
+ "groupBy": "",
131
+ "categoryValuesOrder": [
132
+ "Detection",
133
+ "No Detection",
134
+ "No Data",
135
+ "H5 Detection",
136
+ "No Samples in Last Week"
137
+ ],
138
+ "additionalCategories": [
139
+ "Detection",
140
+ ""
141
+ ]
142
+ },
143
+ "filters": [],
144
+ "table": {
145
+ "wrapColumns": false,
146
+ "label": "Data Table",
147
+ "expanded": false,
148
+ "limitHeight": false,
149
+ "height": "",
150
+ "caption": "",
151
+ "showDownloadUrl": false,
152
+ "showDataTableLink": true,
153
+ "showDownloadLinkBelow": false,
154
+ "showFullGeoNameInCSV": false,
155
+ "forceDisplay": true,
156
+ "download": false,
157
+ "indexLabel": "Sewershed",
158
+ "cellMinWidth": "0",
159
+ "collapsible": true
160
+ },
161
+ "tooltips": {
162
+ "appearanceType": "hover",
163
+ "linkLabel": "Learn More",
164
+ "opacity": 90,
165
+ "capitalizeLabels": true
166
+ },
167
+ "visual": {
168
+ "minBubbleSize": 1,
169
+ "maxBubbleSize": 20,
170
+ "extraBubbleBorder": false,
171
+ "cityStyle": "circle",
172
+ "cityStyleLabel": "",
173
+ "showBubbleZeros": false,
174
+ "additionalCityStyles": [],
175
+ "geoCodeCircleSize": "5"
176
+ },
177
+ "mapPosition": {
178
+ "coordinates": [
179
+ 0,
180
+ 30
181
+ ],
182
+ "zoom": 1
183
+ },
184
+ "map": {
185
+ "layers": [],
186
+ "patterns": []
187
+ },
188
+ "hexMap": {
189
+ "type": "",
190
+ "shapeGroups": [
191
+ {
192
+ "legendTitle": "",
193
+ "legendDescription": "",
194
+ "items": [
195
+ {
196
+ "key": "",
197
+ "shape": "Arrow Up",
198
+ "column": "",
199
+ "operator": "=",
200
+ "value": ""
201
+ }
202
+ ]
203
+ }
204
+ ]
205
+ },
206
+ "filterBehavior": "Filter Change",
207
+ "filterIntro": "",
208
+ "markupVariables": [],
209
+ "enableMarkupVariables": false,
210
+ "dataFileName": "/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemap.json",
211
+ "dataFileSourceType": "url",
212
+ "dataDescription": {
213
+ "horizontal": false,
214
+ "series": false
215
+ },
216
+ "version": "4.25.10",
217
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemap.json",
218
+ "migrations": {
219
+ "addColorMigration": true
220
+ }
221
+ }
@@ -0,0 +1,221 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "navigationTarget": "_self",
5
+ "noDataMessage": "No State Selected",
6
+ "annotationDropdownText": "Annotations",
7
+ "geoBorderColor": "darkGray",
8
+ "headerColor": "theme-blue",
9
+ "title": "",
10
+ "showTitle": true,
11
+ "showSidebar": true,
12
+ "showDownloadMediaButton": false,
13
+ "displayAsHex": false,
14
+ "displayStateLabels": false,
15
+ "territoriesAlwaysShow": false,
16
+ "language": "en",
17
+ "geoType": "us-county",
18
+ "geoLabelOverride": "Sewershed",
19
+ "hasRegions": false,
20
+ "fullBorder": false,
21
+ "type": "us-geocode",
22
+ "convertFipsCodes": true,
23
+ "palette": {
24
+ "isReversed": false,
25
+ "name": "sequential_pink_purple",
26
+ "version": "1.0",
27
+ "customColors": [
28
+ "#6b0057",
29
+ "#6b0057",
30
+ "#6b0057",
31
+ "#5bc2b9",
32
+ "#e0e0e0",
33
+ "#e0e0e0"
34
+ ],
35
+ "backups": [
36
+ {
37
+ "name": "sequential_pink_purple",
38
+ "version": "1.0",
39
+ "isReversed": false
40
+ }
41
+ ]
42
+ },
43
+ "allowMapZoom": false,
44
+ "hideGeoColumnInTooltip": false,
45
+ "hidePrimaryColumnInTooltip": false,
46
+ "statesPicked": [
47
+ {
48
+ "fipsCode": "01",
49
+ "stateName": "Alabama"
50
+ }
51
+ ],
52
+ "expandDataTable": false,
53
+ "introText": "",
54
+ "subtext": "<div class=\"text-left ml-3 pb-3\" >\nWastewater measles data available on this site may not represent all jurisdictions currently conducting monitoring. Some states and local health departments may publish additional data on their own webpages. CDC continues to work closely with partners to integrate these data into national reporting.\n\nFor Utah, please visit: <a href=\"https://avrpublic.dhhs.utah.gov/uwss/\">Utah Department of Health and Human Services</a>.\n</div>\n\n<div class=\"text-left ml-3 pb-3\">Data <span class=\"date\">FromDB</span></div>\n<p class=\"float-right\"><a href=\"/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemapnocoords.csv\">Download Data</a></p>",
55
+ "footnotes": ""
56
+ },
57
+ "type": "map",
58
+ "columns": {
59
+ "geo": {
60
+ "name": "Sewershed",
61
+ "label": "Location",
62
+ "tooltip": false,
63
+ "dataTable": true
64
+ },
65
+ "primary": {
66
+ "dataTable": true,
67
+ "tooltip": true,
68
+ "prefix": "",
69
+ "suffix": "",
70
+ "name": "Detection_Category",
71
+ "label": "Detection Category",
72
+ "roundToPlace": 0
73
+ },
74
+ "navigate": {
75
+ "name": ""
76
+ },
77
+ "latitude": {
78
+ "name": "Latitude"
79
+ },
80
+ "longitude": {
81
+ "name": "Longitude"
82
+ },
83
+ "additionalColumn1": {
84
+ "label": "State/Territory",
85
+ "dataTable": true,
86
+ "tooltips": false,
87
+ "prefix": "",
88
+ "suffix": "",
89
+ "name": "State/Territory",
90
+ "tooltip": true
91
+ },
92
+ "additionalColumn2": {
93
+ "label": "Counties Served",
94
+ "dataTable": true,
95
+ "tooltips": false,
96
+ "prefix": "",
97
+ "suffix": "",
98
+ "name": "Counties_Served",
99
+ "tooltip": true
100
+ },
101
+ "additionalColumn4": {
102
+ "label": "Population Served",
103
+ "dataTable": true,
104
+ "tooltips": false,
105
+ "prefix": "",
106
+ "suffix": "",
107
+ "name": "Population_Served",
108
+ "useCommas": true,
109
+ "tooltip": true
110
+ }
111
+ },
112
+ "legend": {
113
+ "descriptions": {},
114
+ "specialClasses": [],
115
+ "unified": false,
116
+ "singleColumn": false,
117
+ "singleRow": true,
118
+ "verticalSorted": false,
119
+ "showSpecialClassesLast": false,
120
+ "dynamicDescription": false,
121
+ "type": "category",
122
+ "numberOfItems": 3,
123
+ "position": "bottom",
124
+ "title": "Select a detection type below to add or remove it from the map.",
125
+ "style": "circles",
126
+ "subStyle": "linear blocks",
127
+ "tickRotation": "",
128
+ "singleColumnLegend": false,
129
+ "hideBorder": false,
130
+ "groupBy": "",
131
+ "categoryValuesOrder": [
132
+ "Detection",
133
+ "No Detection",
134
+ "No Data",
135
+ "H5 Detection",
136
+ "No Samples in Last Week"
137
+ ],
138
+ "additionalCategories": [
139
+ "Detection",
140
+ ""
141
+ ]
142
+ },
143
+ "filters": [],
144
+ "table": {
145
+ "wrapColumns": false,
146
+ "label": "Data Table",
147
+ "expanded": false,
148
+ "limitHeight": false,
149
+ "height": "",
150
+ "caption": "",
151
+ "showDownloadUrl": false,
152
+ "showDataTableLink": true,
153
+ "showDownloadLinkBelow": false,
154
+ "showFullGeoNameInCSV": false,
155
+ "forceDisplay": true,
156
+ "download": false,
157
+ "indexLabel": "Sewershed",
158
+ "cellMinWidth": "0",
159
+ "collapsible": true
160
+ },
161
+ "tooltips": {
162
+ "appearanceType": "hover",
163
+ "linkLabel": "Learn More",
164
+ "opacity": 90,
165
+ "capitalizeLabels": true
166
+ },
167
+ "visual": {
168
+ "minBubbleSize": 1,
169
+ "maxBubbleSize": 20,
170
+ "extraBubbleBorder": false,
171
+ "cityStyle": "circle",
172
+ "cityStyleLabel": "",
173
+ "showBubbleZeros": false,
174
+ "additionalCityStyles": [],
175
+ "geoCodeCircleSize": "5"
176
+ },
177
+ "mapPosition": {
178
+ "coordinates": [
179
+ 0,
180
+ 30
181
+ ],
182
+ "zoom": 1
183
+ },
184
+ "map": {
185
+ "layers": [],
186
+ "patterns": []
187
+ },
188
+ "hexMap": {
189
+ "type": "",
190
+ "shapeGroups": [
191
+ {
192
+ "legendTitle": "",
193
+ "legendDescription": "",
194
+ "items": [
195
+ {
196
+ "key": "",
197
+ "shape": "Arrow Up",
198
+ "column": "",
199
+ "operator": "=",
200
+ "value": ""
201
+ }
202
+ ]
203
+ }
204
+ ]
205
+ },
206
+ "filterBehavior": "Filter Change",
207
+ "filterIntro": "",
208
+ "markupVariables": [],
209
+ "enableMarkupVariables": false,
210
+ "dataFileName": "/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemap.json",
211
+ "dataFileSourceType": "url",
212
+ "dataDescription": {
213
+ "horizontal": false,
214
+ "series": false
215
+ },
216
+ "version": "4.25.10",
217
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/NCEZID_DIDRI/measles/nwssmeaslessitemap.json",
218
+ "migrations": {
219
+ "addColorMigration": true
220
+ }
221
+ }