-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGasHubGoogleMaps.html
2237 lines (1270 loc) · 98.4 KB
/
GasHubGoogleMaps.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_a3dbb8ccf97b9942c6a84e56ae4081ef {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ljagis/leaflet-measure@2.1.7/dist/leaflet-measure.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ljagis/leaflet-measure@2.1.7/dist/leaflet-measure.min.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<div class="folium-map" id="map_a3dbb8ccf97b9942c6a84e56ae4081ef" ></div>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Draggable - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#maplegend" ).draggable({
start: function (event, ui) {
$(this).css({
right: "auto",
top: "auto",
bottom: "auto"
});
}
});
});
</script>
</head>
<body>
<div id='maplegend' class='maplegend'
style='position: absolute; z-index:9999; border:2px solid grey; background-color:rgba(255, 255, 255, 0.7);
border-radius:6px; padding: 10px; font-size:14px; right: 20px; bottom: 20px;'>
<div class='legend-title'>Gas Hub Regions <sup>(draggable!)</sup></div>
<div class='legend-scale'>
<ul class='legend-labels'>
<li><span style='background:#28C50D;opacity:0.7;'></span>Central</li>
<li><span style='background:#0D81C5;opacity:0.7;'></span>MidWest</li>
<li><span style='background:#EC7C07;opacity:0.7;'></span>NorthEast</li>
<li><span style='background:#EC1107;opacity:0.7;'></span>SouthEast</li>
<li><span style='background:#FF69B4;opacity:0.7;'></span>SouthWest</li>
<li><span style='background:#FFA07A;opacity:0.7;'></span>Western</li>
<li><span style='background:#950EF9;opacity:0.7;'></span>Canada</li>
</ul>
</div>
</div>
</body>
</html>
<style type='text/css'>
.maplegend .legend-title {
text-align: left;
margin-bottom: 5px;
font-weight: bold;
font-size: 90%;
}
.maplegend .legend-scale ul {
margin: 0;
margin-bottom: 5px;
padding: 0;
float: left;
list-style: none;
}
.maplegend .legend-scale ul li {
font-size: 80%;
list-style: none;
margin-left: 0;
line-height: 18px;
margin-bottom: 2px;
}
.maplegend ul.legend-labels li span {
display: block;
float: left;
height: 16px;
width: 30px;
margin-right: 5px;
margin-left: 0;
border: 1px solid #999;
}
.maplegend .legend-source {
font-size: 80%;
color: #777;
clear: both;
}
.maplegend a {
color: #777;
}
</style>
</body>
<script>
var map_a3dbb8ccf97b9942c6a84e56ae4081ef = L.map(
"map_a3dbb8ccf97b9942c6a84e56ae4081ef",
{
center: [45.523, -122.675],
crs: L.CRS.EPSG3857,
zoom: 4,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_1df217ebedcc78949ed82b3613e55dec = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var marker_22d1faacc87cf03640507b0a86f3d987 = L.marker(
[36.6864, -107.957],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_2b6d917cf629c547da0dce6efb1e814e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_22d1faacc87cf03640507b0a86f3d987.setIcon(icon_2b6d917cf629c547da0dce6efb1e814e);
var popup_262814cb553a2b43c945f6bd27a48ca2 = L.popup({"maxWidth": "100%"});
var html_12786949d32a5621b1ac8e76ffd8e80e = $(`<div id="html_12786949d32a5621b1ac8e76ffd8e80e" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Blanco Hub<br><sup><b>Year Est:</b> 1993<br><b>State:</b> NM<br><b>County:</b> San Juan<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 1600<br><b>Numcust:</b> 40<br><b>Avgdaily:</b> 1200<br><b>Status:</b></sup> Operational</div>`)[0];
popup_262814cb553a2b43c945f6bd27a48ca2.setContent(html_12786949d32a5621b1ac8e76ffd8e80e);
marker_22d1faacc87cf03640507b0a86f3d987.bindPopup(popup_262814cb553a2b43c945f6bd27a48ca2)
;
marker_22d1faacc87cf03640507b0a86f3d987.bindTooltip(
`<div>
<b></b> Blanco Hub
</div>`,
{"sticky": true}
);
var marker_e976a5b911fc58171d44fce7190db8e6 = L.marker(
[35.8337, -100.459],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_57cb6bc7f1be03a726f5b1b582aa51ff = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_e976a5b911fc58171d44fce7190db8e6.setIcon(icon_57cb6bc7f1be03a726f5b1b582aa51ff);
var popup_fb98988cd8baed0f6806074fe1f11194 = L.popup({"maxWidth": "100%"});
var html_5d1d15ba76f348e70c941cc99900bf78 = $(`<div id="html_5d1d15ba76f348e70c941cc99900bf78" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Buffalo Wallow Center<br><sup><b>Year Est:</b> 1994<br><b>State:</b> TX<br><b>County:</b> Hemphill<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 250<br><b>Numcust:</b> 20<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 99</div>`)[0];
popup_fb98988cd8baed0f6806074fe1f11194.setContent(html_5d1d15ba76f348e70c941cc99900bf78);
marker_e976a5b911fc58171d44fce7190db8e6.bindPopup(popup_fb98988cd8baed0f6806074fe1f11194)
;
marker_e976a5b911fc58171d44fce7190db8e6.bindTooltip(
`<div>
<b></b> Buffalo Wallow Center
</div>`,
{"sticky": true}
);
var marker_6e50aa110e23ba6ade8c6d78ac545d1a = L.marker(
[32.1596, -94.2789],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_423207d28625245ade9c266e16877963 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_6e50aa110e23ba6ade8c6d78ac545d1a.setIcon(icon_423207d28625245ade9c266e16877963);
var popup_462dcf46e7c36df839d2b8f469a49fe0 = L.popup({"maxWidth": "100%"});
var html_b4e4c3c94a0f4b70785622eb9861ed7a = $(`<div id="html_b4e4c3c94a0f4b70785622eb9861ed7a" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Carthage Hub<br><sup><b>Year Est:</b> 1990<br><b>State:</b> TX<br><b>County:</b> Panola<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 800<br><b>Numcust:</b> 200<br><b>Avgdaily:</b> 600<br><b>Status:</b></sup> Operational</div>`)[0];
popup_462dcf46e7c36df839d2b8f469a49fe0.setContent(html_b4e4c3c94a0f4b70785622eb9861ed7a);
marker_6e50aa110e23ba6ade8c6d78ac545d1a.bindPopup(popup_462dcf46e7c36df839d2b8f469a49fe0)
;
marker_6e50aa110e23ba6ade8c6d78ac545d1a.bindTooltip(
`<div>
<b></b> Carthage Hub
</div>`,
{"sticky": true}
);
var marker_0a0abdb397202a162c86e8296c3b13fc = L.marker(
[41.5002, -88.2639],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_a215931286cd7201a762c61883dffaba = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_0a0abdb397202a162c86e8296c3b13fc.setIcon(icon_a215931286cd7201a762c61883dffaba);
var popup_1bc63db99b37dab753f875605c027417 = L.popup({"maxWidth": "100%"});
var html_aad391d7bfd6ff754936de2ac676a238 = $(`<div id="html_aad391d7bfd6ff754936de2ac676a238" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Chicago Hub<br><sup><b>Year Est:</b> 1993<br><b>State:</b> IL<br><b>County:</b> Various<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 450<br><b>Numcust:</b> 10<br><b>Avgdaily:</b> 100<br><b>Status:</b></sup> Operational</div>`)[0];
popup_1bc63db99b37dab753f875605c027417.setContent(html_aad391d7bfd6ff754936de2ac676a238);
marker_0a0abdb397202a162c86e8296c3b13fc.bindPopup(popup_1bc63db99b37dab753f875605c027417)
;
marker_0a0abdb397202a162c86e8296c3b13fc.bindTooltip(
`<div>
<b></b> Chicago Hub
</div>`,
{"sticky": true}
);
var marker_cc5f8cbb94981e99ce72c153509162c4 = L.marker(
[41.3979, -77.79],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_a22427239af72bf55d48b1e9ea932910 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon"}
);
marker_cc5f8cbb94981e99ce72c153509162c4.setIcon(icon_a22427239af72bf55d48b1e9ea932910);
var popup_0e5dcb73f14cda500aaf39547b7d4e45 = L.popup({"maxWidth": "100%"});
var html_700de6683c2f599a19677d1d198f58fc = $(`<div id="html_700de6683c2f599a19677d1d198f58fc" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Ellisburg-Leidy Center<br><sup><b>Year Est:</b> 1993<br><b>State:</b> PA<br><b>County:</b> Potter<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 520<br><b>Numcust:</b> 85<br><b>Avgdaily:</b> 432<br><b>Status:</b></sup> Inactive 08</div>`)[0];
popup_0e5dcb73f14cda500aaf39547b7d4e45.setContent(html_700de6683c2f599a19677d1d198f58fc);
marker_cc5f8cbb94981e99ce72c153509162c4.bindPopup(popup_0e5dcb73f14cda500aaf39547b7d4e45)
;
marker_cc5f8cbb94981e99ce72c153509162c4.bindTooltip(
`<div>
<b></b> Ellisburg-Leidy Center
</div>`,
{"sticky": true}
);
var marker_302f29b5376ac488e078c27dc21e4c27 = L.marker(
[29.831, -94.1679],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_3736fc8247fa740ab3c8485c2c6061c0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_302f29b5376ac488e078c27dc21e4c27.setIcon(icon_3736fc8247fa740ab3c8485c2c6061c0);
var popup_46eeb81f81a1aa189dbc63c2e5606083 = L.popup({"maxWidth": "100%"});
var html_7e8c418574b7713beb34b9f416109b54 = $(`<div id="html_7e8c418574b7713beb34b9f416109b54" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Spindletop Storage Hub<br><sup><b>Year Est:</b> 1998<br><b>State:</b> TX<br><b>County:</b> Jefferson<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 750<br><b>Numcust:</b> 20<br><b>Avgdaily:</b> 700<br><b>Status:</b></sup> Inactive 08</div>`)[0];
popup_46eeb81f81a1aa189dbc63c2e5606083.setContent(html_7e8c418574b7713beb34b9f416109b54);
marker_302f29b5376ac488e078c27dc21e4c27.bindPopup(popup_46eeb81f81a1aa189dbc63c2e5606083)
;
marker_302f29b5376ac488e078c27dc21e4c27.bindTooltip(
`<div>
<b></b> Spindletop Storage Hub
</div>`,
{"sticky": true}
);
var marker_b5eab79647d3fec80128ac5f57bf8ba3 = L.marker(
[29.774, -95.3936],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_e07d074b14ad5a7932f8706309061c01 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_b5eab79647d3fec80128ac5f57bf8ba3.setIcon(icon_e07d074b14ad5a7932f8706309061c01);
var popup_7872e1f8442438ca4faee0edb25552ef = L.popup({"maxWidth": "100%"});
var html_137af9d54ebd953711a37b0881b5836c = $(`<div id="html_137af9d54ebd953711a37b0881b5836c" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Houston Hub<br><sup><b>Year Est:</b> 1992<br><b>State:</b> TX<br><b>County:</b> Harris<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 110<br><b>Numcust:</b> 200<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 03</div>`)[0];
popup_7872e1f8442438ca4faee0edb25552ef.setContent(html_137af9d54ebd953711a37b0881b5836c);
marker_b5eab79647d3fec80128ac5f57bf8ba3.bindPopup(popup_7872e1f8442438ca4faee0edb25552ef)
;
marker_b5eab79647d3fec80128ac5f57bf8ba3.bindTooltip(
`<div>
<b></b> Houston Hub
</div>`,
{"sticky": true}
);
var marker_ee9759665a59af1be490563abd0b7520 = L.marker(
[29.8331, -95.8512],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_7b47c4b451b930ce2d6427ee2fef5ae2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_ee9759665a59af1be490563abd0b7520.setIcon(icon_7b47c4b451b930ce2d6427ee2fef5ae2);
var popup_203981563be0ae7ecaebea0f8331eda1 = L.popup({"maxWidth": "100%"});
var html_bef9bcb1ae5e91fdaed70b9c026db215 = $(`<div id="html_bef9bcb1ae5e91fdaed70b9c026db215" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Katy (DCP) Hub<br><sup><b>Year Est:</b> 1995<br><b>State:</b> TX<br><b>County:</b> Waller<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 500<br><b>Numcust:</b> 12<br><b>Avgdaily:</b> 300<br><b>Status:</b></sup> Operational</div>`)[0];
popup_203981563be0ae7ecaebea0f8331eda1.setContent(html_bef9bcb1ae5e91fdaed70b9c026db215);
marker_ee9759665a59af1be490563abd0b7520.bindPopup(popup_203981563be0ae7ecaebea0f8331eda1)
;
marker_ee9759665a59af1be490563abd0b7520.bindTooltip(
`<div>
<b></b> Katy (DCP) Hub
</div>`,
{"sticky": true}
);
var marker_ad246a8ef0487075644b22cd88ad5cd5 = L.marker(
[39.4159, -84.1811],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_8cce9839211156b8b289dc8c0e8c7f42 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ad246a8ef0487075644b22cd88ad5cd5.setIcon(icon_8cce9839211156b8b289dc8c0e8c7f42);
var popup_3d6163185a9826de450d5a90fed9288a = L.popup({"maxWidth": "100%"});
var html_c3a1d36a3b452045f7193cf283c03c07 = $(`<div id="html_c3a1d36a3b452045f7193cf283c03c07" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Lebanon Hub<br><sup><b>Year Est:</b> 1994<br><b>State:</b> OH<br><b>County:</b> Warren<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 0<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 98</div>`)[0];
popup_3d6163185a9826de450d5a90fed9288a.setContent(html_c3a1d36a3b452045f7193cf283c03c07);
marker_ad246a8ef0487075644b22cd88ad5cd5.bindPopup(popup_3d6163185a9826de450d5a90fed9288a)
;
marker_ad246a8ef0487075644b22cd88ad5cd5.bindTooltip(
`<div>
<b></b> Lebanon Hub
</div>`,
{"sticky": true}
);
var marker_1974ff89bb958e8809de4b14e68aac2c = L.marker(
[29.964, -92.4296],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_6d5d38585d1a38c1b32136fb6f8fb5b0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_1974ff89bb958e8809de4b14e68aac2c.setIcon(icon_6d5d38585d1a38c1b32136fb6f8fb5b0);
var popup_a08594bf46bc27bfe4ebea05cba15656 = L.popup({"maxWidth": "100%"});
var html_eeb119e5c30263d8dc2c073de48a74cb = $(`<div id="html_eeb119e5c30263d8dc2c073de48a74cb" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Louisiana Hub<br><sup><b>Year Est:</b> 1994<br><b>State:</b> LA<br><b>County:</b> Assumption<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 400<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 99</div>`)[0];
popup_a08594bf46bc27bfe4ebea05cba15656.setContent(html_eeb119e5c30263d8dc2c073de48a74cb);
marker_1974ff89bb958e8809de4b14e68aac2c.bindPopup(popup_a08594bf46bc27bfe4ebea05cba15656)
;
marker_1974ff89bb958e8809de4b14e68aac2c.bindTooltip(
`<div>
<b></b> Louisiana Hub
</div>`,
{"sticky": true}
);
var marker_44c78e3a0ee8532450a6ccb397b563c5 = L.marker(
[30.1568, -94.8578],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_c9d8d48333d3948c68e99494b808cc73 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_44c78e3a0ee8532450a6ccb397b563c5.setIcon(icon_c9d8d48333d3948c68e99494b808cc73);
var popup_a3259ff4d97a769f40a8e5992e367a76 = L.popup({"maxWidth": "100%"});
var html_060be38a94accc2f57852e579bdcb451 = $(`<div id="html_060be38a94accc2f57852e579bdcb451" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Moss Bluff Hub<br><sup><b>Year Est:</b> 1994<br><b>State:</b> TX<br><b>County:</b> Liberty<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 2000<br><b>Numcust:</b> 40<br><b>Avgdaily:</b> 1600<br><b>Status:</b></sup> Operational</div>`)[0];
popup_a3259ff4d97a769f40a8e5992e367a76.setContent(html_060be38a94accc2f57852e579bdcb451);
marker_44c78e3a0ee8532450a6ccb397b563c5.bindPopup(popup_a3259ff4d97a769f40a8e5992e367a76)
;
marker_44c78e3a0ee8532450a6ccb397b563c5.bindTooltip(
`<div>
<b></b> Moss Bluff Hub
</div>`,
{"sticky": true}
);
var marker_c3faa41ac097fec899bee07d10d3f810 = L.marker(
[32.7035, -92.0616],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_c9f153339f2e3dc67039762051e15eea = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_c3faa41ac097fec899bee07d10d3f810.setIcon(icon_c9f153339f2e3dc67039762051e15eea);
var popup_67510f9fed1906bd7ec0cc43a4660d2f = L.popup({"maxWidth": "100%"});
var html_2cc31d28df4a6da970c73ebdfe5e657b = $(`<div id="html_2cc31d28df4a6da970c73ebdfe5e657b" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Perryville (Ouachita) Hub<br><sup><b>Year Est:</b> 1997<br><b>State:</b> LA<br><b>County:</b> Quachita<br><b>Rates:</b> <br><b>Maxthru:</b> 550<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Canceled 99</div>`)[0];
popup_67510f9fed1906bd7ec0cc43a4660d2f.setContent(html_2cc31d28df4a6da970c73ebdfe5e657b);
marker_c3faa41ac097fec899bee07d10d3f810.bindPopup(popup_67510f9fed1906bd7ec0cc43a4660d2f)
;
marker_c3faa41ac097fec899bee07d10d3f810.bindTooltip(
`<div>
<b></b> Perryville (Ouachita) Hub
</div>`,
{"sticky": true}
);
var marker_0b4138a8ac0b97ef982abf8701b235d6 = L.marker(
[29.9707, -91.1768],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_09de71f7173eab968cb0015cde926658 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_0b4138a8ac0b97ef982abf8701b235d6.setIcon(icon_09de71f7173eab968cb0015cde926658);
var popup_918039cd63c510344663cb8fdb803608 = L.popup({"maxWidth": "100%"});
var html_bc05ac1fa973490d8f151cd3569494f1 = $(`<div id="html_bc05ac1fa973490d8f151cd3569494f1" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Texaco Gulf Star Center<br><sup><b>Year Est:</b> 1993<br><b>State:</b> LA<br><b>County:</b> nan<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 330<br><b>Numcust:</b> 350<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 03</div>`)[0];
popup_918039cd63c510344663cb8fdb803608.setContent(html_bc05ac1fa973490d8f151cd3569494f1);
marker_0b4138a8ac0b97ef982abf8701b235d6.bindPopup(popup_918039cd63c510344663cb8fdb803608)
;
marker_0b4138a8ac0b97ef982abf8701b235d6.bindTooltip(
`<div>
<b></b> Texaco Gulf Star Center
</div>`,
{"sticky": true}
);
var marker_3b955f7d3be01874a76c3b18fa85808c = L.marker(
[31.629, -103.109],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_b81c8ea8b8f471e27572b0f4ad5a9b69 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_3b955f7d3be01874a76c3b18fa85808c.setIcon(icon_b81c8ea8b8f471e27572b0f4ad5a9b69);
var popup_23de69de8f6c81533101ec33bd029f8d = L.popup({"maxWidth": "100%"});
var html_234407575178cf45ed4288fcd1084adb = $(`<div id="html_234407575178cf45ed4288fcd1084adb" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Waha (Atmos) Hub<br><sup><b>Year Est:</b> 1995<br><b>State:</b> TX<br><b>County:</b> Pecos<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 650<br><b>Numcust:</b> 50<br><b>Avgdaily:</b> 300<br><b>Status:</b></sup> Inactive 05</div>`)[0];
popup_23de69de8f6c81533101ec33bd029f8d.setContent(html_234407575178cf45ed4288fcd1084adb);
marker_3b955f7d3be01874a76c3b18fa85808c.bindPopup(popup_23de69de8f6c81533101ec33bd029f8d)
;
marker_3b955f7d3be01874a76c3b18fa85808c.bindTooltip(
`<div>
<b></b> Waha (Atmos) Hub
</div>`,
{"sticky": true}
);
var marker_f2a6122f47ea04f89e067e7cc6bf8eba = L.marker(
[31.2251, -103.113],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_f58bafa5bb83ca6fb9193d970db2a40e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_f2a6122f47ea04f89e067e7cc6bf8eba.setIcon(icon_f58bafa5bb83ca6fb9193d970db2a40e);
var popup_f5e1123b795a9db67ea65bd4db3e9249 = L.popup({"maxWidth": "100%"});
var html_bdac44866622409d9a238768d14100ba = $(`<div id="html_bdac44866622409d9a238768d14100ba" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Waha (DCP/Atmos) Hub<br><sup><b>Year Est:</b> 1995<br><b>State:</b> TX<br><b>County:</b> Pecos<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 650<br><b>Numcust:</b> 62<br><b>Avgdaily:</b> 300<br><b>Status:</b></sup> Operational</div>`)[0];
popup_f5e1123b795a9db67ea65bd4db3e9249.setContent(html_bdac44866622409d9a238768d14100ba);
marker_f2a6122f47ea04f89e067e7cc6bf8eba.bindPopup(popup_f5e1123b795a9db67ea65bd4db3e9249)
;
marker_f2a6122f47ea04f89e067e7cc6bf8eba.bindTooltip(
`<div>
<b></b> Waha (DCP/Atmos) Hub
</div>`,
{"sticky": true}
);
var marker_d7be9c4a163eb2eb82fdf342e99e1a7d = L.marker(
[30.2695, -92.3574],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_fafe0c265884deb4bb682b52c65d4c4b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_d7be9c4a163eb2eb82fdf342e99e1a7d.setIcon(icon_fafe0c265884deb4bb682b52c65d4c4b);
var popup_fcc44bfefc3451fe23e621d5d7df70f4 = L.popup({"maxWidth": "100%"});
var html_93bd79c476e430bd3e3081878b7852b6 = $(`<div id="html_93bd79c476e430bd3e3081878b7852b6" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Egan Hub<br><sup><b>Year Est:</b> 1995<br><b>State:</b> LA<br><b>County:</b> Acadia<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 2500<br><b>Numcust:</b> 40<br><b>Avgdaily:</b> 2000<br><b>Status:</b></sup> Operational</div>`)[0];
popup_fcc44bfefc3451fe23e621d5d7df70f4.setContent(html_93bd79c476e430bd3e3081878b7852b6);
marker_d7be9c4a163eb2eb82fdf342e99e1a7d.bindPopup(popup_fcc44bfefc3451fe23e621d5d7df70f4)
;
marker_d7be9c4a163eb2eb82fdf342e99e1a7d.bindTooltip(
`<div>
<b></b> Egan Hub
</div>`,
{"sticky": true}
);
var marker_ab8a8ca00a3b1f16ef6c38725c2c16a4 = L.marker(
[30.9118, -92.5285],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_ce8aaf748deaa41727b750305f08aa81 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_ab8a8ca00a3b1f16ef6c38725c2c16a4.setIcon(icon_ce8aaf748deaa41727b750305f08aa81);
var popup_ee212410618f7d32ec17cbdffeafbe1d = L.popup({"maxWidth": "100%"});
var html_769d36bc4bd27b54dd612d487c8be8fa = $(`<div id="html_769d36bc4bd27b54dd612d487c8be8fa" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Louisiana Intrastate Gas Center<br><sup><b>Year Est:</b> 1999<br><b>State:</b> LA<br><b>County:</b> Iberia<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 360<br><b>Numcust:</b> 50<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 99</div>`)[0];
popup_ee212410618f7d32ec17cbdffeafbe1d.setContent(html_769d36bc4bd27b54dd612d487c8be8fa);
marker_ab8a8ca00a3b1f16ef6c38725c2c16a4.bindPopup(popup_ee212410618f7d32ec17cbdffeafbe1d)
;
marker_ab8a8ca00a3b1f16ef6c38725c2c16a4.bindTooltip(
`<div>
<b></b> Louisiana Intrastate Gas Center
</div>`,
{"sticky": true}
);
var marker_73d6d3f11477d8caf655fc3d3d9ae3a3 = L.marker(
[29.7501, -95.7861],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_95a9d898d0b7f296f09e91ca117df9c6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_73d6d3f11477d8caf655fc3d3d9ae3a3.setIcon(icon_95a9d898d0b7f296f09e91ca117df9c6);
var popup_9756b87d816dfa8306f56139ad18f60b = L.popup({"maxWidth": "100%"});
var html_c82eedd07bdffdd9d525e8b759974110 = $(`<div id="html_c82eedd07bdffdd9d525e8b759974110" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Katy Storage Center<br><sup><b>Year Est:</b> 1993<br><b>State:</b> TX<br><b>County:</b> Fort Bend<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 700<br><b>Numcust:</b> 30<br><b>Avgdaily:</b> 1400<br><b>Status:</b></sup> Operational</div>`)[0];
popup_9756b87d816dfa8306f56139ad18f60b.setContent(html_c82eedd07bdffdd9d525e8b759974110);
marker_73d6d3f11477d8caf655fc3d3d9ae3a3.bindPopup(popup_9756b87d816dfa8306f56139ad18f60b)
;
marker_73d6d3f11477d8caf655fc3d3d9ae3a3.bindTooltip(
`<div>
<b></b> Katy Storage Center
</div>`,
{"sticky": true}
);
var marker_d2e44350e211aaa2dc8fb5ebdffe6052 = L.marker(
[30.8163, -102.331],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_931319401e948626df8426d811dd31ae = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_d2e44350e211aaa2dc8fb5ebdffe6052.setIcon(icon_931319401e948626df8426d811dd31ae);
var popup_9c85e5cc53d0d3b79a0e23ce062f5bfa = L.popup({"maxWidth": "100%"});
var html_bbcfc665a597abf0344bb4b78b2318cf = $(`<div id="html_bbcfc665a597abf0344bb4b78b2318cf" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Waha (ENSTOR) Hub<br><sup><b>Year Est:</b> 2009<br><b>State:</b> TX<br><b>County:</b> Pecos<br><b>Rates:</b> <br><b>Maxthru:</b> 800<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 450<br><b>Status:</b></sup> Proposed 09</div>`)[0];
popup_9c85e5cc53d0d3b79a0e23ce062f5bfa.setContent(html_bbcfc665a597abf0344bb4b78b2318cf);
marker_d2e44350e211aaa2dc8fb5ebdffe6052.bindPopup(popup_9c85e5cc53d0d3b79a0e23ce062f5bfa)
;
marker_d2e44350e211aaa2dc8fb5ebdffe6052.bindTooltip(
`<div>
<b></b> Waha (ENSTOR) Hub
</div>`,
{"sticky": true}
);
var marker_487e7e5e3e0c62bf0de93842f6daee18 = L.marker(
[27.5488, -97.6003],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_2d9cc0d4b199e76ea56c8fe6a0e238b1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_487e7e5e3e0c62bf0de93842f6daee18.setIcon(icon_2d9cc0d4b199e76ea56c8fe6a0e238b1);
var popup_3b930cc468927731ea88210e097fd88e = L.popup({"maxWidth": "100%"});
var html_c444c882f2cf7b9ba584a4cbd23b8d6d = $(`<div id="html_c444c882f2cf7b9ba584a4cbd23b8d6d" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Aqua Dulce Hub<br><sup><b>Year Est:</b> 1990<br><b>State:</b> TX<br><b>County:</b> Nueces<br><b>Rates:</b> State Tariff<br><b>Maxthru:</b> 600<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 400<br><b>Status:</b></sup> Operational</div>`)[0];
popup_3b930cc468927731ea88210e097fd88e.setContent(html_c444c882f2cf7b9ba584a4cbd23b8d6d);
marker_487e7e5e3e0c62bf0de93842f6daee18.bindPopup(popup_3b930cc468927731ea88210e097fd88e)
;
marker_487e7e5e3e0c62bf0de93842f6daee18.bindTooltip(
`<div>
<b></b> Aqua Dulce Hub
</div>`,
{"sticky": true}
);
var marker_9c3aaee0aa6044ac3e7b32fa6dd2b21b = L.marker(
[42.2222, -83.4014],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_b9fe6a01e1527b0baf97adcef707b23f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_9c3aaee0aa6044ac3e7b32fa6dd2b21b.setIcon(icon_b9fe6a01e1527b0baf97adcef707b23f);
var popup_f5a991e04ca7c8cb3af52eddc5d302d4 = L.popup({"maxWidth": "100%"});
var html_440b5b73bd97b9efbd89cdf54488c915 = $(`<div id="html_440b5b73bd97b9efbd89cdf54488c915" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Grand Lacs Hub<br><sup><b>Year Est:</b> 1995<br><b>State:</b> MI<br><b>County:</b> St Cair<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 250<br><b>Numcust:</b> 0<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 99</div>`)[0];
popup_f5a991e04ca7c8cb3af52eddc5d302d4.setContent(html_440b5b73bd97b9efbd89cdf54488c915);
marker_9c3aaee0aa6044ac3e7b32fa6dd2b21b.bindPopup(popup_f5a991e04ca7c8cb3af52eddc5d302d4)
;
marker_9c3aaee0aa6044ac3e7b32fa6dd2b21b.bindTooltip(
`<div>
<b></b> Grand Lacs Hub
</div>`,
{"sticky": true}
);
var marker_842660a8bbe3c828175d4d390d7095ba = L.marker(
[37.8699, -97.7721],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_2213c0bd550f77341a496cc4aa509a92 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_842660a8bbe3c828175d4d390d7095ba.setIcon(icon_2213c0bd550f77341a496cc4aa509a92);
var popup_75cd944589de4835a5ed6a5f12501705 = L.popup({"maxWidth": "100%"});
var html_3d155214dbedf023096e37eb3ba74a2b = $(`<div id="html_3d155214dbedf023096e37eb3ba74a2b" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Mid-Continent Center<br><sup><b>Year Est:</b> 1995<br><b>State:</b> KS<br><b>County:</b> nan<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 630<br><b>Numcust:</b> 10<br><b>Avgdaily:</b> 340<br><b>Status:</b></sup> Operational</div>`)[0];
popup_75cd944589de4835a5ed6a5f12501705.setContent(html_3d155214dbedf023096e37eb3ba74a2b);
marker_842660a8bbe3c828175d4d390d7095ba.bindPopup(popup_75cd944589de4835a5ed6a5f12501705)
;
marker_842660a8bbe3c828175d4d390d7095ba.bindTooltip(
`<div>
<b></b> Mid-Continent Center
</div>`,
{"sticky": true}
);
var marker_2e36b8873bffb0e4320cc91502c8c3bf = L.marker(
[40.5819, -78.1274],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_0e7b85ea9586105b18c326a1c5ea1a95 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon"}
);
marker_2e36b8873bffb0e4320cc91502c8c3bf.setIcon(icon_0e7b85ea9586105b18c326a1c5ea1a95);
var popup_d467887f1e7c5d7993f3bc5bd73a727f = L.popup({"maxWidth": "100%"});
var html_564ddc4325c90dac445b56f869c2d872 = $(`<div id="html_564ddc4325c90dac445b56f869c2d872" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Dominion Hub<br><sup><b>Year Est:</b> 1994<br><b>State:</b> PA<br><b>County:</b> nan<br><b>Rates:</b> Market Based<br><b>Maxthru:</b> 1745<br><b>Numcust:</b> 250<br><b>Avgdaily:</b> 2500<br><b>Status:</b></sup> Operational</div>`)[0];
popup_d467887f1e7c5d7993f3bc5bd73a727f.setContent(html_564ddc4325c90dac445b56f869c2d872);
marker_2e36b8873bffb0e4320cc91502c8c3bf.bindPopup(popup_d467887f1e7c5d7993f3bc5bd73a727f)
;
marker_2e36b8873bffb0e4320cc91502c8c3bf.bindTooltip(
`<div>
<b></b> Dominion Hub
</div>`,
{"sticky": true}
);
var marker_420b512bac6371d0e9f18516deb82e5e = L.marker(
[41.1416, -78.9074],
{"maxWidth": "80%", "zoomStart": 7}
).addTo(map_a3dbb8ccf97b9942c6a84e56ae4081ef);
var icon_5c18b7c0f5d0f661d3056576b740162f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon"}
);
marker_420b512bac6371d0e9f18516deb82e5e.setIcon(icon_5c18b7c0f5d0f661d3056576b740162f);
var popup_f4c337ce2b5e87249daeb16d86e0514b = L.popup({"maxWidth": "100%"});
var html_9be6b9b4b0092b791c4f4135da49190c = $(`<div id="html_9be6b9b4b0092b791c4f4135da49190c" style="width: 100.0%; height: 100.0%;"><u><b>Hub Name:</b></u> Columbia Gas Center<br><sup><b>Year Est:</b> 1995<br><b>State:</b> PA<br><b>County:</b> nan<br><b>Rates:</b> Max - Discount<br><b>Maxthru:</b> 2010<br><b>Numcust:</b> 50<br><b>Avgdaily:</b> 0<br><b>Status:</b></sup> Inactive 03</div>`)[0];
popup_f4c337ce2b5e87249daeb16d86e0514b.setContent(html_9be6b9b4b0092b791c4f4135da49190c);
marker_420b512bac6371d0e9f18516deb82e5e.bindPopup(popup_f4c337ce2b5e87249daeb16d86e0514b)
;
marker_420b512bac6371d0e9f18516deb82e5e.bindTooltip(
`<div>
<b></b> Columbia Gas Center