@cdc/map 4.24.12-2 → 4.25.1

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