@cdc/map 2.6.3 → 4.22.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.
Files changed (75) hide show
  1. package/LICENSE +201 -0
  2. package/dist/cdcmap.js +32 -18
  3. package/examples/bubble-us.json +363 -0
  4. package/examples/bubble-world.json +427 -0
  5. package/examples/default-county.json +64 -12
  6. package/examples/default-geocode.json +746 -0
  7. package/examples/default-hex.json +477 -0
  8. package/examples/default-usa-regions.json +118 -0
  9. package/examples/default-usa.json +1 -1
  10. package/examples/default-world-data.json +1450 -0
  11. package/examples/default-world.json +5 -3
  12. package/examples/example-city-state.json +46 -1
  13. package/examples/gallery/categorical-qualitative.json +797 -0
  14. package/examples/gallery/categorical-scale-based.json +739 -0
  15. package/examples/gallery/city-state.json +479 -0
  16. package/examples/gallery/county.json +22731 -0
  17. package/examples/gallery/equal-interval.json +1027 -0
  18. package/examples/gallery/equal-number.json +1027 -0
  19. package/examples/gallery/filterable.json +909 -0
  20. package/examples/gallery/hex-filtered.json +420 -0
  21. package/examples/gallery/hex.json +413 -0
  22. package/examples/gallery/single-state.json +21402 -0
  23. package/examples/gallery/world.json +1592 -0
  24. package/examples/private/atsdr.json +439 -0
  25. package/examples/private/atsdr_new.json +436 -0
  26. package/examples/private/bubble.json +285 -0
  27. package/examples/private/city-state.json +428 -0
  28. package/examples/private/cty-issue.json +42768 -0
  29. package/examples/private/default-usa.json +460 -0
  30. package/examples/private/default-world-data.json +1444 -0
  31. package/examples/private/default.json +968 -0
  32. package/examples/private/legend-issue.json +1 -0
  33. package/examples/private/map-rounding-error.json +42759 -0
  34. package/examples/private/map.csv +60 -0
  35. package/examples/private/mdx.json +210 -0
  36. package/examples/private/monkeypox.json +376 -0
  37. package/examples/private/regions.json +52 -0
  38. package/examples/private/valid-data-map.csv +59 -0
  39. package/examples/private/wcmsrd-13881-data.json +2858 -0
  40. package/examples/private/wcmsrd-13881.json +5823 -0
  41. package/examples/private/wcmsrd-14492-data.json +292 -0
  42. package/examples/private/wcmsrd-14492.json +114 -0
  43. package/examples/private/wcmsrd-test.json +268 -0
  44. package/examples/private/world.json +1580 -0
  45. package/examples/private/worldmap.json +1490 -0
  46. package/package.json +51 -50
  47. package/src/CdcMap.js +1384 -1075
  48. package/src/components/BubbleList.js +244 -0
  49. package/src/components/CityList.js +79 -17
  50. package/src/components/CountyMap.js +104 -44
  51. package/src/components/DataTable.js +32 -22
  52. package/src/components/EditorPanel.js +977 -414
  53. package/src/components/Geo.js +1 -1
  54. package/src/components/Modal.js +2 -1
  55. package/src/components/NavigationMenu.js +4 -3
  56. package/src/components/Sidebar.js +14 -19
  57. package/src/components/SingleStateMap.js +178 -249
  58. package/src/components/UsaMap.js +104 -36
  59. package/src/components/UsaRegionMap.js +320 -0
  60. package/src/components/WorldMap.js +117 -34
  61. package/src/data/country-coordinates.js +250 -0
  62. package/src/data/{dfc-map.json → county-map.json} +0 -0
  63. package/src/data/initial-state.js +23 -3
  64. package/src/data/state-coordinates.js +55 -0
  65. package/src/data/supported-geos.js +101 -15
  66. package/src/data/us-regions-topo-2.json +360525 -0
  67. package/src/data/us-regions-topo.json +37894 -0
  68. package/src/hooks/useColorPalette.ts +96 -0
  69. package/src/index.html +8 -4
  70. package/src/scss/editor-panel.scss +78 -57
  71. package/src/scss/main.scss +1 -6
  72. package/src/scss/map.scss +126 -2
  73. package/src/scss/sidebar.scss +2 -1
  74. package/src/data/color-palettes.js +0 -200
  75. package/src/images/map-folded.svg +0 -1
