-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmap_route2.html
3018 lines (1854 loc) · 221 KB
/
map_route2.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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/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_59b4214ed765bcede4cebf0a5683a044 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_59b4214ed765bcede4cebf0a5683a044" ></div>
</body>
<script>
var map_59b4214ed765bcede4cebf0a5683a044 = L.map(
"map_59b4214ed765bcede4cebf0a5683a044",
{
center: [29.30135, -94.7977],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_769e10f6c3b20a7fd834719294cdfbbe = 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_59b4214ed765bcede4cebf0a5683a044);
var marker_b4d7ba88b1cc618cc125796af488b1bf = L.marker(
[29.2736, -94.8523],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_81a0e22b818ac711641a5b71e7a41fad = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b4d7ba88b1cc618cc125796af488b1bf.setIcon(icon_81a0e22b818ac711641a5b71e7a41fad);
var popup_752054bc100c25d19f2d29196f205990 = L.popup({"maxWidth": 700});
var html_16a504e8be309e538235faae17974554 = $(`<div id="html_16a504e8be309e538235faae17974554" style="width: 100.0%; height: 100.0%;"> Index: 0 <br> Name: Moody Gardens <br> Address: nan <br> Dropoff (weekly): 0 <br> Pickup (daily): 0 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_752054bc100c25d19f2d29196f205990.setContent(html_16a504e8be309e538235faae17974554);
marker_b4d7ba88b1cc618cc125796af488b1bf.bindPopup(popup_752054bc100c25d19f2d29196f205990)
;
var marker_182c94d648d981cdd46911d593a94a6f = L.marker(
[29.27236148, -94.85420043],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_23a312ffb196841a6d70cc1cb21fee94 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_182c94d648d981cdd46911d593a94a6f.setIcon(icon_23a312ffb196841a6d70cc1cb21fee94);
var popup_e4bd4fa78330ec5e6d017b07ff151294 = L.popup({"maxWidth": 700});
var html_b61e142f245dccb975f1070f880bfc28 = $(`<div id="html_b61e142f245dccb975f1070f880bfc28" style="width: 100.0%; height: 100.0%;"> Index: 1 <br> Name: Aquarium Pyramid <br> Address: 1 Hope Blvd Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_e4bd4fa78330ec5e6d017b07ff151294.setContent(html_b61e142f245dccb975f1070f880bfc28);
marker_182c94d648d981cdd46911d593a94a6f.bindPopup(popup_e4bd4fa78330ec5e6d017b07ff151294)
;
var marker_825b27e4e5d0302278b23e40ee45be3c = L.marker(
[29.2703671, -94.8517369],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_fbbbfa1e2d05aea208084213190f2674 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_825b27e4e5d0302278b23e40ee45be3c.setIcon(icon_fbbbfa1e2d05aea208084213190f2674);
var popup_8d53018d14fc580289709d5b14d83f77 = L.popup({"maxWidth": 700});
var html_4fd8ca443618a6fe44d32f8463a462cb = $(`<div id="html_4fd8ca443618a6fe44d32f8463a462cb" style="width: 100.0%; height: 100.0%;"> Index: 2 <br> Name: Schlitterbahn Waterpark Galveston <br> Address: 2109 Gene Lucas Blvd, Galveston <br> Dropoff (weekly): 6 <br> Pickup (daily): 8 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_8d53018d14fc580289709d5b14d83f77.setContent(html_4fd8ca443618a6fe44d32f8463a462cb);
marker_825b27e4e5d0302278b23e40ee45be3c.bindPopup(popup_8d53018d14fc580289709d5b14d83f77)
;
var marker_ae08fbf2fbd012747fd0c47adc427c87 = L.marker(
[29.2530127, -94.8542107],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_f7279acef37dcdda0347045302e4238e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ae08fbf2fbd012747fd0c47adc427c87.setIcon(icon_f7279acef37dcdda0347045302e4238e);
var popup_efe98c28c9aced315a476cacc00598dc = L.popup({"maxWidth": 700});
var html_d17391783fbd6ad4b909fee45412779b = $(`<div id="html_d17391783fbd6ad4b909fee45412779b" style="width: 100.0%; height: 100.0%;"> Index: 3 <br> Name: Galveston Primetime <br> Address: 8902 Seawall Boulevard, Galveston Movie theatre) <br> Dropoff (weekly): 2 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_efe98c28c9aced315a476cacc00598dc.setContent(html_d17391783fbd6ad4b909fee45412779b);
marker_ae08fbf2fbd012747fd0c47adc427c87.bindPopup(popup_efe98c28c9aced315a476cacc00598dc)
;
var marker_b2e4e5c4d680cdf34143fe0c4199d8b7 = L.marker(
[29.25173, -94.85317],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_9e24702b33b008be067e21715f14f3f8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b2e4e5c4d680cdf34143fe0c4199d8b7.setIcon(icon_9e24702b33b008be067e21715f14f3f8);
var popup_ba241d3dad232fde3687e48a5edf534c = L.popup({"maxWidth": 700});
var html_325845161de62c9fd5a2d94c64f267c3 = $(`<div id="html_325845161de62c9fd5a2d94c64f267c3" style="width: 100.0%; height: 100.0%;"> Index: 4 <br> Name: Dolphin World Inc No 2 <br> Address: 718 41st Str Galveston, TX 77550 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_ba241d3dad232fde3687e48a5edf534c.setContent(html_325845161de62c9fd5a2d94c64f267c3);
marker_b2e4e5c4d680cdf34143fe0c4199d8b7.bindPopup(popup_ba241d3dad232fde3687e48a5edf534c)
;
var marker_ae47d2bfc65dc4dea8a6045e434c783b = L.marker(
[29.2506985, -94.8531793],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_dc1ff01881dfebf7f19a1a138bac8943 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ae47d2bfc65dc4dea8a6045e434c783b.setIcon(icon_dc1ff01881dfebf7f19a1a138bac8943);
var popup_99f5d32ab15ddce99d45e36f79a871a3 = L.popup({"maxWidth": 700});
var html_75a4e5ec0d39c796211ca752265aa8ef = $(`<div id="html_75a4e5ec0d39c796211ca752265aa8ef" style="width: 100.0%; height: 100.0%;"> Index: 5 <br> Name: Jimmy's Curbside Restaurant and Grocery <br> Address: 9001 Seawall Boulevard, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_99f5d32ab15ddce99d45e36f79a871a3.setContent(html_75a4e5ec0d39c796211ca752265aa8ef);
marker_ae47d2bfc65dc4dea8a6045e434c783b.bindPopup(popup_99f5d32ab15ddce99d45e36f79a871a3)
;
var marker_70f3148b1974d5385ba29f5f09300860 = L.marker(
[29.2506218, -94.8532271],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_5a411b14a9ca758178cd3e7b6c83c16e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_70f3148b1974d5385ba29f5f09300860.setIcon(icon_5a411b14a9ca758178cd3e7b6c83c16e);
var popup_19c49ff8a317d4c1156c9beb2b88acba = L.popup({"maxWidth": 700});
var html_dbb5563241e99e1d63764231d216facd = $(`<div id="html_dbb5563241e99e1d63764231d216facd" style="width: 100.0%; height: 100.0%;"> Index: 6 <br> Name: SEA BEAN Coffee Cafe <br> Address: 9001 Seawall Blvd Galveston, TX 77551 (Jimmies) <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_19c49ff8a317d4c1156c9beb2b88acba.setContent(html_dbb5563241e99e1d63764231d216facd);
marker_70f3148b1974d5385ba29f5f09300860.bindPopup(popup_19c49ff8a317d4c1156c9beb2b88acba)
;
var marker_568429612db637fd54efce28657024f4 = L.marker(
[29.24448719, -94.86803806],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_c55572ba82683790f4a31749c6179614 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_568429612db637fd54efce28657024f4.setIcon(icon_c55572ba82683790f4a31749c6179614);
var popup_e8945e315284ad3167b2159305aac9d2 = L.popup({"maxWidth": 700});
var html_20ae8bc7901cc95b93e1fffb4b8a62b7 = $(`<div id="html_20ae8bc7901cc95b93e1fffb4b8a62b7" style="width: 100.0%; height: 100.0%;"> Index: 7 <br> Name: Seahorse Grill <br> Address: 3802 Cove View Blvd Ste C Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_e8945e315284ad3167b2159305aac9d2.setContent(html_20ae8bc7901cc95b93e1fffb4b8a62b7);
marker_568429612db637fd54efce28657024f4.bindPopup(popup_e8945e315284ad3167b2159305aac9d2)
;
var marker_b07a2ec33184f8801ec0d6fc83ce3f9b = L.marker(
[29.24463873, -94.86782336],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_adb493f0f88604f86991931cd829509f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b07a2ec33184f8801ec0d6fc83ce3f9b.setIcon(icon_adb493f0f88604f86991931cd829509f);
var popup_e66c15b5799e6128dc621190c552669b = L.popup({"maxWidth": 700});
var html_70bf7a1bff3db4963983e9010933fc7c = $(`<div id="html_70bf7a1bff3db4963983e9010933fc7c" style="width: 100.0%; height: 100.0%;"> Index: 8 <br> Name: Seawall Coffee Company <br> Address: nan <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_e66c15b5799e6128dc621190c552669b.setContent(html_70bf7a1bff3db4963983e9010933fc7c);
marker_b07a2ec33184f8801ec0d6fc83ce3f9b.bindPopup(popup_e66c15b5799e6128dc621190c552669b)
;
var marker_c06d987ee9b0b33d0bcddaf761f7b340 = L.marker(
[29.2407199, -94.8780445],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_b6fbf2d65a4c19e2fda25dbeb1d3d4f9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_c06d987ee9b0b33d0bcddaf761f7b340.setIcon(icon_b6fbf2d65a4c19e2fda25dbeb1d3d4f9);
var popup_d1219ce9574d2fce5ef30bb0577fa6c5 = L.popup({"maxWidth": 700});
var html_8e3f40467a7de3108e012d4c02200c4a = $(`<div id="html_8e3f40467a7de3108e012d4c02200c4a" style="width: 100.0%; height: 100.0%;"> Index: 9 <br> Name: Cooper's Landing <br> Address: 11150 Termini-San Luis Pass Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_d1219ce9574d2fce5ef30bb0577fa6c5.setContent(html_8e3f40467a7de3108e012d4c02200c4a);
marker_c06d987ee9b0b33d0bcddaf761f7b340.bindPopup(popup_d1219ce9574d2fce5ef30bb0577fa6c5)
;
var marker_c78fe42fd797bc0bcd79528176abefac = L.marker(
[29.2082758, -94.9373606],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_96f4821e4f126a062a1242c6b0f8e40d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_c78fe42fd797bc0bcd79528176abefac.setIcon(icon_96f4821e4f126a062a1242c6b0f8e40d);
var popup_3bc6bc5a764e58e87d2f77f82dec8f3a = L.popup({"maxWidth": 700});
var html_e6050ec074bb1920ba5fdc5dcd9464c3 = $(`<div id="html_e6050ec074bb1920ba5fdc5dcd9464c3" style="width: 100.0%; height: 100.0%;"> Index: 10 <br> Name: Mario's Pizza <br> Address: 13708 Termini-san Luis Pass Rd Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_3bc6bc5a764e58e87d2f77f82dec8f3a.setContent(html_e6050ec074bb1920ba5fdc5dcd9464c3);
marker_c78fe42fd797bc0bcd79528176abefac.bindPopup(popup_3bc6bc5a764e58e87d2f77f82dec8f3a)
;
var marker_417da13755cb6e905860ca2bce4a5b99 = L.marker(
[29.20822, -94.9374899],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_1cf629d06c6e4fda88bfe534bf0563f4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_417da13755cb6e905860ca2bce4a5b99.setIcon(icon_1cf629d06c6e4fda88bfe534bf0563f4);
var popup_5730e37531698b0195071ff983e86a50 = L.popup({"maxWidth": 700});
var html_0327554cd5789a38d34c9c1ab1abb807 = $(`<div id="html_0327554cd5789a38d34c9c1ab1abb807" style="width: 100.0%; height: 100.0%;"> Index: 11 <br> Name: Hummel's General Store & Deli <br> Address: nan <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_5730e37531698b0195071ff983e86a50.setContent(html_0327554cd5789a38d34c9c1ab1abb807);
marker_417da13755cb6e905860ca2bce4a5b99.bindPopup(popup_5730e37531698b0195071ff983e86a50)
;
var marker_4ebf5d1ea86aa42c198be4146453a0a0 = L.marker(
[29.1415146, -95.0404814],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_38fda3039ce637ac23388cdaba2ffb46 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_4ebf5d1ea86aa42c198be4146453a0a0.setIcon(icon_38fda3039ce637ac23388cdaba2ffb46);
var popup_fbeaa04170572e4b899fc1b7c81adcb8 = L.popup({"maxWidth": 700});
var html_8fe5f2f3a93ef1c9c656a5432e34b1e4 = $(`<div id="html_8fe5f2f3a93ef1c9c656a5432e34b1e4" style="width: 100.0%; height: 100.0%;"> Index: 12 <br> Name: Galveston Food Truck Park <br> Address: Nest to the Wet Whistle Bar in Sea Isle, 21510 Termini-San Luis Pass Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_fbeaa04170572e4b899fc1b7c81adcb8.setContent(html_8fe5f2f3a93ef1c9c656a5432e34b1e4);
marker_4ebf5d1ea86aa42c198be4146453a0a0.bindPopup(popup_fbeaa04170572e4b899fc1b7c81adcb8)
;
var marker_8f8ce94f5f301e421b3e2734ace6e267 = L.marker(
[29.1449947, -95.0470457],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_adcf93fd2b1ab04a456e7f6a7f5b0921 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_8f8ce94f5f301e421b3e2734ace6e267.setIcon(icon_adcf93fd2b1ab04a456e7f6a7f5b0921);
var popup_8f6f72814836c66887d7f8b7c20a152b = L.popup({"maxWidth": 700});
var html_360adb82fbc568142c656ba5ac784fd2 = $(`<div id="html_360adb82fbc568142c656ba5ac784fd2" style="width: 100.0%; height: 100.0%;"> Index: 13 <br> Name: The West End Marina and Restaurants <br> Address: 21706 Burnet Drive, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_8f6f72814836c66887d7f8b7c20a152b.setContent(html_360adb82fbc568142c656ba5ac784fd2);
marker_8f8ce94f5f301e421b3e2734ace6e267.bindPopup(popup_8f6f72814836c66887d7f8b7c20a152b)
;
var marker_4d91ee07a1dc882b117a9f920701f993 = L.marker(
[29.1449775, -95.0470522],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_d641fc060564d5ca3e31167a26baeade = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_4d91ee07a1dc882b117a9f920701f993.setIcon(icon_d641fc060564d5ca3e31167a26baeade);
var popup_3578faf8fc7590776d59369ebbaf5a76 = L.popup({"maxWidth": 700});
var html_0d5c33777fbd44eb06ea599ae57ebc4f = $(`<div id="html_0d5c33777fbd44eb06ea599ae57ebc4f" style="width: 100.0%; height: 100.0%;"> Index: 14 <br> Name: The Sandbar Grille <br> Address: 21706 Burnet Drive, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_3578faf8fc7590776d59369ebbaf5a76.setContent(html_0d5c33777fbd44eb06ea599ae57ebc4f);
marker_4d91ee07a1dc882b117a9f920701f993.bindPopup(popup_3578faf8fc7590776d59369ebbaf5a76)
;
var marker_84d454a6ea24396fd1384cc182c187b0 = L.marker(
[29.1752194, -94.9850694],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_f05f5f6736ecfb412fe28f60acc08985 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_84d454a6ea24396fd1384cc182c187b0.setIcon(icon_f05f5f6736ecfb412fe28f60acc08985);
var popup_48d036638543d8c1d0127f66c5da40fe = L.popup({"maxWidth": 700});
var html_a9135a0cb17bb25bbacd388f21a8a56f = $(`<div id="html_a9135a0cb17bb25bbacd388f21a8a56f" style="width: 100.0%; height: 100.0%;"> Index: 15 <br> Name: Nate's Westend Seafood & Steaks <br> Address: 17515 Termini-San Luis Pass Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_48d036638543d8c1d0127f66c5da40fe.setContent(html_a9135a0cb17bb25bbacd388f21a8a56f);
marker_84d454a6ea24396fd1384cc182c187b0.bindPopup(popup_48d036638543d8c1d0127f66c5da40fe)
;
var marker_62521088f0616f7545e62c9cfe8b08c1 = L.marker(
[29.2073822, -94.94924164],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_2a346e64e8a75a62004598a150945176 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_62521088f0616f7545e62c9cfe8b08c1.setIcon(icon_2a346e64e8a75a62004598a150945176);
var popup_ecea81bb39a8cf455415b6daac4bff01 = L.popup({"maxWidth": 700});
var html_594f6e7e8fa949b60034de35d48d3075 = $(`<div id="html_594f6e7e8fa949b60034de35d48d3075" style="width: 100.0%; height: 100.0%;"> Index: 16 <br> Name: Waterman's Restaurant <br> Address: 14302 Stewart Rd Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_ecea81bb39a8cf455415b6daac4bff01.setContent(html_594f6e7e8fa949b60034de35d48d3075);
marker_62521088f0616f7545e62c9cfe8b08c1.bindPopup(popup_ecea81bb39a8cf455415b6daac4bff01)
;
var marker_06f55e0282e33aec564a9658405b1234 = L.marker(
[29.2610286, -94.8704183],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_73a90fb52eca2bc7a8ec43d1cd7acddf = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_06f55e0282e33aec564a9658405b1234.setIcon(icon_73a90fb52eca2bc7a8ec43d1cd7acddf);
var popup_90a3a444c9c24f99369fc22307624a06 = L.popup({"maxWidth": 700});
var html_ab5bf2b88c212e1532ac9246469a4da0 = $(`<div id="html_ab5bf2b88c212e1532ac9246469a4da0" style="width: 100.0%; height: 100.0%;"> Index: 17 <br> Name: Sugar Bean <br> Address: 11 Evia Main, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_90a3a444c9c24f99369fc22307624a06.setContent(html_ab5bf2b88c212e1532ac9246469a4da0);
marker_06f55e0282e33aec564a9658405b1234.bindPopup(popup_90a3a444c9c24f99369fc22307624a06)
;
var marker_f848a8f87de8bd76280be34ff1a5cf0d = L.marker(
[29.2610884, -94.8706411],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_40f95d3653ba768a6121d7db5709ed2d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_f848a8f87de8bd76280be34ff1a5cf0d.setIcon(icon_40f95d3653ba768a6121d7db5709ed2d);
var popup_b225199dccf8eb695c22283cbbf45340 = L.popup({"maxWidth": 700});
var html_ef12018041653b90433cf21f7126c9fb = $(`<div id="html_ef12018041653b90433cf21f7126c9fb" style="width: 100.0%; height: 100.0%;"> Index: 18 <br> Name: Lil’ Buffalo Grille <br> Address: 13 Evia Main, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_b225199dccf8eb695c22283cbbf45340.setContent(html_ef12018041653b90433cf21f7126c9fb);
marker_f848a8f87de8bd76280be34ff1a5cf0d.bindPopup(popup_b225199dccf8eb695c22283cbbf45340)
;
var marker_a02fd508e1295435660bf51f62f76d34 = L.marker(
[29.2539288, -94.8556317],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_17513e0311e2bba8b9139d2640ef418e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_a02fd508e1295435660bf51f62f76d34.setIcon(icon_17513e0311e2bba8b9139d2640ef418e);
var popup_52e8befbbf84dcf861d8fa915d07b9d5 = L.popup({"maxWidth": 700});
var html_52602a37b899e28a53595a60fcc9250b = $(`<div id="html_52602a37b899e28a53595a60fcc9250b" style="width: 100.0%; height: 100.0%;"> Index: 19 <br> Name: Tin Cup's Caddy Shack <br> Address: 9020 Stewart Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_52e8befbbf84dcf861d8fa915d07b9d5.setContent(html_52602a37b899e28a53595a60fcc9250b);
marker_a02fd508e1295435660bf51f62f76d34.bindPopup(popup_52e8befbbf84dcf861d8fa915d07b9d5)
;
var marker_6d775ae89f80d378f9841b704d7879c7 = L.marker(
[29.2592634, -94.8412938],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_56d3ed0ed20ef55e65015907c2e17951 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_6d775ae89f80d378f9841b704d7879c7.setIcon(icon_56d3ed0ed20ef55e65015907c2e17951);
var popup_f982242bf477770b6e0ce95b96b4fc8d = L.popup({"maxWidth": 700});
var html_bb91d23cb271bc9be0ee6cdba118a518 = $(`<div id="html_bb91d23cb271bc9be0ee6cdba118a518" style="width: 100.0%; height: 100.0%;"> Index: 20 <br> Name: Sapori <br> Address: 7611 Stewart Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_f982242bf477770b6e0ce95b96b4fc8d.setContent(html_bb91d23cb271bc9be0ee6cdba118a518);
marker_6d775ae89f80d378f9841b704d7879c7.bindPopup(popup_f982242bf477770b6e0ce95b96b4fc8d)
;
var marker_76a50b5284577290729f8784e9377fb6 = L.marker(
[29.27079, -94.82903],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_7f4c0e9d0f162d8f56528fd77960f293 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_76a50b5284577290729f8784e9377fb6.setIcon(icon_7f4c0e9d0f162d8f56528fd77960f293);
var popup_6537cd789b49b3d4fb71b587dc91b139 = L.popup({"maxWidth": 700});
var html_08f59443232c813d55b90bbed7a5ae36 = $(`<div id="html_08f59443232c813d55b90bbed7a5ae36" style="width: 100.0%; height: 100.0%;"> Index: 21 <br> Name: Taco Cabana <br> Address: 2729 61st St. Galveston, TX 77551 <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_6537cd789b49b3d4fb71b587dc91b139.setContent(html_08f59443232c813d55b90bbed7a5ae36);
marker_76a50b5284577290729f8784e9377fb6.bindPopup(popup_6537cd789b49b3d4fb71b587dc91b139)
;
var marker_692b85f4ee4b83203fd62c1bd12e7d2d = L.marker(
[29.2744235, -94.8308258],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_fb793f5044b1617de64fc69584f515c7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_692b85f4ee4b83203fd62c1bd12e7d2d.setIcon(icon_fb793f5044b1617de64fc69584f515c7);
var popup_83626a63cbc3f88384e805db5c95c214 = L.popup({"maxWidth": 700});
var html_32834cfa51c4295e964d56e76e96729a = $(`<div id="html_32834cfa51c4295e964d56e76e96729a" style="width: 100.0%; height: 100.0%;"> Index: 22 <br> Name: Café Canela <br> Address: 6105 Stewart Road Suite C, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_83626a63cbc3f88384e805db5c95c214.setContent(html_32834cfa51c4295e964d56e76e96729a);
marker_692b85f4ee4b83203fd62c1bd12e7d2d.bindPopup(popup_83626a63cbc3f88384e805db5c95c214)
;
var marker_b79647e4fac1e7ab0479c4d0234fd6a7 = L.marker(
[29.27417239, -94.83164758],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_c53ef079be13436d184a6ddce05332ef = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b79647e4fac1e7ab0479c4d0234fd6a7.setIcon(icon_c53ef079be13436d184a6ddce05332ef);
var popup_26134ec7cfef6365939c095bf9c1713c = L.popup({"maxWidth": 700});
var html_818b7b739975a73c2b93781bf8e3b39c = $(`<div id="html_818b7b739975a73c2b93781bf8e3b39c" style="width: 100.0%; height: 100.0%;"> Index: 23 <br> Name: Gypsy Joynt <br> Address: 6105 Stewart Rd Galveston, TX 77551 <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_26134ec7cfef6365939c095bf9c1713c.setContent(html_818b7b739975a73c2b93781bf8e3b39c);
marker_b79647e4fac1e7ab0479c4d0234fd6a7.bindPopup(popup_26134ec7cfef6365939c095bf9c1713c)
;
var marker_4432a73c5a35ae34190c7726937047ad = L.marker(
[29.2755, -94.83056],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_38123387683485638709f718ee2347f2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_4432a73c5a35ae34190c7726937047ad.setIcon(icon_38123387683485638709f718ee2347f2);
var popup_868b76230f392bd11327b1ac98ed0e18 = L.popup({"maxWidth": 700});
var html_fd4a836241fd205f0367fc7d99c28c7d = $(`<div id="html_fd4a836241fd205f0367fc7d99c28c7d" style="width: 100.0%; height: 100.0%;"> Index: 24 <br> Name: Panda Express <br> Address: 11745 San Luis Pass Rd Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_868b76230f392bd11327b1ac98ed0e18.setContent(html_fd4a836241fd205f0367fc7d99c28c7d);
marker_4432a73c5a35ae34190c7726937047ad.bindPopup(popup_868b76230f392bd11327b1ac98ed0e18)
;
var marker_c659cb4387220679b3cca46f4913a5f2 = L.marker(
[29.2769392, -94.8316408],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_649295ac54faf73e6aaa730e4091a843 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_c659cb4387220679b3cca46f4913a5f2.setIcon(icon_649295ac54faf73e6aaa730e4091a843);
var popup_55ce77359062ba283f36c5d79c7f17ac = L.popup({"maxWidth": 700});
var html_6840baceefbf475c0331db149f6400cd = $(`<div id="html_6840baceefbf475c0331db149f6400cd" style="width: 100.0%; height: 100.0%;"> Index: 25 <br> Name: Cajun Greek <br> Address: 2226 61st St Galveston, TX 77551 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_55ce77359062ba283f36c5d79c7f17ac.setContent(html_6840baceefbf475c0331db149f6400cd);
marker_c659cb4387220679b3cca46f4913a5f2.bindPopup(popup_55ce77359062ba283f36c5d79c7f17ac)
;
var marker_bb13270a7fedc4039fb1fc2149cf9315 = L.marker(
[29.27708, -94.8315],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_9838ec4dd116ae5d67592339fde82e6c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_bb13270a7fedc4039fb1fc2149cf9315.setIcon(icon_9838ec4dd116ae5d67592339fde82e6c);
var popup_58d872cdcff73c0ff681f867faf3183c = L.popup({"maxWidth": 700});
var html_dcb52bbd9ad3c6d41e0f573b99675eb9 = $(`<div id="html_dcb52bbd9ad3c6d41e0f573b99675eb9" style="width: 100.0%; height: 100.0%;"> Index: 26 <br> Name: Mario's Ristorante <br> Address: 2202 61st St Galveston, TX 77551 <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_58d872cdcff73c0ff681f867faf3183c.setContent(html_dcb52bbd9ad3c6d41e0f573b99675eb9);
marker_bb13270a7fedc4039fb1fc2149cf9315.bindPopup(popup_58d872cdcff73c0ff681f867faf3183c)
;
var marker_8608561d96756303a6d9f60acb46dc17 = L.marker(
[29.2753139, -94.832217],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_ecbbc4337081fc9e2f9ede9d372ead59 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_8608561d96756303a6d9f60acb46dc17.setIcon(icon_ecbbc4337081fc9e2f9ede9d372ead59);
var popup_fecf61a463908b2ca725b869d284887d = L.popup({"maxWidth": 700});
var html_9124ec9a070dbbc971d92a18a63087e6 = $(`<div id="html_9124ec9a070dbbc971d92a18a63087e6" style="width: 100.0%; height: 100.0%;"> Index: 27 <br> Name: Gino's Italian Restaurant and Pizzeria <br> Address: 6124 Stewart Road, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_fecf61a463908b2ca725b869d284887d.setContent(html_9124ec9a070dbbc971d92a18a63087e6);
marker_8608561d96756303a6d9f60acb46dc17.bindPopup(popup_fecf61a463908b2ca725b869d284887d)
;
var marker_a6b01af357f4dd32d17665dc115ae753 = L.marker(
[29.27307241, -94.85089697],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_fdaae767360130f7b9372798cb8d906d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_a6b01af357f4dd32d17665dc115ae753.setIcon(icon_fdaae767360130f7b9372798cb8d906d);
var popup_19ff2de0c038e639a53b08af95b2ef89 = L.popup({"maxWidth": 700});
var html_9e9fab9ced4fa7768054fcb7c05e6c26 = $(`<div id="html_9e9fab9ced4fa7768054fcb7c05e6c26" style="width: 100.0%; height: 100.0%;"> Index: 28 <br> Name: Cafe in the Park <br> Address: 7 Hope Blvd Galveston, TX 77554 <br> Dropoff (weekly): 3 <br> Pickup (daily): 3 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_19ff2de0c038e639a53b08af95b2ef89.setContent(html_9e9fab9ced4fa7768054fcb7c05e6c26);
marker_a6b01af357f4dd32d17665dc115ae753.bindPopup(popup_19ff2de0c038e639a53b08af95b2ef89)
;
var marker_ca022a62e4f278916710d689dc8246f8 = L.marker(
[29.275732, -94.850972],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_b84022796f66a644d54f89c410c747f3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ca022a62e4f278916710d689dc8246f8.setIcon(icon_b84022796f66a644d54f89c410c747f3);
var popup_e7def4f080cc1c5f9117576491f89d0b = L.popup({"maxWidth": 700});
var html_45f6ca0b4572c2f7093e5ca8eaf7f0cb = $(`<div id="html_45f6ca0b4572c2f7093e5ca8eaf7f0cb" style="width: 100.0%; height: 100.0%;"> Index: 29 <br> Name: Palm Beach At Moody Gardens <br> Address: 8928, 1 Hope Boulevard, Galveston <br> Dropoff (weekly): 6 <br> Pickup (daily): 8 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_e7def4f080cc1c5f9117576491f89d0b.setContent(html_45f6ca0b4572c2f7093e5ca8eaf7f0cb);
marker_ca022a62e4f278916710d689dc8246f8.bindPopup(popup_e7def4f080cc1c5f9117576491f89d0b)
;
var marker_0c75494ad10ca28332afafb683bb80bb = L.marker(
[29.2757299, -94.8520363],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_9dea70e05f75f482fb1da083cd5d86fe = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_0c75494ad10ca28332afafb683bb80bb.setIcon(icon_9dea70e05f75f482fb1da083cd5d86fe);
var popup_21b81ac3c1da54feaff2a3ec818e2c34 = L.popup({"maxWidth": 700});
var html_3c90d3ba7561009c6dda73dabe93d4d2 = $(`<div id="html_3c90d3ba7561009c6dda73dabe93d4d2" style="width: 100.0%; height: 100.0%;"> Index: 30 <br> Name: Moody Gardens Restaurant (shown under other restaurant) <br> Address: 1 Hope Boulevard, Galveston <br> Dropoff (weekly): 1 <br> Pickup (daily): 1 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_21b81ac3c1da54feaff2a3ec818e2c34.setContent(html_3c90d3ba7561009c6dda73dabe93d4d2);
marker_0c75494ad10ca28332afafb683bb80bb.bindPopup(popup_21b81ac3c1da54feaff2a3ec818e2c34)
;
var marker_656fdea50cc367bd9c0d50f13d03f52b = L.marker(
[29.27548471, -94.85260158],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_7c828798fcfa48fb7fc6073175da7e6c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_656fdea50cc367bd9c0d50f13d03f52b.setIcon(icon_7c828798fcfa48fb7fc6073175da7e6c);
var popup_c20f91069f7c238a412a72e23f2da621 = L.popup({"maxWidth": 700});
var html_65c4bc33116c1d17d305b5e0c08d9507 = $(`<div id="html_65c4bc33116c1d17d305b5e0c08d9507" style="width: 100.0%; height: 100.0%;"> Index: 31 <br> Name: Rainforest Pyramid <br> Address: 1 Hope Blvd Galveston, TX 77554 <br> Dropoff (weekly): 1 <br> Pickup (daily): 2 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_c20f91069f7c238a412a72e23f2da621.setContent(html_65c4bc33116c1d17d305b5e0c08d9507);
marker_656fdea50cc367bd9c0d50f13d03f52b.bindPopup(popup_c20f91069f7c238a412a72e23f2da621)
;
var marker_00e1d0de581a545ceca2c39fc8f4e795 = L.marker(
[29.2736, -94.8523],
{"parseHtml": true}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var icon_039adea1f489402d7590a887da655170 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_00e1d0de581a545ceca2c39fc8f4e795.setIcon(icon_039adea1f489402d7590a887da655170);
var popup_cb34339e0d320c729afbbc21bcde6b22 = L.popup({"maxWidth": 700});
var html_2978c84f82292efa4f4a55b90bbec23b = $(`<div id="html_2978c84f82292efa4f4a55b90bbec23b" style="width: 100.0%; height: 100.0%;"> Index: 32 <br> Name: Moody Gardens <br> Address: nan <br> Dropoff (weekly): 0 <br> Pickup (daily): 0 <br> Pickup Type: Truck <br> Aggregation Point: nan </div>`)[0];
popup_cb34339e0d320c729afbbc21bcde6b22.setContent(html_2978c84f82292efa4f4a55b90bbec23b);
marker_00e1d0de581a545ceca2c39fc8f4e795.bindPopup(popup_cb34339e0d320c729afbbc21bcde6b22)
;
var poly_line_3982d7bc8800eb8bd22a5f29bca9b65f = L.polyline(
[[29.2729458, -94.8525404], [29.2731292, -94.8530483], [29.273196, -94.8534162], [29.2730767, -94.8540655], [29.2729886, -94.8540328], [29.2729886, -94.8540328], [29.2730867, -94.8534263], [29.2729951, -94.8531041], [29.2728136, -94.8526023], [29.2722523, -94.8528717], [29.2717708, -94.8531007], [29.271458, -94.853123], [29.2698975, -94.8525948], [29.2698975, -94.8525948], [29.268377, -94.851791], [29.2672627, -94.8511979], [29.2650773, -94.8500493], [29.2646632, -94.8510434], [29.2642555, -94.8520364], [29.261966, -94.850816], [29.2598512, -94.8496964], [29.2585469, -94.8489748], [29.2567653, -94.8480554], [29.256483, -94.848741], [29.2562558, -94.8492675], [29.255929, -94.850085], [29.2557108, -94.8506215], [29.2553355, -94.8515444], [29.2551145, -94.8520879], [29.2542803, -94.8541392], [29.2542803, -94.8541392], [29.2515357, -94.8526589], [29.2515357, -94.8526589], [29.2515357, -94.8526589], [29.2515357, -94.8526589], [29.2463019, -94.8614822], [29.2453788, -94.8633368], [29.2451766, -94.8637847], [29.2438799, -94.8681271], [29.2442474, -94.8683009], [29.2443997, -94.8683837], [29.2443997, -94.8683837], [29.2443997, -94.8683837], [29.2443567, -94.868493], [29.2441999, -94.868407], [29.2438618, -94.8682307], [29.2433895, -94.8703675], [29.2426207, -94.8724873], [29.241524, -94.8752], [29.241302, -94.875743], [29.241038, -94.876392], [29.240565, -94.877547], [29.240565, -94.877547], [29.240161, -94.878549], [29.239414, -94.880381], [29.238718, -94.88209], [29.237798, -94.884349], [29.234787, -94.890481], [29.2333699, -94.8922629], [29.230698, -94.89492], [29.229285, -94.896314], [29.228623, -94.896966], [29.225875, -94.899893], [29.223473, -94.903971], [29.222488, -94.90598], [29.220201, -94.910647], [29.217728, -94.915695], [29.214228, -94.922847], [29.21193, -94.928076], [29.2083188, -94.9368357], [29.2082415, -94.937018], [29.2082415, -94.937018], [29.2082415, -94.937018], [29.207784, -94.938139], [29.2049992, -94.9433688], [29.2041906, -94.9442456], [29.203664, -94.944798], [29.203076, -94.9454498], [29.2025202, -94.9460339], [29.200101, -94.948919], [29.199024, -94.950673], [29.198057, -94.952301], [29.195886, -94.955948], [29.191411, -94.963412], [29.184752, -94.969805], [29.1843395, -94.9704793], [29.1829765, -94.9727655], [29.1809, -94.9762594], [29.1796617, -94.9783457], [29.1765042, -94.9836272], [29.174081, -94.987531], [29.172588, -94.990006], [29.1692931, -94.9953812], [29.166103, -95.0005883], [29.1633421, -95.005134], [29.1632671, -95.0052566], [29.1616931, -95.0078556], [29.1570062, -95.015457], [29.1569514, -95.0155511], [29.1555346, -95.017822], [29.1554743, -95.0179166], [29.1492903, -95.0278435], [29.149225, -95.0279468], [29.1478612, -95.0300926], [29.1456078, -95.0335485], [29.1450145, -95.0344878], [29.1438859, -95.03622], [29.1417637, -95.0395253], [29.1413967, -95.04009], [29.1413967, -95.04009], [29.142044, -95.04058], [29.14421, -95.04227], [29.1438055, -95.0429385], [29.1434042, -95.0436018], [29.1429955, -95.0442774], [29.142589, -95.044949], [29.143125, -95.045378], [29.1427227, -95.0460433], [29.143408, -95.0465837], [29.143417, -95.047532], [29.143001, -95.0482212], [29.1425952, -95.0488933], [29.1421921, -95.0495611], [29.1417944, -95.0502198], [29.1425667, -95.0508253], [29.1433418, -95.051433], [29.145805, -95.047345], [29.145805, -95.047345], [29.145805, -95.047345], [29.1433418, -95.051433], [29.1425667, -95.0508253], [29.1417944, -95.0502198], [29.1421921, -95.0495611], [29.1425952, -95.0488933], [29.143001, -95.0482212], [29.143417, -95.047532], [29.143408, -95.0465837], [29.1427227, -95.0460433], [29.143125, -95.045378], [29.142589, -95.044949], [29.1429955, -95.0442774], [29.1434042, -95.0436018], [29.1438055, -95.0429385], [29.14421, -95.04227], [29.142044, -95.04058], [29.1413967, -95.04009], [29.1417637, -95.0395253], [29.1438859, -95.03622], [29.1450145, -95.0344878], [29.1456078, -95.0335485], [29.1478612, -95.0300926], [29.149225, -95.0279468], [29.1492903, -95.0278435], [29.1554743, -95.0179166], [29.1555346, -95.017822], [29.1569514, -95.0155511], [29.1570062, -95.015457], [29.1616931, -95.0078556], [29.1632671, -95.0052566], [29.1633421, -95.005134], [29.166103, -95.0005883], [29.1692931, -94.9953812], [29.172588, -94.990006], [29.174081, -94.987531], [29.1765042, -94.9836272], [29.1759331, -94.9831803], [29.174389, -94.98568], [29.174389, -94.98568], [29.1759331, -94.9831803], [29.1765042, -94.9836272], [29.1796617, -94.9783457], [29.1809, -94.9762594], [29.1829765, -94.9727655], [29.1843395, -94.9704793], [29.184752, -94.969805], [29.19119, -94.963241], [29.195671, -94.955784], [29.197835, -94.952148], [29.198779, -94.950551], [29.199024, -94.950673], [29.203591, -94.953029], [29.2065647, -94.9502879], [29.2065647, -94.9502879], [29.2076125, -94.9478603], [29.2076407, -94.9477869], [29.2077686, -94.9474719], [29.2078114, -94.9473784], [29.208105, -94.946712], [29.2110499, -94.9398008], [29.2118989, -94.9378845], [29.211965, -94.937741], [29.212274, -94.93703], [29.2123175, -94.9369259], [29.2125313, -94.9364023], [29.212882, -94.9355258], [29.213799, -94.933299], [29.21386, -94.933153], [29.214281, -94.932103], [29.2152203, -94.9298498], [29.215434, -94.929425], [29.21549, -94.929319], [29.2192011, -94.9238618], [29.222255, -94.918113], [29.224322, -94.915664], [29.227551, -94.90937], [29.228913, -94.906966], [29.229357, -94.906238], [29.233003, -94.900144], [29.240939, -94.886319], [29.241024, -94.886048], [29.2422814, -94.8829017], [29.2427914, -94.8815949], [29.243354, -94.880237], [29.243754, -94.879222], [29.2441478, -94.8782189], [29.244957, -94.876194], [29.2459306, -94.8744911], [29.2510598, -94.8709999], [29.252455, -94.8673972], [29.2526301, -94.866881], [29.2529016, -94.8656662], [29.2555317, -94.8670658], [29.2560854, -94.8673548], [29.256575, -94.867612], [29.256774, -94.867718], [29.2615898, -94.8696849], [29.2616868, -94.8697363], [29.2613956, -94.8704444], [29.2613151, -94.870401], [29.2613151, -94.870401], [29.2613151, -94.870401], [29.2615898, -94.8696849], [29.256774, -94.867718], [29.256575, -94.867612], [29.2560854, -94.8673548], [29.2555317, -94.8670658], [29.2529016, -94.8656662], [29.2542803, -94.8541392], [29.2542803, -94.8541392], [29.2551145, -94.8520879], [29.2553355, -94.8515444], [29.2557108, -94.8506215], [29.255929, -94.850085], [29.2562558, -94.8492675], [29.256483, -94.848741], [29.2567653, -94.8480554], [29.2575814, -94.8460513], [29.2581483, -94.8446644], [29.258405, -94.8440284], [29.258452, -94.843915], [29.2592437, -94.8420052], [29.2592437, -94.8420052], [29.259962, -94.840415], [29.2601956, -94.8400703], [29.259296, -94.8395824], [29.2624321, -94.8338371], [29.2642774, -94.830388], [29.2643387, -94.830274], [29.2664117, -94.8316138], [29.2667389, -94.8316867], [29.2675314, -94.831605], [29.268335, -94.8310739], [29.2686539, -94.8305864], [29.268722, -94.8304391], [29.2692209, -94.8293037], [29.269334, -94.8290089], [29.2697173, -94.828083], [29.2698099, -94.827981], [29.2706208, -94.8284084], [29.2705713, -94.8285387], [29.2705713, -94.8285387], [29.2706208, -94.8284084], [29.2722906, -94.8291544], [29.2731611, -94.8295826], [29.2739982, -94.8300297], [29.2744482, -94.8302676], [29.2746741, -94.8305471], [29.2746741, -94.8305471], [29.2739436, -94.8301576], [29.2739982, -94.8300297], [29.2744482, -94.8302676], [29.2755853, -94.8310747], [29.2755146, -94.8311937], [29.2749489, -94.8324707], [29.2749489, -94.8324707], [29.2755146, -94.8311937], [29.2755853, -94.8310747], [29.2755853, -94.8310747], [29.2764117, -94.8315185], [29.2772067, -94.8319386], [29.2772067, -94.8319386], [29.2772067, -94.8319386], [29.2771676, -94.8320762], [29.2763915, -94.8316562], [29.2755146, -94.8311937], [29.2749489, -94.8324707], [29.2749489, -94.8324707], [29.2747243, -94.8330099], [29.274495, -94.8335624], [29.2741136, -94.8344958], [29.2738825, -94.8350484], [29.2730636, -94.837054], [29.2728043, -94.8376667], [29.2724978, -94.838403], [29.2722214, -94.8390776], [29.272, -94.839617], [29.271747, -94.8402238], [29.271389, -94.841094], [29.270993, -94.842051], [29.2706171, -94.8429637], [29.27056, -94.843101], [29.2703023, -94.8437308], [29.2697304, -94.8451237], [29.2684436, -94.8480902], [29.2696592, -94.8486978], [29.2723067, -94.8489687], [29.2722564, -94.8492771], [29.2722463, -94.8497443], [29.272081, -94.8499866], [29.272081, -94.8499866], [29.2719744, -94.8501158], [29.2718639, -94.8502311], [29.2717272, -94.8500974], [29.2716991, -94.8498996], [29.2717592, -94.8496982], [29.2722564, -94.8492771], [29.2723067, -94.8489687], [29.2748783, -94.8514555], [29.2749472, -94.851467], [29.2750025, -94.8515651], [29.2750025, -94.8515651], [29.2750025, -94.8515651], [29.2749088, -94.8516912], [29.2749088, -94.8516912], [29.2748783, -94.8514555], [29.2723067, -94.8489687], [29.2722564, -94.8492771], [29.2722463, -94.8497443], [29.272081, -94.8499866], [29.2719744, -94.8501158], [29.2729117, -94.8524486], [29.2729458, -94.8525404]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_f8a87c8a8df0f3ed4c9fe0a565e740ef = L.circleMarker(
[29.2729458, -94.8525404],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_d06e1cd9000e7ad76debf089c5683ded = L.circleMarker(
[29.2731292, -94.8530483],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_27b0ff5aff339f9181e182f00f04ab7d = L.circleMarker(
[29.273196, -94.8534162],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_9b4809c4bde60e792d021a780f423085 = L.circleMarker(
[29.2730767, -94.8540655],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_d09d49c047f634a74682759321ba9d79 = L.circleMarker(
[29.2729886, -94.8540328],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);
var circle_marker_c10abba76bba11759789363f255eebbb = L.circleMarker(
[29.2729886, -94.8540328],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 5}
).addTo(map_59b4214ed765bcede4cebf0a5683a044);