@cdc/map 4.25.8 → 4.25.10
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.
- package/.claude/settings.local.json +30 -0
- package/dist/cdcmap.js +54263 -52600
- package/examples/private/c.json +290 -0
- package/examples/private/canvas-city-hover.json +787 -0
- package/examples/private/d.json +345 -0
- package/examples/private/g.json +1 -0
- package/examples/private/h.json +105911 -0
- package/examples/private/measles-data.json +378 -0
- package/examples/private/measles.json +211 -0
- package/examples/private/north-dakota.json +1132 -0
- package/examples/private/state-with-pattern.json +883 -0
- package/index.html +35 -34
- package/package.json +26 -5
- package/src/CdcMap.tsx +23 -8
- package/src/CdcMapComponent.tsx +215 -309
- package/src/_stories/CdcMap.Filters.stories.tsx +2 -2
- package/src/_stories/CdcMap.Legend.Gradient.stories.tsx +3 -3
- package/src/_stories/CdcMap.Legend.stories.tsx +7 -4
- package/src/_stories/CdcMap.Patterns.stories.tsx +2 -2
- package/src/_stories/CdcMap.Table.stories.tsx +2 -2
- package/src/_stories/CdcMap.stories.tsx +15 -5
- package/src/_stories/GoogleMap.stories.tsx +2 -2
- package/src/_stories/UsaMap.NoData.stories.tsx +2 -2
- package/src/_stories/_mock/equal-number.json +1109 -0
- package/src/_stories/_mock/us-bubble-cities.json +306 -0
- package/src/components/BubbleList.tsx +16 -12
- package/src/components/CityList.tsx +85 -107
- package/src/components/DataTable.tsx +37 -9
- package/src/components/EditorPanel/components/EditorPanel.tsx +177 -165
- package/src/components/EditorPanel/components/HexShapeSettings.tsx +3 -2
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +7 -5
- package/src/components/Geo.tsx +2 -0
- package/src/components/Legend/components/Legend.tsx +109 -73
- package/src/components/Legend/components/LegendGroup/Legend.Group.tsx +10 -7
- package/src/components/MapContainer.tsx +52 -0
- package/src/components/MapControls.tsx +44 -0
- package/src/components/NavigationMenu.tsx +11 -2
- package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +24 -7
- package/src/components/UsaMap/components/UsaMap.County.tsx +111 -37
- package/src/components/UsaMap/components/UsaMap.Region.tsx +23 -5
- package/src/components/UsaMap/components/UsaMap.SingleState.tsx +6 -6
- package/src/components/UsaMap/components/UsaMap.State.tsx +28 -10
- package/src/components/UsaMap/helpers/map.ts +2 -2
- package/src/components/WorldMap/WorldMap.tsx +113 -25
- package/src/components/ZoomControls.tsx +6 -9
- package/src/context/LegendMemoContext.tsx +30 -0
- package/src/context.ts +1 -40
- package/src/data/initial-state.js +143 -130
- package/src/data/supported-geos.js +17 -2
- package/src/helpers/applyColorToLegend.ts +116 -20
- package/src/helpers/applyLegendToRow.ts +10 -6
- package/src/helpers/componentHelpers.ts +8 -0
- package/src/helpers/constants.ts +12 -0
- package/src/helpers/dataTableHelpers.ts +6 -0
- package/src/helpers/displayGeoName.ts +1 -1
- package/src/helpers/generateRuntimeLegend.ts +44 -8
- package/src/helpers/generateRuntimeLegendHash.ts +4 -2
- package/src/helpers/getColumnNames.ts +1 -1
- package/src/helpers/getPatternForRow.ts +36 -0
- package/src/helpers/getStatesPicked.ts +8 -5
- package/src/helpers/index.ts +11 -3
- package/src/helpers/isLegendItemDisabled.ts +16 -0
- package/src/helpers/mapObserverHelpers.ts +40 -0
- package/src/helpers/resetLegendToggles.ts +3 -2
- package/src/helpers/toggleLegendActive.ts +6 -11
- package/src/helpers/urlDataHelpers.ts +70 -0
- package/src/hooks/useGeoClickHandler.ts +35 -1
- package/src/hooks/useLegendMemo.ts +17 -0
- package/src/hooks/useMapLayers.tsx +5 -4
- package/src/hooks/useStateZoom.tsx +25 -6
- package/src/hooks/useTooltip.ts +1 -2
- package/src/index.jsx +0 -2
- package/src/store/map.reducer.ts +17 -6
- package/src/test/CdcMap.test.jsx +11 -0
- package/src/types/MapConfig.ts +23 -14
- package/src/types/MapContext.ts +0 -7
- package/src/types/runtimeLegend.ts +17 -1
- package/vite.config.js +2 -7
- package/vitest.config.ts +16 -0
- package/src/coreStyles_map.scss +0 -3
- package/src/helpers/colorDistributions.ts +0 -12
- package/src/helpers/generateColorsArray.ts +0 -14
- package/src/helpers/tests/generateColorsArray.test.ts +0 -18
- package/src/helpers/tests/generateRuntimeLegendHash.test.ts +0 -11
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dashboard": {
|
|
3
|
+
"theme": "theme-blue",
|
|
4
|
+
"sharedFilters": [
|
|
5
|
+
{
|
|
6
|
+
"key": "New Dashboard Filter 1",
|
|
7
|
+
"showDropdown": true,
|
|
8
|
+
"type": "urlfilter",
|
|
9
|
+
"orderedValues": [],
|
|
10
|
+
"datasetKey": "rt_substate_map",
|
|
11
|
+
"apiFilter": {
|
|
12
|
+
"apiEndpoint": "https://cfa-public-git-test1-ideas.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&location_type=%22State%22&$limit=60\n",
|
|
13
|
+
"valueSelector": "state",
|
|
14
|
+
"textSelector": ""
|
|
15
|
+
},
|
|
16
|
+
"usedBy": [
|
|
17
|
+
"map1749061009678"
|
|
18
|
+
],
|
|
19
|
+
"tier": 1
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"rows": [
|
|
24
|
+
{
|
|
25
|
+
"columns": [
|
|
26
|
+
{
|
|
27
|
+
"width": 12,
|
|
28
|
+
"widget": "dashboardFilters1758563094998"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"uuid": 1758563248622
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"uuid": 1758563248622,
|
|
35
|
+
"toggle": true,
|
|
36
|
+
"equalHeight": "__undefined__",
|
|
37
|
+
"columns": [
|
|
38
|
+
{
|
|
39
|
+
"toggleName": "County",
|
|
40
|
+
"width": 12,
|
|
41
|
+
"widget": "map1749061009678"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"toggleName": "__undefined__",
|
|
45
|
+
"width": 12
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"visualizations": {
|
|
51
|
+
"map1749061009678": {
|
|
52
|
+
"annotations": [],
|
|
53
|
+
"color": "qualitative",
|
|
54
|
+
"general": {
|
|
55
|
+
"navigationTarget": "_self",
|
|
56
|
+
"noDataMessage": "No State Selected",
|
|
57
|
+
"annotationDropdownText": "Annotations",
|
|
58
|
+
"geoBorderColor": "darkGray",
|
|
59
|
+
"headerColor": "theme-blue",
|
|
60
|
+
"title": "",
|
|
61
|
+
"showTitle": true,
|
|
62
|
+
"showSidebar": true,
|
|
63
|
+
"showDownloadMediaButton": false,
|
|
64
|
+
"displayAsHex": false,
|
|
65
|
+
"displayStateLabels": true,
|
|
66
|
+
"territoriesAlwaysShow": false,
|
|
67
|
+
"language": "en",
|
|
68
|
+
"geoType": "single-state",
|
|
69
|
+
"geoLabelOverride": "",
|
|
70
|
+
"hasRegions": false,
|
|
71
|
+
"fullBorder": false,
|
|
72
|
+
"type": "data",
|
|
73
|
+
"convertFipsCodes": true,
|
|
74
|
+
"palette": {
|
|
75
|
+
"isReversed": false,
|
|
76
|
+
"name": "sequential_pink_purple",
|
|
77
|
+
"version": "1.0",
|
|
78
|
+
"customColors": [
|
|
79
|
+
"#6d085a",
|
|
80
|
+
"#b83d93",
|
|
81
|
+
"#e3e3e3",
|
|
82
|
+
"#3bbbb0",
|
|
83
|
+
"#006166",
|
|
84
|
+
"#ffffff"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"allowMapZoom": false,
|
|
88
|
+
"hideGeoColumnInTooltip": false,
|
|
89
|
+
"hidePrimaryColumnInTooltip": false,
|
|
90
|
+
"statesPicked": [
|
|
91
|
+
{
|
|
92
|
+
"fipsCode": "01",
|
|
93
|
+
"stateName": "Alabama"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"filterControlsStatesPicked": "state"
|
|
97
|
+
},
|
|
98
|
+
"type": "map",
|
|
99
|
+
"columns": {
|
|
100
|
+
"geo": {
|
|
101
|
+
"name": "fips",
|
|
102
|
+
"label": "Location",
|
|
103
|
+
"tooltip": false,
|
|
104
|
+
"dataTable": true
|
|
105
|
+
},
|
|
106
|
+
"primary": {
|
|
107
|
+
"dataTable": true,
|
|
108
|
+
"tooltip": true,
|
|
109
|
+
"prefix": "",
|
|
110
|
+
"suffix": "",
|
|
111
|
+
"name": "category",
|
|
112
|
+
"label": "category",
|
|
113
|
+
"roundToPlace": 0
|
|
114
|
+
},
|
|
115
|
+
"navigate": {
|
|
116
|
+
"name": ""
|
|
117
|
+
},
|
|
118
|
+
"latitude": {
|
|
119
|
+
"name": ""
|
|
120
|
+
},
|
|
121
|
+
"longitude": {
|
|
122
|
+
"name": ""
|
|
123
|
+
},
|
|
124
|
+
"additionalColumn1": {
|
|
125
|
+
"label": "hsa",
|
|
126
|
+
"dataTable": false,
|
|
127
|
+
"tooltips": false,
|
|
128
|
+
"prefix": "",
|
|
129
|
+
"suffix": "",
|
|
130
|
+
"name": "hsa_no",
|
|
131
|
+
"tooltip": true
|
|
132
|
+
},
|
|
133
|
+
"additionalColumn2": {
|
|
134
|
+
"label": "fips",
|
|
135
|
+
"dataTable": false,
|
|
136
|
+
"tooltips": false,
|
|
137
|
+
"prefix": "",
|
|
138
|
+
"suffix": "",
|
|
139
|
+
"name": "fips",
|
|
140
|
+
"tooltip": true
|
|
141
|
+
},
|
|
142
|
+
"additionalColumn3": {
|
|
143
|
+
"label": "hsa-desc",
|
|
144
|
+
"dataTable": false,
|
|
145
|
+
"tooltips": false,
|
|
146
|
+
"prefix": "",
|
|
147
|
+
"suffix": "",
|
|
148
|
+
"name": "hsa_description",
|
|
149
|
+
"tooltip": true
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"legend": {
|
|
153
|
+
"descriptions": {},
|
|
154
|
+
"specialClasses": [],
|
|
155
|
+
"unified": false,
|
|
156
|
+
"singleColumn": true,
|
|
157
|
+
"singleRow": false,
|
|
158
|
+
"verticalSorted": false,
|
|
159
|
+
"showSpecialClassesLast": false,
|
|
160
|
+
"dynamicDescription": false,
|
|
161
|
+
"type": "category",
|
|
162
|
+
"numberOfItems": 6,
|
|
163
|
+
"position": "side",
|
|
164
|
+
"title": "Epidemic Trends",
|
|
165
|
+
"style": "circles",
|
|
166
|
+
"subStyle": "linear blocks",
|
|
167
|
+
"tickRotation": "",
|
|
168
|
+
"singleColumnLegend": false,
|
|
169
|
+
"hideBorder": false,
|
|
170
|
+
"groupBy": "",
|
|
171
|
+
"categoryValuesOrder": [
|
|
172
|
+
"Growing",
|
|
173
|
+
"Likely Growing",
|
|
174
|
+
"Not Changing",
|
|
175
|
+
"Likely Declining",
|
|
176
|
+
"Declining",
|
|
177
|
+
"Not Estimated"
|
|
178
|
+
],
|
|
179
|
+
"additionalCategories": [
|
|
180
|
+
"Growing",
|
|
181
|
+
"Likely Growing",
|
|
182
|
+
"Not Changing",
|
|
183
|
+
"Likely Declining",
|
|
184
|
+
"Declining",
|
|
185
|
+
"Not Estimated"
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"filters": [],
|
|
189
|
+
"table": {
|
|
190
|
+
"wrapColumns": false,
|
|
191
|
+
"label": "Data Table",
|
|
192
|
+
"expanded": false,
|
|
193
|
+
"limitHeight": false,
|
|
194
|
+
"height": "",
|
|
195
|
+
"caption": "",
|
|
196
|
+
"showDownloadUrl": false,
|
|
197
|
+
"showDataTableLink": false,
|
|
198
|
+
"showDownloadLinkBelow": true,
|
|
199
|
+
"showFullGeoNameInCSV": false,
|
|
200
|
+
"forceDisplay": true,
|
|
201
|
+
"download": false,
|
|
202
|
+
"indexLabel": "",
|
|
203
|
+
"cellMinWidth": "0",
|
|
204
|
+
"collapsible": true,
|
|
205
|
+
"sharedFilterColumns": [
|
|
206
|
+
"State"
|
|
207
|
+
],
|
|
208
|
+
"showNonGeoData": true
|
|
209
|
+
},
|
|
210
|
+
"tooltips": {
|
|
211
|
+
"appearanceType": "hover",
|
|
212
|
+
"linkLabel": "Learn More",
|
|
213
|
+
"opacity": 90,
|
|
214
|
+
"capitalizeLabels": true
|
|
215
|
+
},
|
|
216
|
+
"visual": {
|
|
217
|
+
"minBubbleSize": 1,
|
|
218
|
+
"maxBubbleSize": 20,
|
|
219
|
+
"extraBubbleBorder": false,
|
|
220
|
+
"cityStyle": "circle",
|
|
221
|
+
"cityStyleLabel": "",
|
|
222
|
+
"showBubbleZeros": false,
|
|
223
|
+
"additionalCityStyles": [],
|
|
224
|
+
"geoCodeCircleSize": 8
|
|
225
|
+
},
|
|
226
|
+
"mapPosition": {
|
|
227
|
+
"coordinates": [
|
|
228
|
+
0,
|
|
229
|
+
30
|
|
230
|
+
],
|
|
231
|
+
"zoom": 1
|
|
232
|
+
},
|
|
233
|
+
"map": {
|
|
234
|
+
"layers": [],
|
|
235
|
+
"patterns": []
|
|
236
|
+
},
|
|
237
|
+
"hexMap": {
|
|
238
|
+
"type": "",
|
|
239
|
+
"shapeGroups": [
|
|
240
|
+
{
|
|
241
|
+
"legendTitle": "",
|
|
242
|
+
"legendDescription": "",
|
|
243
|
+
"items": [
|
|
244
|
+
{
|
|
245
|
+
"key": "",
|
|
246
|
+
"shape": "Arrow Up",
|
|
247
|
+
"column": "",
|
|
248
|
+
"operator": "=",
|
|
249
|
+
"value": ""
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
}
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
"filterBehavior": "Filter Change",
|
|
256
|
+
"filterIntro": "",
|
|
257
|
+
"openModal": true,
|
|
258
|
+
"uid": "map1749061009678",
|
|
259
|
+
"dataDescription": {
|
|
260
|
+
"horizontal": false,
|
|
261
|
+
"series": false
|
|
262
|
+
},
|
|
263
|
+
"dataKey": "rt_substate_map"
|
|
264
|
+
},
|
|
265
|
+
"dashboardFilters1758563094998": {
|
|
266
|
+
"filters": [],
|
|
267
|
+
"filterBehavior": "Filter Change",
|
|
268
|
+
"newViz": true,
|
|
269
|
+
"openModal": true,
|
|
270
|
+
"uid": "dashboardFilters1758563094998",
|
|
271
|
+
"type": "dashboardFilters",
|
|
272
|
+
"sharedFilterIndexes": [
|
|
273
|
+
0
|
|
274
|
+
],
|
|
275
|
+
"visualizationType": "dashboardFilters"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"table": {
|
|
279
|
+
"label": "Data Table",
|
|
280
|
+
"show": false,
|
|
281
|
+
"showDownloadUrl": false,
|
|
282
|
+
"showVertical": true
|
|
283
|
+
},
|
|
284
|
+
"id": 15,
|
|
285
|
+
"category": "General",
|
|
286
|
+
"type": "dashboard",
|
|
287
|
+
"subType": null,
|
|
288
|
+
"orientation": null,
|
|
289
|
+
"content": "Present multiple data visualizations with shared filter controls.",
|
|
290
|
+
"visualizationType": null,
|
|
291
|
+
"activeVizButtonID": 15,
|
|
292
|
+
"version": "4.25.9",
|
|
293
|
+
"migrations": {
|
|
294
|
+
"addColorMigration": true
|
|
295
|
+
},
|
|
296
|
+
"uuid": 1758563086392,
|
|
297
|
+
"label": "COVID-19",
|
|
298
|
+
"runtime": {},
|
|
299
|
+
"general": {
|
|
300
|
+
"palette": {
|
|
301
|
+
"version": "1.0",
|
|
302
|
+
"backups": [
|
|
303
|
+
{
|
|
304
|
+
"name": "__undefined__",
|
|
305
|
+
"version": "1.0",
|
|
306
|
+
"isReversed": "__undefined__"
|
|
307
|
+
}
|
|
308
|
+
]
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"datasets": {
|
|
312
|
+
"rt_covid_states": {
|
|
313
|
+
"dataFileSize": 7186,
|
|
314
|
+
"dataFileFormat": "CSV",
|
|
315
|
+
"preview": false,
|
|
316
|
+
"dataUrl": "/wcms/vizdata/cfa/RtEstimates/covid/covid_map_data_with_burden.csv",
|
|
317
|
+
"dataFileName": "/wcms/vizdata/cfa/RtEstimates/covid/covid_map_data_with_burden.csv",
|
|
318
|
+
"dataFileSourceType": "url"
|
|
319
|
+
},
|
|
320
|
+
"substate_data": {
|
|
321
|
+
"dataFileSize": 976856,
|
|
322
|
+
"dataFileName": "/wcms/vizdata/cfa/RtEstimates/substate/combined_file_poc/substate_combined_file_poc.csv",
|
|
323
|
+
"dataFileSourceType": "url",
|
|
324
|
+
"dataFileFormat": "CSV",
|
|
325
|
+
"preview": false,
|
|
326
|
+
"dataUrl": "/wcms/vizdata/cfa/RtEstimates/substate/combined_file_poc/substate_combined_file_poc.csv"
|
|
327
|
+
},
|
|
328
|
+
"rt_estimates_map": {
|
|
329
|
+
"dataFileSize": 20855,
|
|
330
|
+
"dataFileName": "https://cfa-public-git-test1-ideas.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&location_type=%22State%22&$limit=60",
|
|
331
|
+
"dataFileSourceType": "url",
|
|
332
|
+
"dataFileFormat": "JSON",
|
|
333
|
+
"preview": false,
|
|
334
|
+
"dataUrl": "https://cfa-public-git-test1-ideas.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&location_type=%22State%22&$limit=60"
|
|
335
|
+
},
|
|
336
|
+
"rt_substate_map": {
|
|
337
|
+
"dataFileSize": 71882,
|
|
338
|
+
"dataFileName": "https://cfa-public-git-test1-ideas.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&pathogen=%22COVID-19%22&$limit=200",
|
|
339
|
+
"dataFileSourceType": "url",
|
|
340
|
+
"dataFileFormat": "JSON",
|
|
341
|
+
"preview": true,
|
|
342
|
+
"dataUrl": "https://cfa-public-git-test1-ideas.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&pathogen=%22COVID-19%22&$limit=200"
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"annotations":[],"general":{"navigationTarget":"_self","annotationDropdownText":"Annotations","geoBorderColor":"darkGray","headerColor":"theme-blue","title":"<em>4.25.09</em> Geocode","showTitle":true,"showSidebar":true,"showDownloadMediaButton":false,"displayAsHex":false,"displayStateLabels":true,"territoriesAlwaysShow":false,"language":"en","geoType":"us-county","geoLabelOverride":"","hasRegions":false,"fullBorder":false,"type":"us-geocode","convertFipsCodes":true,"palette":{"isReversed":true,"name":"sequential_blue","version":"2.0"},"allowMapZoom":true,"hideGeoColumnInTooltip":false,"hidePrimaryColumnInTooltip":false,"statesPicked":[],"expandDataTable":false,"superTitle":"<sup>super</sup> title","introText":"Message: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>","subtext":"Sub: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>","footnotes":"Foot: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>"},"type":"map","columns":{"geo":{"name":"City","label":"Location","tooltip":false,"dataTable":true},"primary":{"dataTable":true,"tooltip":true,"prefix":"","suffix":"","name":"","label":"","roundToPlace":0},"navigate":{"name":""},"latitude":{"name":""},"longitude":{"name":""}},"legend":{"descriptions":{},"specialClasses":[],"unified":false,"singleColumn":false,"singleRow":false,"verticalSorted":false,"showSpecialClassesLast":false,"dynamicDescription":false,"type":"equalnumber","numberOfItems":3,"position":"side","title":"","style":"circles","subStyle":"linear blocks","tickRotation":"","singleColumnLegend":false,"hideBorder":false,"groupBy":""},"filters":[],"table":{"wrapColumns":false,"label":"Data Table","expanded":false,"limitHeight":false,"height":"","caption":"","showDownloadUrl":false,"showDataTableLink":true,"showDownloadLinkBelow":true,"showFullGeoNameInCSV":false,"forceDisplay":true,"download":true,"indexLabel":"","cellMinWidth":"0","collapsible":true},"tooltips":{"appearanceType":"hover","linkLabel":"Learn More","opacity":90},"visual":{"minBubbleSize":1,"maxBubbleSize":20,"extraBubbleBorder":false,"cityStyle":"circle","cityStyleLabel":"","showBubbleZeros":false,"additionalCityStyles":[],"geoCodeCircleSize":8},"mapPosition":{"coordinates":[0,30],"zoom":1},"map":{"layers":[],"patterns":[]},"hexMap":{"type":"","shapeGroups":[{"legendTitle":"","legendDescription":"","items":[{"key":"","shape":"Arrow Up","column":"","operator":"=","value":""}]}]},"filterBehavior":"Filter Change","filterIntro":"","newViz":true,"errors":[],"currentViewport":"lg","id":23,"category":"Maps","label":"U.S. Geocode","subType":"us-county","generalType":"us-geocode","icon":{"key":null,"ref":null,"props":{},"_owner":null},"content":"United States GeoCode","activeVizButtonID":23,"dataFileName":"supported-cities.csv","dataFileSourceType":"file","dataDescription":{"horizontal":false,"series":false},"version":"4.25.9","migrations":{"addColorMigration":true},"data":[{"City":"Albuquerque","Longitude":"-106.650421","Latitude":"35.084385","Value":"1"},{"City":"Anaheim","Longitude":"-117.914299","Latitude":"33.836594","Value":"2"},{"City":"Anchorage","Longitude":"-149.900284","Latitude":"61.218056","Value":"3"},{"City":"Arlington","Longitude":"-97.108063","Latitude":"32.735687","Value":"4"},{"City":"Atlanta","Longitude":"-84.387985","Latitude":"33.748997","Value":"5"},{"City":"Aurora","Longitude":"-93.717979","Latitude":"36.97089","Value":"6"},{"City":"Austin","Longitude":"-97.743057","Latitude":"30.267153","Value":"7"},{"City":"Bakersfield","Longitude":"-119.018715","Latitude":"35.373291","Value":"8"},{"City":"Baltimore","Longitude":"-76.61219","Latitude":"39.290386","Value":"9"},{"City":"Baton Rouge","Longitude":"-91.187149","Latitude":"30.451468","Value":"10"},{"City":"Boise","Longitude":"-116.202316","Latitude":"43.615021","Value":"11"},{"City":"Boston","Longitude":"-71.058884","Latitude":"42.360081","Value":"12"},{"City":"Buffalo","Longitude":"-78.878372","Latitude":"42.886448","Value":"13"},{"City":"Chandler","Longitude":"-111.841248","Latitude":"33.30616","Value":"14"},{"City":"Charlotte","Longitude":"-80.843124","Latitude":"35.227085","Value":"15"},{"City":"Chesapeake","Longitude":"-76.287491","Latitude":"36.768208","Value":"16"},{"City":"Chicago","Longitude":"-87.629799","Latitude":"41.878113","Value":"17"},{"City":"Chula Vista","Longitude":"-117.084198","Latitude":"32.640053","Value":"18"},{"City":"Cincinnati","Longitude":"-84.512016","Latitude":"39.103119","Value":"19"},{"City":"Cleveland","Longitude":"-81.694359","Latitude":"41.499321","Value":"20"},{"City":"Colorado Springs","Longitude":"-104.821365","Latitude":"38.833881","Value":"21"},{"City":"Columbus","Longitude":"-82.998795","Latitude":"39.961178","Value":"22"},{"City":"Corpus Christi","Longitude":"-97.396378","Latitude":"27.800583","Value":"23"},{"City":"Dallas","Longitude":"-96.796989","Latitude":"32.776665","Value":"24"},{"City":"Denver","Longitude":"-104.99025","Latitude":"39.739235","Value":"25"},{"City":"Detroit","Longitude":"-83.045753","Latitude":"42.331429","Value":"26"},{"City":"District of Columbia","Longitude":"-77.036873","Latitude":"38.907192","Value":"27"},{"City":"Durham","Longitude":"-78.898621","Latitude":"35.994034","Value":"28"},{"City":"El Paso","Longitude":"-106.485023","Latitude":"31.761877","Value":"29"},{"City":"Fort Wayne","Longitude":"-85.139351","Latitude":"41.079273","Value":"30"},{"City":"Ft Wayne","Longitude":"-85.139351","Latitude":"41.079273","Value":"31"},{"City":"Fort Worth","Longitude":"-97.330765","Latitude":"32.755489","Value":"32"},{"City":"Fremont","Longitude":"-121.988571","Latitude":"37.548271","Value":"33"},{"City":"Fresno","Longitude":"-119.787125","Latitude":"36.737797","Value":"34"},{"City":"Garland","Longitude":"-96.638885","Latitude":"32.912624","Value":"35"},{"City":"Gilbert","Longitude":"-111.789024","Latitude":"33.352825","Value":"36"},{"City":"Glendale","Longitude":"-118.255074","Latitude":"34.142509","Value":"37"},{"City":"Greensboro","Longitude":"-79.791977","Latitude":"36.072636","Value":"38"},{"City":"Henderson","Longitude":"-114.98172","Latitude":"36.039524","Value":"39"},{"City":"Hialeah","Longitude":"-80.278107","Latitude":"25.857595","Value":"40"},{"City":"Honolulu","Longitude":"-157.858337","Latitude":"21.306944","Value":"41"},{"City":"Houston","Longitude":"-95.358421","Latitude":"29.749907","Value":"42"},{"City":"Indianapolis","Longitude":"-86.158066","Latitude":"39.768402","Value":"43"},{"City":"Irvine","Longitude":"-117.826508","Latitude":"33.684566","Value":"44"},{"City":"Irving","Longitude":"-96.948891","Latitude":"32.814018","Value":"45"},{"City":"Jacksonville","Longitude":"-81.655647","Latitude":"30.332184","Value":"46"},{"City":"Jersey City","Longitude":"-74.077644","Latitude":"40.728157","Value":"47"},{"City":"Kansas City","Longitude":"-94.578568","Latitude":"39.099728","Value":"48"},{"City":"Laredo","Longitude":"-99.507553","Latitude":"27.503561","Value":"49"},{"City":"Las Vegas","Longitude":"-115.139832","Latitude":"36.169941","Value":"50"},{"City":"Lexington","Longitude":"-84.503716","Latitude":"38.040585","Value":"51"},{"City":"Lincoln","Longitude":"-95.262955","Latitude":"37.346134","Value":"52"},{"City":"Long Beach","Longitude":"-118.193741","Latitude":"33.77005","Value":"53"},{"City":"Los Angeles","Longitude":"-118.243683","Latitude":"34.052235","Value":"54"},{"City":"Los Angeles County","Longitude":"-118.229362","Latitude":"34.058762","Value":"55"},{"City":"Louisville","Longitude":"-85.758453","Latitude":"38.252666","Value":"56"},{"City":"Lubbock","Longitude":"-101.855164","Latitude":"33.577862","Value":"57"},{"City":"Madison","Longitude":"-89.40123","Latitude":"43.073051","Value":"58"},{"City":"Marion County, Indiana","Longitude":"-86.136543","Latitude":"39.781029","Value":"59"},{"City":"Memphis","Longitude":"-90.048981","Latitude":"35.149532","Value":"60"},{"City":"Mesa","Longitude":"-111.831474","Latitude":"33.415184","Value":"61"},{"City":"Miami","Longitude":"-80.191788","Latitude":"25.761681","Value":"62"},{"City":"Milwaukee","Longitude":"-87.906471","Latitude":"43.038902","Value":"63"},{"City":"Minneapolis","Longitude":"-93.265015","Latitude":"44.977753","Value":"64"},{"City":"Montgomery County, Maryland","Longitude":"-77.199406","Latitude":"39.153515","Value":"65"},{"City":"Nashville","Longitude":"-86.781601","Latitude":"36.162663","Value":"66"},{"City":"New Orleans","Longitude":"-90.071533","Latitude":"29.951065","Value":"67"},{"City":"New York City","Longitude":"-74.005974","Latitude":"40.712776","Value":"68"},{"City":"Newark","Longitude":"-95.582733","Latitude":"37.443188","Value":"69"},{"City":"Norfolk","Longitude":"-76.285873","Latitude":"36.850769","Value":"70"},{"City":"North Las Vegas","Longitude":"-115.114571","Latitude":"36.19585","Value":"71"},{"City":"Oakland","Longitude":"-122.271111","Latitude":"37.804363","Value":"72"},{"City":"Oklahoma City","Longitude":"-97.516426","Latitude":"35.46756","Value":"73"},{"City":"Omaha","Longitude":"-95.934502","Latitude":"41.256538","Value":"74"},{"City":"Orlando","Longitude":"-81.379234","Latitude":"28.538336","Value":"75"},{"City":"Philadelphia","Longitude":"-75.165222","Latitude":"39.952583","Value":"76"},{"City":"Phoenix","Longitude":"-112.074036","Latitude":"33.448376","Value":"77"},{"City":"Pittsburgh","Longitude":"-79.995888","Latitude":"40.440624","Value":"78"},{"City":"Plano","Longitude":"-96.698883","Latitude":"33.019844","Value":"79"},{"City":"Portland","Longitude":"-122.658722","Latitude":"45.51223","Value":"80"},{"City":"Raleigh","Longitude":"-78.638176","Latitude":"35.779591","Value":"81"},{"City":"Reno","Longitude":"-119.813805","Latitude":"39.529633","Value":"82"},{"City":"Richmond, Virginia","Longitude":"-77.43605","Latitude":"37.540726","Value":"83"},{"City":"Riverside","Longitude":"-117.375496","Latitude":"33.980602","Value":"84"},{"City":"Sacramento","Longitude":"-121.4944","Latitude":"38.581573","Value":"85"},{"City":"Saint Paul","Longitude":"-93.089958","Latitude":"44.953705","Value":"86"},{"City":"San Antonio","Longitude":"-98.493629","Latitude":"29.424122","Value":"87"},{"City":"San Diego","Longitude":"-117.161087","Latitude":"32.715736","Value":"88"},{"City":"San Francisco","Longitude":"-122.419418","Latitude":"37.774929","Value":"89"},{"City":"San Jose","Longitude":"-121.88633","Latitude":"37.338207","Value":"90"},{"City":"Santa Ana","Longitude":"-117.867653","Latitude":"33.745472","Value":"91"},{"City":"Scottsdale","Longitude":"-111.926048","Latitude":"33.494171","Value":"92"},{"City":"Seattle","Longitude":"-122.332069","Latitude":"47.606209","Value":"93"},{"City":"Spokane","Longitude":"-117.426048","Latitude":"47.658779","Value":"94"},{"City":"St. Louis","Longitude":"-90.199402","Latitude":"38.627003","Value":"95"},{"City":"St. Petersburg","Longitude":"-82.640289","Latitude":"27.767601","Value":"96"},{"City":"Stockton","Longitude":"-121.290779","Latitude":"37.957703","Value":"97"},{"City":"Tampa","Longitude":"-82.457176","Latitude":"27.950575","Value":"98"},{"City":"Toledo","Longitude":"-83.537865","Latitude":"41.652805","Value":"99"},{"City":"Tucson","Longitude":"-110.974709","Latitude":"32.222607","Value":"100"},{"City":"Tuscon","Longitude":"-110.974709","Latitude":"32.222607","Value":"101"},{"City":"Tulsa","Longitude":"-95.992775","Latitude":"36.15398","Value":"102"},{"City":"Virginia Beach","Longitude":"-75.977982","Latitude":"36.852924","Value":"103"},{"City":"Wichita","Longitude":"-97.330055","Latitude":"37.687176","Value":"104"},{"City":"Winston Salem","Longitude":"-80.244217","Latitude":"36.099861","Value":"105"},{"City":"Winston–Salem","Longitude":"-80.244217","Latitude":"36.099861","Value":"106"}],"datasets":{}}
|