@@ -0,0 +1,746 @@
1
+ {
2
+ "general": {
3
+ "statePicked": {
4
+ "fipsCode": "32",
5
+ "stateName": "Nevada"
6
+ },
7
+ "geoType": "us-county",
8
+ "geoBorderColor": "darkGray",
9
+ "headerColor": "theme-blue",
10
+ "showTitle": true,
11
+ "showSidebar": true,
12
+ "showDownloadButton": true,
13
+ "showDownloadMediaButton": false,
14
+ "displayAsHex": false,
15
+ "displayStateLabels": false,
16
+ "territoriesLabel": "Territories",
17
+ "language": "en",
18
+ "hasRegions": false,
19
+ "expandDataTable": false,
20
+ "fullBorder": false,
21
+ "type": "us-geocode",
22
+ "title": "Default US Map",
23
+ "palette": {
24
+ "isReversed": false
25
+ },
26
+ "allowMapZoom": true,
27
+ "hideGeoColumnInTooltip": false,
28
+ "hidePrimaryColumnInTooltip": false
29
+ },
30
+ "type": "map",
31
+ "color": "pinkpurple",
32
+ "columns": {
33
+ "geo": {
34
+ "name": "City",
35
+ "label": "Location",
36
+ "tooltip": false,
37
+ "dataTable": true
38
+ },
39
+ "primary": {
40
+ "dataTable": true,
41
+ "tooltip": true,
42
+ "prefix": "",
43
+ "suffix": "",
44
+ "name": "Value",
45
+ "label": ""
46
+ },
47
+ "navigate": {
48
+ "name": "Condition"
49
+ },
50
+ "latitude": {
51
+ "name": ""
52
+ },
53
+ "longitude": {
54
+ "name": ""
55
+ }
56
+ },
57
+ "legend": {
58
+ "descriptions": {},
59
+ "specialClasses": [],
60
+ "unified": false,
61
+ "singleColumn": false,
62
+ "dynamicDescription": false,
63
+ "type": "equalnumber",
64
+ "numberOfItems": 3,
65
+ "position": "side",
66
+ "title": "Legend"
67
+ },
68
+ "filters": [],
69
+ "dataTable": {
70
+ "title": "Data Table",
71
+ "forceDisplay": true
72
+ },
73
+ "tooltips": {
74
+ "appearanceType": "hover",
75
+ "linkLabel": "Learn More",
76
+ "capitalizeLabels": true
77
+ },
78
+ "runtime": {
79
+ "editorErrorMessage": []
80
+ },
81
+ "visual": {
82
+ "minBubbleSize": 1,
83
+ "maxBubbleSize": 20,
84
+ "extraBubbleBorder": false,
85
+ "cityStyle": "circle"
86
+ },
87
+ "mapPosition": {
88
+ "coordinates": [
89
+ 0,
90
+ 30
91
+ ],
92
+ "zoom": 1
93
+ },
94
+ "data": [
95
+ {
96
+ "City": "Albuquerque",
97
+ "Longitude": "-106.650421",
98
+ "Latitude": "35.084385",
99
+ "Value": "1"
100
+ },
101
+ {
102
+ "City": "Anaheim",
103
+ "Longitude": "-117.914299",
104
+ "Latitude": "33.836594",
105
+ "Value": "2"
106
+ },
107
+ {
108
+ "City": "Anchorage",
109
+ "Longitude": "-149.900284",
110
+ "Latitude": "61.218056",
111
+ "Value": "3"
112
+ },
113
+ {
114
+ "City": "Arlington",
115
+ "Longitude": "-97.108063",
116
+ "Latitude": "32.735687",
117
+ "Value": "4"
118
+ },
119
+ {
120
+ "City": "Atlanta",
121
+ "Longitude": "-84.387985",
122
+ "Latitude": "33.748997",
123
+ "Value": "5"
124
+ },
125
+ {
126
+ "City": "Aurora",
127
+ "Longitude": "-93.717979",
128
+ "Latitude": "36.97089",
129
+ "Value": "6"
130
+ },
131
+ {
132
+ "City": "Austin",
133
+ "Longitude": "-97.743057",
134
+ "Latitude": "30.267153",
135
+ "Value": "7"
136
+ },
137
+ {
138
+ "City": "Bakersfield",
139
+ "Longitude": "-119.018715",
140
+ "Latitude": "35.373291",
141
+ "Value": "8"
142
+ },
143
+ {
144
+ "City": "Baltimore",
145
+ "Longitude": "-76.61219",
146
+ "Latitude": "39.290386",
147
+ "Value": "9"
148
+ },
149
+ {
150
+ "City": "Baton Rouge",
151
+ "Longitude": "-91.187149",
152
+ "Latitude": "30.451468",
153
+ "Value": "10"
154
+ },
155
+ {
156
+ "City": "Boise",
157
+ "Longitude": "-116.202316",
158
+ "Latitude": "43.615021",
159
+ "Value": "11"
160
+ },
161
+ {
162
+ "City": "Boston",
163
+ "Longitude": "-71.058884",
164
+ "Latitude": "42.360081",
165
+ "Value": "12"
166
+ },
167
+ {
168
+ "City": "Buffalo",
169
+ "Longitude": "-78.878372",
170
+ "Latitude": "42.886448",
171
+ "Value": "13"
172
+ },
173
+ {
174
+ "City": "Chandler",
175
+ "Longitude": "-111.841248",
176
+ "Latitude": "33.30616",
177
+ "Value": "14"
178
+ },
179
+ {
180
+ "City": "Charlotte",
181
+ "Longitude": "-80.843124",
182
+ "Latitude": "35.227085",
183
+ "Value": "15"
184
+ },
185
+ {
186
+ "City": "Chesapeake",
187
+ "Longitude": "-76.287491",
188
+ "Latitude": "36.768208",
189
+ "Value": "16"
190
+ },
191
+ {
192
+ "City": "Chicago",
193
+ "Longitude": "-87.629799",
194
+ "Latitude": "41.878113",
195
+ "Value": "17"
196
+ },
197
+ {
198
+ "City": "Chula Vista",
199
+ "Longitude": "-117.084198",
200
+ "Latitude": "32.640053",
201
+ "Value": "18"
202
+ },
203
+ {
204
+ "City": "Cincinnati",
205
+ "Longitude": "-84.512016",
206
+ "Latitude": "39.103119",
207
+ "Value": "19"
208
+ },
209
+ {
210
+ "City": "Cleveland",
211
+ "Longitude": "-81.694359",
212
+ "Latitude": "41.499321",
213
+ "Value": "20"
214
+ },
215
+ {
216
+ "City": "Colorado Springs",
217
+ "Longitude": "-104.821365",
218
+ "Latitude": "38.833881",
219
+ "Value": "21"
220
+ },
221
+ {
222
+ "City": "Columbus",
223
+ "Longitude": "-82.998795",
224
+ "Latitude": "39.961178",
225
+ "Value": "22"
226
+ },
227
+ {
228
+ "City": "Corpus Christi",
229
+ "Longitude": "-97.396378",
230
+ "Latitude": "27.800583",
231
+ "Value": "23"
232
+ },
233
+ {
234
+ "City": "Dallas",
235
+ "Longitude": "-96.796989",
236
+ "Latitude": "32.776665",
237
+ "Value": "24"
238
+ },
239
+ {
240
+ "City": "Denver",
241
+ "Longitude": "-104.99025",
242
+ "Latitude": "39.739235",
243
+ "Value": "25"
244
+ },
245
+ {
246
+ "City": "Detroit",
247
+ "Longitude": "-83.045753",
248
+ "Latitude": "42.331429",
249
+ "Value": "26"
250
+ },
251
+ {
252
+ "City": "District of Columbia",
253
+ "Longitude": "-77.036873",
254
+ "Latitude": "38.907192",
255
+ "Value": "27"
256
+ },
257
+ {
258
+ "City": "Durham",
259
+ "Longitude": "-78.898621",
260
+ "Latitude": "35.994034",
261
+ "Value": "28"
262
+ },
263
+ {
264
+ "City": "El Paso",
265
+ "Longitude": "-106.485023",
266
+ "Latitude": "31.761877",
267
+ "Value": "29"
268
+ },
269
+ {
270
+ "City": "Fort Wayne",
271
+ "Longitude": "-85.139351",
272
+ "Latitude": "41.079273",
273
+ "Value": "30"
274
+ },
275
+ {
276
+ "City": "Ft Wayne",
277
+ "Longitude": "-85.139351",
278
+ "Latitude": "41.079273",
279
+ "Value": "31"
280
+ },
281
+ {
282
+ "City": "Fort Worth",
283
+ "Longitude": "-97.330765",
284
+ "Latitude": "32.755489",
285
+ "Value": "32"
286
+ },
287
+ {
288
+ "City": "Fremont",
289
+ "Longitude": "-121.988571",
290
+ "Latitude": "37.548271",
291
+ "Value": "33"
292
+ },
293
+ {
294
+ "City": "Fresno",
295
+ "Longitude": "-119.787125",
296
+ "Latitude": "36.737797",
297
+ "Value": "34"
298
+ },
299
+ {
300
+ "City": "Garland",
301
+ "Longitude": "-96.638885",
302
+ "Latitude": "32.912624",
303
+ "Value": "35"
304
+ },
305
+ {
306
+ "City": "Gilbert",
307
+ "Longitude": "-111.789024",
308
+ "Latitude": "33.352825",
309
+ "Value": "36"
310
+ },
311
+ {
312
+ "City": "Glendale",
313
+ "Longitude": "-118.255074",
314
+ "Latitude": "34.142509",
315
+ "Value": "37"
316
+ },
317
+ {
318
+ "City": "Greensboro",
319
+ "Longitude": "-79.791977",
320
+ "Latitude": "36.072636",
321
+ "Value": "38"
322
+ },
323
+ {
324
+ "City": "Henderson",
325
+ "Longitude": "-114.98172",
326
+ "Latitude": "36.039524",
327
+ "Value": "39"
328
+ },
329
+ {
330
+ "City": "Hialeah",
331
+ "Longitude": "-80.278107",
332
+ "Latitude": "25.857595",
333
+ "Value": "40"
334
+ },
335
+ {
336
+ "City": "Honolulu",
337
+ "Longitude": "-157.858337",
338
+ "Latitude": "21.306944",
339
+ "Value": "41"
340
+ },
341
+ {
342
+ "City": "Houston",
343
+ "Longitude": "-95.358421",
344
+ "Latitude": "29.749907",
345
+ "Value": "42"
346
+ },
347
+ {
348
+ "City": "Indianapolis",
349
+ "Longitude": "-86.158066",
350
+ "Latitude": "39.768402",
351
+ "Value": "43"
352
+ },
353
+ {
354
+ "City": "Irvine",
355
+ "Longitude": "-117.826508",
356
+ "Latitude": "33.684566",
357
+ "Value": "44"
358
+ },
359
+ {
360
+ "City": "Irving",
361
+ "Longitude": "-96.948891",
362
+ "Latitude": "32.814018",
363
+ "Value": "45"
364
+ },
365
+ {
366
+ "City": "Jacksonville",
367
+ "Longitude": "-81.655647",
368
+ "Latitude": "30.332184",
369
+ "Value": "46"
370
+ },
371
+ {
372
+ "City": "Jersey City",
373
+ "Longitude": "-74.077644",
374
+ "Latitude": "40.728157",
375
+ "Value": "47"
376
+ },
377
+ {
378
+ "City": "Kansas City",
379
+ "Longitude": "-94.578568",
380
+ "Latitude": "39.099728",
381
+ "Value": "48"
382
+ },
383
+ {
384
+ "City": "Laredo",
385
+ "Longitude": "-99.507553",
386
+ "Latitude": "27.503561",
387
+ "Value": "49"
388
+ },
389
+ {
390
+ "City": "Las Vegas",
391
+ "Longitude": "-115.139832",
392
+ "Latitude": "36.169941",
393
+ "Value": "50"
394
+ },
395
+ {
396
+ "City": "Lexington",
397
+ "Longitude": "-84.503716",
398
+ "Latitude": "38.040585",
399
+ "Value": "51"
400
+ },
401
+ {
402
+ "City": "Lincoln",
403
+ "Longitude": "-95.262955",
404
+ "Latitude": "37.346134",
405
+ "Value": "52"
406
+ },
407
+ {
408
+ "City": "Long Beach",
409
+ "Longitude": "-118.193741",
410
+ "Latitude": "33.77005",
411
+ "Value": "53"
412
+ },
413
+ {
414
+ "City": "Los Angeles",
415
+ "Longitude": "-118.243683",
416
+ "Latitude": "34.052235",
417
+ "Value": "54"
418
+ },
419
+ {
420
+ "City": "Los Angeles County",
421
+ "Longitude": "-118.229362",
422
+ "Latitude": "34.058762",
423
+ "Value": "55"
424
+ },
425
+ {
426
+ "City": "Louisville",
427
+ "Longitude": "-85.758453",
428
+ "Latitude": "38.252666",
429
+ "Value": "56"
430
+ },
431
+ {
432
+ "City": "Lubbock",
433
+ "Longitude": "-101.855164",
434
+ "Latitude": "33.577862",
435
+ "Value": "57"
436
+ },
437
+ {
438
+ "City": "Madison",
439
+ "Longitude": "-89.40123",
440
+ "Latitude": "43.073051",
441
+ "Value": "58"
442
+ },
443
+ {
444
+ "City": "Marion County, Indiana",
445
+ "Longitude": "-86.136543",
446
+ "Latitude": "39.781029",
447
+ "Value": "59"
448
+ },
449
+ {
450
+ "City": "Memphis",
451
+ "Longitude": "-90.048981",
452
+ "Latitude": "35.149532",
453
+ "Value": "60"
454
+ },
455
+ {
456
+ "City": "Mesa",
457
+ "Longitude": "-111.831474",
458
+ "Latitude": "33.415184",
459
+ "Value": "61"
460
+ },
461
+ {
462
+ "City": "Miami",
463
+ "Longitude": "-80.191788",
464
+ "Latitude": "25.761681",
465
+ "Value": "62"
466
+ },
467
+ {
468
+ "City": "Milwaukee",
469
+ "Longitude": "-87.906471",
470
+ "Latitude": "43.038902",
471
+ "Value": "63"
472
+ },
473
+ {
474
+ "City": "Minneapolis",
475
+ "Longitude": "-93.265015",
476
+ "Latitude": "44.977753",
477
+ "Value": "64"
478
+ },
479
+ {
480
+ "City": "Montgomery County, Maryland",
481
+ "Longitude": "-77.199406",
482
+ "Latitude": "39.153515",
483
+ "Value": "65"
484
+ },
485
+ {
486
+ "City": "Nashville",
487
+ "Longitude": "-86.781601",
488
+ "Latitude": "36.162663",
489
+ "Value": "66"
490
+ },
491
+ {
492
+ "City": "New Orleans",
493
+ "Longitude": "-90.071533",
494
+ "Latitude": "29.951065",
495
+ "Value": "67"
496
+ },
497
+ {
498
+ "City": "New York City",
499
+ "Longitude": "-74.005974",
500
+ "Latitude": "40.712776",
501
+ "Value": "68"
502
+ },
503
+ {
504
+ "City": "Newark",
505
+ "Longitude": "-95.582733",
506
+ "Latitude": "37.443188",
507
+ "Value": "69"
508
+ },
509
+ {
510
+ "City": "Norfolk",
511
+ "Longitude": "-76.285873",
512
+ "Latitude": "36.850769",
513
+ "Value": "70"
514
+ },
515
+ {
516
+ "City": "North Las Vegas",
517
+ "Longitude": "-115.114571",
518
+ "Latitude": "36.19585",
519
+ "Value": "71"
520
+ },
521
+ {
522
+ "City": "Oakland",
523
+ "Longitude": "-122.271111",
524
+ "Latitude": "37.804363",
525
+ "Value": "72"
526
+ },
527
+ {
528
+ "City": "Oklahoma City",
529
+ "Longitude": "-97.516426",
530
+ "Latitude": "35.46756",
531
+ "Value": "73"
532
+ },
533
+ {
534
+ "City": "Omaha",
535
+ "Longitude": "-95.934502",
536
+ "Latitude": "41.256538",
537
+ "Value": "74"
538
+ },
539
+ {
540
+ "City": "Orlando",
541
+ "Longitude": "-81.379234",
542
+ "Latitude": "28.538336",
543
+ "Value": "75"
544
+ },
545
+ {
546
+ "City": "Philadelphia",
547
+ "Longitude": "-75.165222",
548
+ "Latitude": "39.952583",
549
+ "Value": "76"
550
+ },
551
+ {
552
+ "City": "Phoenix",
553
+ "Longitude": "-112.074036",
554
+ "Latitude": "33.448376",
555
+ "Value": "77"
556
+ },
557
+ {
558
+ "City": "Pittsburgh",
559
+ "Longitude": "-79.995888",
560
+ "Latitude": "40.440624",
561
+ "Value": "78"
562
+ },
563
+ {
564
+ "City": "Plano",
565
+ "Longitude": "-96.698883",
566
+ "Latitude": "33.019844",
567
+ "Value": "79"
568
+ },
569
+ {
570
+ "City": "Portland",
571
+ "Longitude": "-122.658722",
572
+ "Latitude": "45.51223",
573
+ "Value": "80"
574
+ },
575
+ {
576
+ "City": "Raleigh",
577
+ "Longitude": "-78.638176",
578
+ "Latitude": "35.779591",
579
+ "Value": "81"
580
+ },
581
+ {
582
+ "City": "Reno",
583
+ "Longitude": "-119.813805",
584
+ "Latitude": "39.529633",
585
+ "Value": "82"
586
+ },
587
+ {
588
+ "City": "Richmond",
589
+ "Longitude": "-77.43605",
590
+ "Latitude": "37.540726",
591
+ "Value": "83"
592
+ },
593
+ {
594
+ "City": "Riverside",
595
+ "Longitude": "-117.375496",
596
+ "Latitude": "33.980602",
597
+ "Value": "84"
598
+ },
599
+ {
600
+ "City": "Sacramento",
601
+ "Longitude": "-121.4944",
602
+ "Latitude": "38.581573",
603
+ "Value": "85"
604
+ },
605
+ {
606
+ "City": "Saint Paul",
607
+ "Longitude": "-93.089958",
608
+ "Latitude": "44.953705",
609
+ "Value": "86"
610
+ },
611
+ {
612
+ "City": "San Antonio",
613
+ "Longitude": "-98.493629",
614
+ "Latitude": "29.424122",
615
+ "Value": "87"
616
+ },
617
+ {
618
+ "City": "San Diego",
619
+ "Longitude": "-117.161087",
620
+ "Latitude": "32.715736",
621
+ "Value": "88"
622
+ },
623
+ {
624
+ "City": "San Francisco",
625
+ "Longitude": "-122.419418",
626
+ "Latitude": "37.774929",
627
+ "Value": "89"
628
+ },
629
+ {
630
+ "City": "San Jose",
631
+ "Longitude": "-121.88633",
632
+ "Latitude": "37.338207",
633
+ "Value": "90"
634
+ },
635
+ {
636
+ "City": "Santa Ana",
637
+ "Longitude": "-117.867653",
638
+ "Latitude": "33.745472",
639
+ "Value": "91"
640
+ },
641
+ {
642
+ "City": "Scottsdale",
643
+ "Longitude": "-111.926048",
644
+ "Latitude": "33.494171",
645
+ "Value": "92"
646
+ },
647
+ {
648
+ "City": "Seattle",
649
+ "Longitude": "-122.332069",
650
+ "Latitude": "47.606209",
651
+ "Value": "93"
652
+ },
653
+ {
654
+ "City": "Spokane",
655
+ "Longitude": "-117.426048",
656
+ "Latitude": "47.658779",
657
+ "Value": "94"
658
+ },
659
+ {
660
+ "City": "St. Louis",
661
+ "Longitude": "-90.199402",
662
+ "Latitude": "38.627003",
663
+ "Value": "95"
664
+ },
665
+ {
666
+ "City": "St. Petersburg",
667
+ "Longitude": "-82.640289",
668
+ "Latitude": "27.767601",
669
+ "Value": "96"
670
+ },
671
+ {
672
+ "City": "Stockton",
673
+ "Longitude": "-121.290779",
674
+ "Latitude": "37.957703",
675
+ "Value": "97"
676
+ },
677
+ {
678
+ "City": "Tampa",
679
+ "Longitude": "-82.457176",
680
+ "Latitude": "27.950575",
681
+ "Value": "98"
682
+ },
683
+ {
684
+ "City": "Toledo",
685
+ "Longitude": "-83.537865",
686
+ "Latitude": "41.652805",
687
+ "Value": "99"
688
+ },
689
+ {
690
+ "City": "Tucson",
691
+ "Longitude": "-110.974709",
692
+ "Latitude": "32.222607",
693
+ "Value": "100"
694
+ },
695
+ {
696
+ "City": "Tuscon",
697
+ "Longitude": "-110.974709",
698
+ "Latitude": "32.222607",
699
+ "Value": "101"
700
+ },
701
+ {
702
+ "City": "Tulsa",
703
+ "Longitude": "-95.992775",
704
+ "Latitude": "36.15398",
705
+ "Value": "102"
706
+ },
707
+ {
708
+ "City": "Virginia Beach",
709
+ "Longitude": "-75.977982",
710
+ "Latitude": "36.852924",
711
+ "Value": "103"
712
+ },
713
+ {
714
+ "City": "Wichita",
715
+ "Longitude": "-97.330055",
716
+ "Latitude": "37.687176",
717
+ "Value": "104"
718
+ },
719
+ {
720
+ "City": "Winston Salem",
721
+ "Longitude": "-80.244217",
722
+ "Latitude": "36.099861",
723
+ "Value": "105"
724
+ },
725
+ {
726
+ "City": "Winston–Salem",
727
+ "Longitude": "-80.244217",
728
+ "Latitude": "36.099861",
729
+ "Value": "106"
730
+ }
731
+ ],
732
+ "geoType": "us",
733
+ "geoBorderColor": "darkGray",
734
+ "headerColor": "theme-blue",
735
+ "showTitle": true,
736
+ "showSidebar": true,
737
+ "showDownloadButton": true,
738
+ "showDownloadMediaButton": false,
739
+ "displayAsHex": false,
740
+ "displayStateLabels": false,
741
+ "territoriesLabel": "Territories",
742
+ "language": "en",
743
+ "hasRegions": false,
744
+ "expandDataTable": true,
745
+ "fullBorder": false
746
+ }