forked from code-for-chapel-hill/NC-COVID-Support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
5433 lines (3215 loc) · 262 KB
/
index.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
<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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.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://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>#map_a69ee0cc576d47bdbecf4542a5b4e37b {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_a69ee0cc576d47bdbecf4542a5b4e37b" ></div>
</body>
<script>
var bounds = null;
var map_a69ee0cc576d47bdbecf4542a5b4e37b = L.map(
'map_a69ee0cc576d47bdbecf4542a5b4e37b', {
center: [35.94294638853502, -79.05539233757959],
zoom: 11,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_04df537fc9aa4f028386adf428ba3b07 = L.tileLayer(
'https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_a69ee0cc576d47bdbecf4542a5b4e37b);
var feature_group_d87765e3b743455f9bebce80c6b8f46e = L.featureGroup(
).addTo(map_a69ee0cc576d47bdbecf4542a5b4e37b);
var marker_1b30387179f2497488e8cacef8f4c34b = L.marker(
[35.824298, -78.90337099999999],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_a6bf17c8e4e5432f9ee8db3aa0ae77f1 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1b30387179f2497488e8cacef8f4c34b.setIcon(icon_a6bf17c8e4e5432f9ee8db3aa0ae77f1);
var popup_7cfc46bbb5a842cb8cb1f64e1054361b = L.popup({maxWidth: '100%'
});
var html_928e80f01e3845ffb414db4786d3c465 = $(`<div id="html_928e80f01e3845ffb414db4786d3c465" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.publix.com/?utm_medium=organic&utm_source=google&utm_term=google_my_business">Publix</a><br><strong>Address: </strong>425 Emissary Dr, Cary<br><strong>Notes: </strong>Special hours for seniors 65 and older from 7-8am Tuesdays and Wednesdays<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.publix.com/?utm_medium=organic&utm_source=google&utm_term=google_my_business">https://www.publix.com/?utm_medium=organic&utm_source=google&utm_term=google_my_business</a></div>`)[0];
popup_7cfc46bbb5a842cb8cb1f64e1054361b.setContent(html_928e80f01e3845ffb414db4786d3c465);
marker_1b30387179f2497488e8cacef8f4c34b.bindPopup(popup_7cfc46bbb5a842cb8cb1f64e1054361b)
;
var marker_52ebc78233b44a2e8777ba828e20aa16 = L.marker(
[35.830816, -79.086743],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_d9ad62c0b29949ceaac24883b5f6e985 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_52ebc78233b44a2e8777ba828e20aa16.setIcon(icon_d9ad62c0b29949ceaac24883b5f6e985);
var popup_cd0ea7b701cf46bb97338eee508535a3 = L.popup({maxWidth: '100%'
});
var html_0b635b69e02342ef948f1fb9b3379787 = $(`<div id="html_0b635b69e02342ef948f1fb9b3379787" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Harris Teeter</a><br><strong>Address: </strong>88 Chatham Downs Dr, Chapel Hill<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_cd0ea7b701cf46bb97338eee508535a3.setContent(html_0b635b69e02342ef948f1fb9b3379787);
marker_52ebc78233b44a2e8777ba828e20aa16.bindPopup(popup_cd0ea7b701cf46bb97338eee508535a3)
;
var marker_9ea00cb305c0438b8adaaffd9b48bb7c = L.marker(
[35.905477000000005, -79.09007700000001],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_aa01f00f6ac04e9a8a9df143b70fedaf = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_9ea00cb305c0438b8adaaffd9b48bb7c.setIcon(icon_aa01f00f6ac04e9a8a9df143b70fedaf);
var popup_c89b685bb22942bca52d0e9b8aeafb54 = L.popup({maxWidth: '100%'
});
var html_286ab7169f204fdea0cdb535f9242228 = $(`<div id="html_286ab7169f204fdea0cdb535f9242228" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Harris Teeter</a><br><strong>Address: </strong>310 N Greensboro St, Carrboro<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_c89b685bb22942bca52d0e9b8aeafb54.setContent(html_286ab7169f204fdea0cdb535f9242228);
marker_9ea00cb305c0438b8adaaffd9b48bb7c.bindPopup(popup_c89b685bb22942bca52d0e9b8aeafb54)
;
var marker_04596291d2e943658ca49b4e1dcf7906 = L.marker(
[35.906309, -79.010499],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_de09ec7534a2439385ced16023c9dda8 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_04596291d2e943658ca49b4e1dcf7906.setIcon(icon_de09ec7534a2439385ced16023c9dda8);
var popup_a0db8f18cc014f0281e7f5312a528664 = L.popup({maxWidth: '100%'
});
var html_47ac0263d8d3447d9fdcd7e2166264f4 = $(`<div id="html_47ac0263d8d3447d9fdcd7e2166264f4" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Harris Teeter</a><br><strong>Address: </strong>116 W Barbee Chapel Rd, Chapel Hill<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_a0db8f18cc014f0281e7f5312a528664.setContent(html_47ac0263d8d3447d9fdcd7e2166264f4);
marker_04596291d2e943658ca49b4e1dcf7906.bindPopup(popup_a0db8f18cc014f0281e7f5312a528664)
;
var marker_447538c135e04a2fbe8f14ac229ee9f0 = L.marker(
[35.90675, -79.089586],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_0ee1109fe316463f888906d50cf692e4 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_447538c135e04a2fbe8f14ac229ee9f0.setIcon(icon_0ee1109fe316463f888906d50cf692e4);
var popup_985e11169fd04640b88b985c737c26b5 = L.popup({maxWidth: '100%'
});
var html_f8e7540139f54f55a3b55bc0eea597b8 = $(`<div id="html_f8e7540139f54f55a3b55bc0eea597b8" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.foodlion.com/stores/nc/carrboro/142/">Food Lion</a><br><strong>Address: </strong>602 Jones Ferry Rd Unit A, Carrboro<br><strong>Notes: </strong>Order on the website or mobile app to pick up groceries at the store or have them delivered to you<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.foodlion.com/stores/nc/carrboro/142/">https://www.foodlion.com/stores/nc/carrboro/142/</a></div>`)[0];
popup_985e11169fd04640b88b985c737c26b5.setContent(html_f8e7540139f54f55a3b55bc0eea597b8);
marker_447538c135e04a2fbe8f14ac229ee9f0.bindPopup(popup_985e11169fd04640b88b985c737c26b5)
;
var marker_d6a74287671e45c9842b96e57ab979e3 = L.marker(
[35.907965999999995, -79.02595699999999],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_cba0618f3a66455f9ff0cdece30e07c9 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d6a74287671e45c9842b96e57ab979e3.setIcon(icon_cba0618f3a66455f9ff0cdece30e07c9);
var popup_81299b956f1648c799eafaa953179a27 = L.popup({maxWidth: '100%'
});
var html_6a424e0e9b51499e942cfa5050ae5608 = $(`<div id="html_6a424e0e9b51499e942cfa5050ae5608" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Fresh Market</a><br><strong>Address: </strong>1200A Raleigh Rd, Chapel Hill<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_81299b956f1648c799eafaa953179a27.setContent(html_6a424e0e9b51499e942cfa5050ae5608);
marker_d6a74287671e45c9842b96e57ab979e3.bindPopup(popup_81299b956f1648c799eafaa953179a27)
;
var marker_9349dc2eb27343048f2bc17c2b46e413 = L.marker(
[35.911204, -79.071107],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_c8b7a724a0254950a86945a0299dfa6e = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_9349dc2eb27343048f2bc17c2b46e413.setIcon(icon_c8b7a724a0254950a86945a0299dfa6e);
var popup_a55532dad9964ab59da2dc552e760d92 = L.popup({maxWidth: '100%'
});
var html_a01da29cef52442da19fab79f01efce6 = $(`<div id="html_a01da29cef52442da19fab79f01efce6" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.weaverstreetmarket.coop/location/carrboro/">Weaver Street Market</a><br><strong>Address: </strong>101 East Weaver St, Carrboro<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.weaverstreetmarket.coop/location/carrboro/">https://www.weaverstreetmarket.coop/location/carrboro/</a></div>`)[0];
popup_a55532dad9964ab59da2dc552e760d92.setContent(html_a01da29cef52442da19fab79f01efce6);
marker_9349dc2eb27343048f2bc17c2b46e413.bindPopup(popup_a55532dad9964ab59da2dc552e760d92)
;
var marker_eee73c5333f2483abd20a6ed30952271 = L.marker(
[35.916595, -79.094544],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_6422971d7e1d423bb18eea3d1b9640e8 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_eee73c5333f2483abd20a6ed30952271.setIcon(icon_6422971d7e1d423bb18eea3d1b9640e8);
var popup_3bc271d7a43b4c6e9fb82c8acf9c6aa6 = L.popup({maxWidth: '100%'
});
var html_61c7e970648c4ea788e2b6755dd68d68 = $(`<div id="html_61c7e970648c4ea788e2b6755dd68d68" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.foodlion.com/stores/nc/carrboro/1544/?utm_source=Yext&utm_medium=Organic&utm_campaign=Website">Food Lion</a><br><strong>Address: </strong>104 US Hwy 54 Unit A, Carrboro<br><strong>Notes: </strong>Order on the website or mobile app to pick up groceries at the store or have them delivered to you<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.foodlion.com/stores/nc/carrboro/1544/?utm_source=Yext&utm_medium=Organic&utm_campaign=Website">https://www.foodlion.com/stores/nc/carrboro/1544/?utm_source=Yext&utm_medium=Organic&utm_campaign=Website</a></div>`)[0];
popup_3bc271d7a43b4c6e9fb82c8acf9c6aa6.setContent(html_61c7e970648c4ea788e2b6755dd68d68);
marker_eee73c5333f2483abd20a6ed30952271.bindPopup(popup_3bc271d7a43b4c6e9fb82c8acf9c6aa6)
;
var marker_1f970b1db0da4fdbbdb89bb02907005b = L.marker(
[35.929295, -79.026556],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_3a2c2893c76741ff985ba617aa2ab053 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1f970b1db0da4fdbbdb89bb02907005b.setIcon(icon_3a2c2893c76741ff985ba617aa2ab053);
var popup_1d77f4e8f76f4405bd8414a0385baf03 = L.popup({maxWidth: '100%'
});
var html_4f5f6d6c50884ff0bf13ce9297cf316b = $(`<div id="html_4f5f6d6c50884ff0bf13ce9297cf316b" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Harris Teeter</a><br><strong>Address: </strong>2110 S Estes Dr, Chapel Hill<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_1d77f4e8f76f4405bd8414a0385baf03.setContent(html_4f5f6d6c50884ff0bf13ce9297cf316b);
marker_1f970b1db0da4fdbbdb89bb02907005b.bindPopup(popup_1d77f4e8f76f4405bd8414a0385baf03)
;
var marker_6d609033cda14cfeb9c3b3af5b0ec5d4 = L.marker(
[35.934686, -79.028097],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_3eaf852dabad4294b45d7dd6e133d6be = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6d609033cda14cfeb9c3b3af5b0ec5d4.setIcon(icon_3eaf852dabad4294b45d7dd6e133d6be);
var popup_92668abe8dfd44e4b12b64eaad2e0ef4 = L.popup({maxWidth: '100%'
});
var html_b633b564ab8f48589777cd3f62382c83 = $(`<div id="html_b633b564ab8f48589777cd3f62382c83" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.wholefoodsmarket.com/stores/chapelhill">Whole Foods</a><br><strong>Address: </strong>81 S Elliot Rd, Chapel Hill<br><strong>Notes: </strong>Customers 60 and older can start to shop an hour earlier the general public (7am)<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.wholefoodsmarket.com/stores/chapelhill">https://www.wholefoodsmarket.com/stores/chapelhill</a></div>`)[0];
popup_92668abe8dfd44e4b12b64eaad2e0ef4.setContent(html_b633b564ab8f48589777cd3f62382c83);
marker_6d609033cda14cfeb9c3b3af5b0ec5d4.bindPopup(popup_92668abe8dfd44e4b12b64eaad2e0ef4)
;
var marker_95649d53b699423bbab5418295e7f885 = L.marker(
[35.937426, -79.022891],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_3481a416a5d44e488f136c78ee479d74 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_95649d53b699423bbab5418295e7f885.setIcon(icon_3481a416a5d44e488f136c78ee479d74);
var popup_a98a64eb33284f7aa6b8960d4cd7bbed = L.popup({maxWidth: '100%'
});
var html_aa5813ee33094889bfb5efd5244d81cf = $(`<div id="html_aa5813ee33094889bfb5efd5244d81cf" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.foodlion.com/stores/nc/chapel_hill/1480/">Food Lion</a><br><strong>Address: </strong>1720 Fordham Blvd, Chapel Hill<br><strong>Notes: </strong>Order on the website or mobile app to pick up groceries at the store or have them delivered to you<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.foodlion.com/stores/nc/chapel_hill/1480/">https://www.foodlion.com/stores/nc/chapel_hill/1480/</a></div>`)[0];
popup_a98a64eb33284f7aa6b8960d4cd7bbed.setContent(html_aa5813ee33094889bfb5efd5244d81cf);
marker_95649d53b699423bbab5418295e7f885.bindPopup(popup_a98a64eb33284f7aa6b8960d4cd7bbed)
;
var marker_29c37ed891cc4c049ebcab1ca20da772 = L.marker(
[35.963181, -79.054147],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_6a7164ad61444e8ea9010693f5123fcc = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_29c37ed891cc4c049ebcab1ca20da772.setIcon(icon_6a7164ad61444e8ea9010693f5123fcc);
var popup_6cff26a8da0e479091683aca9d3205b1 = L.popup({maxWidth: '100%'
});
var html_9aaea1892fcc4ba2b93ce3c131bff49d = $(`<div id="html_9aaea1892fcc4ba2b93ce3c131bff49d" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="https://www.foodlion.com/stores/nc/chapel_hill/197/">Food Lion</a><br><strong>Address: </strong>1129 Weaver Dairy Rd, Chapel Hill<br><strong>Notes: </strong>Order on the website or mobile app to pick up groceries at the store or have them delivered to you<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.foodlion.com/stores/nc/chapel_hill/197/">https://www.foodlion.com/stores/nc/chapel_hill/197/</a></div>`)[0];
popup_6cff26a8da0e479091683aca9d3205b1.setContent(html_9aaea1892fcc4ba2b93ce3c131bff49d);
marker_29c37ed891cc4c049ebcab1ca20da772.bindPopup(popup_6cff26a8da0e479091683aca9d3205b1)
;
var marker_2cd84655ba57467c9d30435e399e5574 = L.marker(
[35.967255, -79.05806700000001],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_7e9c4aad8d534320a298645c0f4dc8ef = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2cd84655ba57467c9d30435e399e5574.setIcon(icon_7e9c4aad8d534320a298645c0f4dc8ef);
var popup_cddfff77ee2b40f18fbb2694e9b268f7 = L.popup({maxWidth: '100%'
});
var html_edfe9ae78207447390d950f8872c84ae = $(`<div id="html_edfe9ae78207447390d950f8872c84ae" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">Harris Teeter</a><br><strong>Address: </strong>1800 M.L.K. Jr Blvd, Chapel Hill<br><strong>Notes: </strong><br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_cddfff77ee2b40f18fbb2694e9b268f7.setContent(html_edfe9ae78207447390d950f8872c84ae);
marker_2cd84655ba57467c9d30435e399e5574.bindPopup(popup_cddfff77ee2b40f18fbb2694e9b268f7)
;
var marker_fbbcd052ed974b56b5b2f5a60a3fbe96 = L.marker(
[35.993157000000004, -79.072294],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_ffde2aa55f5140fabe7812ccfbe508b0 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_fbbcd052ed974b56b5b2f5a60a3fbe96.setIcon(icon_ffde2aa55f5140fabe7812ccfbe508b0);
var popup_ab307bf88e8a463e829be07ba6c2b706 = L.popup({maxWidth: '100%'
});
var html_351c4235347a4394bd5680bb28a9ba4a = $(`<div id="html_351c4235347a4394bd5680bb28a9ba4a" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="">New Hope Market</a><br><strong>Address: </strong>6117 N.C. Hwy 86 South, Chapel Hill<br><strong>Notes: </strong>We will bring your order out to you when you call ahead!<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_ab307bf88e8a463e829be07ba6c2b706.setContent(html_351c4235347a4394bd5680bb28a9ba4a);
marker_fbbcd052ed974b56b5b2f5a60a3fbe96.bindPopup(popup_ab307bf88e8a463e829be07ba6c2b706)
;
var marker_68bd0bfeec1b4489b8262f484d2ef8b7 = L.marker(
[35.996489000000004, -78.91679599999999],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_d87765e3b743455f9bebce80c6b8f46e);
var icon_2a70ecbacf91400390f1aa9935026e44 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_68bd0bfeec1b4489b8262f484d2ef8b7.setIcon(icon_2a70ecbacf91400390f1aa9935026e44);
var popup_caee1463824e46419a0f1c2fd1b1547b = L.popup({maxWidth: '100%'
});
var html_c7d0f68cdd774d9d9de51f238f2baec0 = $(`<div id="html_c7d0f68cdd774d9d9de51f238f2baec0" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Grocery<br><strong>Location: </strong><a href="http://durham.coop/">Durham Co-Op</a><br><strong>Address: </strong>1111 W Chapel Hill St, Durham<br><strong>Notes: </strong>Senior/At-risk shopping Tuesdays, Fridays, and Sundays from 10-11am<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="http://durham.coop/">http://durham.coop/</a></div>`)[0];
popup_caee1463824e46419a0f1c2fd1b1547b.setContent(html_c7d0f68cdd774d9d9de51f238f2baec0);
marker_68bd0bfeec1b4489b8262f484d2ef8b7.bindPopup(popup_caee1463824e46419a0f1c2fd1b1547b)
;
var feature_group_4e1e96c3612445f09e19b6e04592f21d = L.featureGroup(
).addTo(map_a69ee0cc576d47bdbecf4542a5b4e37b);
var marker_8761bb8052e84a0993c7e973a96017ea = L.marker(
[35.710539000000004, -79.156318],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_ecf057f8cc1d407da2f878d5d22de0dc = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8761bb8052e84a0993c7e973a96017ea.setIcon(icon_ecf057f8cc1d407da2f878d5d22de0dc);
var popup_26be344d81c54bd897b61ec142ef93fd = L.popup({maxWidth: '100%'
});
var html_98f2d35d24064271a847cbc4f618a317 = $(`<div id="html_98f2d35d24064271a847cbc4f618a317" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://www.copelandspringsfarm.com/copy-of-the-kitchen">Copeland Springs Farm</a><br><strong>Address: </strong>193b Lorax Ln, Pittsboro<br><strong>Notes: </strong>Fresh/Casual<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.copelandspringsfarm.com/copy-of-the-kitchen">https://www.copelandspringsfarm.com/copy-of-the-kitchen</a></div>`)[0];
popup_26be344d81c54bd897b61ec142ef93fd.setContent(html_98f2d35d24064271a847cbc4f618a317);
marker_8761bb8052e84a0993c7e973a96017ea.bindPopup(popup_26be344d81c54bd897b61ec142ef93fd)
;
var marker_b7e28ab52af64dc48457e8eb3980018e = L.marker(
[35.720029, -79.177975],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_7951c3cbb20840d7b8e4baf88aa6f414 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b7e28ab52af64dc48457e8eb3980018e.setIcon(icon_7951c3cbb20840d7b8e4baf88aa6f414);
var popup_b15fac1efe62406d9d3506b139aa8444 = L.popup({maxWidth: '100%'
});
var html_4432bd7268ac4821aac56556433c798c = $(`<div id="html_4432bd7268ac4821aac56556433c798c" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://pittsbororoadhouse.com">Pittsboro Roadhouse</a><br><strong>Address: </strong>39 West St, Pittsboro<br><strong>Notes: </strong>Casual American Cuisine<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://pittsbororoadhouse.com">https://pittsbororoadhouse.com</a></div>`)[0];
popup_b15fac1efe62406d9d3506b139aa8444.setContent(html_4432bd7268ac4821aac56556433c798c);
marker_b7e28ab52af64dc48457e8eb3980018e.bindPopup(popup_b15fac1efe62406d9d3506b139aa8444)
;
var marker_de47fef5a3ed43afacc8a15a414d308d = L.marker(
[35.720523, -79.173546],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_a666bf5591dc40248607a9f35b6cce45 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_de47fef5a3ed43afacc8a15a414d308d.setIcon(icon_a666bf5591dc40248607a9f35b6cce45);
var popup_e540edabdc044a259f818301fad38c81 = L.popup({maxWidth: '100%'
});
var html_bcca455b5dc24904bfce9daed3715721 = $(`<div id="html_bcca455b5dc24904bfce9daed3715721" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="http://smallbandbcafe.com/cafe-menu.html">Small B&B Cafe</a><br><strong>Address: </strong>219 East St, Pittsboro<br><strong>Notes: </strong>Casual/Farm-to-table<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="http://smallbandbcafe.com/cafe-menu.html">http://smallbandbcafe.com/cafe-menu.html</a></div>`)[0];
popup_e540edabdc044a259f818301fad38c81.setContent(html_bcca455b5dc24904bfce9daed3715721);
marker_de47fef5a3ed43afacc8a15a414d308d.bindPopup(popup_e540edabdc044a259f818301fad38c81)
;
var marker_ac40ba90e56f48bb817843874e5c2161 = L.marker(
[35.720669, -79.181248],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_2f1fec93ecc547c9b339150c4f699ee2 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_ac40ba90e56f48bb817843874e5c2161.setIcon(icon_2f1fec93ecc547c9b339150c4f699ee2);
var popup_2a5be077923c405cb24d3f77b99d44bb = L.popup({maxWidth: '100%'
});
var html_0f6e099c28294e15b9ac3468e5b52068 = $(`<div id="html_0f6e099c28294e15b9ac3468e5b52068" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="http://www.angelinaskitchenonline.com">Angelina's Kitchen</a><br><strong>Address: </strong>23 Rectory St, Pittsboro<br><strong>Notes: </strong>Greek/Southwestern/Farm-to-Table<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="http://www.angelinaskitchenonline.com">http://www.angelinaskitchenonline.com</a></div>`)[0];
popup_2a5be077923c405cb24d3f77b99d44bb.setContent(html_0f6e099c28294e15b9ac3468e5b52068);
marker_ac40ba90e56f48bb817843874e5c2161.bindPopup(popup_2a5be077923c405cb24d3f77b99d44bb)
;
var marker_139d5547d7f14481961d04739fa5e8c0 = L.marker(
[35.821395, -79.08660400000001],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_6e4dd0b7f90f4b95a8dc17c0587ab5ae = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_139d5547d7f14481961d04739fa5e8c0.setIcon(icon_6e4dd0b7f90f4b95a8dc17c0587ab5ae);
var popup_6820c64fa36c4d2199ea1f0118e97651 = L.popup({maxWidth: '100%'
});
var html_0a6d5560022a42739c988110b73ccef6 = $(`<div id="html_0a6d5560022a42739c988110b73ccef6" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="http://breakawaync.co">Breakaway Cafe</a><br><strong>Address: </strong>58 Chapelton Court Suite 100, Chapel Hill<br><strong>Notes: </strong>Fresh/Casual<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="http://breakawaync.co">http://breakawaync.co</a></div>`)[0];
popup_6820c64fa36c4d2199ea1f0118e97651.setContent(html_0a6d5560022a42739c988110b73ccef6);
marker_139d5547d7f14481961d04739fa5e8c0.bindPopup(popup_6820c64fa36c4d2199ea1f0118e97651)
;
var marker_4322ca7cf8c3432f9b109db38e50ef75 = L.marker(
[35.850295, -79.023205],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_135fce213c344f0ba2e7574e1d1e8303 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_4322ca7cf8c3432f9b109db38e50ef75.setIcon(icon_135fce213c344f0ba2e7574e1d1e8303);
var popup_f6b86c74a7544a10ac1a821c02031709 = L.popup({maxWidth: '100%'
});
var html_e213a37910bd4aab97b22684388ec20c = $(`<div id="html_e213a37910bd4aab97b22684388ec20c" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://www.jerseymikes.com/3182/chapel-hill-nc">Jersey Mikes</a><br><strong>Address: </strong>11312 US Hwy 15 501 N Suite 102, Chapel Hill<br><strong>Notes: </strong>Sandwiches<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.jerseymikes.com/3182/chapel-hill-nc">https://www.jerseymikes.com/3182/chapel-hill-nc</a></div>`)[0];
popup_f6b86c74a7544a10ac1a821c02031709.setContent(html_e213a37910bd4aab97b22684388ec20c);
marker_4322ca7cf8c3432f9b109db38e50ef75.bindPopup(popup_f6b86c74a7544a10ac1a821c02031709)
;
var marker_14b9117602cf4591b88b3d445cb820b8 = L.marker(
[35.852759999999996, -79.025036],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_08c9fc60476746218c6042e796e65684 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_14b9117602cf4591b88b3d445cb820b8.setIcon(icon_08c9fc60476746218c6042e796e65684);
var popup_8effcd72a9a843b1b127f1e5508e76c5 = L.popup({maxWidth: '100%'
});
var html_d9517428280f4409a0df960dabd50b1c = $(`<div id="html_d9517428280f4409a0df960dabd50b1c" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://www.alsburgershack.com">Al's Burgers</a><br><strong>Address: </strong>50050 Governors Dr, Chapel Hill<br><strong>Notes: </strong>Burgers<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.alsburgershack.com">https://www.alsburgershack.com</a></div>`)[0];
popup_8effcd72a9a843b1b127f1e5508e76c5.setContent(html_d9517428280f4409a0df960dabd50b1c);
marker_14b9117602cf4591b88b3d445cb820b8.bindPopup(popup_8effcd72a9a843b1b127f1e5508e76c5)
;
var marker_b0b2f092290d4a4b87859bd6aa214869 = L.marker(
[35.853712, -79.025269],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_0f259b98f00c4808b454398cc28dea0b = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b0b2f092290d4a4b87859bd6aa214869.setIcon(icon_0f259b98f00c4808b454398cc28dea0b);
var popup_e53e25c495c34cb4bea986243145b079 = L.popup({maxWidth: '100%'
});
var html_ca2ec458e8974a54ba9b173de47c7d35 = $(`<div id="html_ca2ec458e8974a54ba9b173de47c7d35" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="http://flairforfoodrestaurant.com">Flair Restaurant</a><br><strong>Address: </strong>50100 Governors Dr, Chapel Hill<br><strong>Notes: </strong>French-influenced American Cuisine - Drive thru service<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="http://flairforfoodrestaurant.com">http://flairforfoodrestaurant.com</a></div>`)[0];
popup_e53e25c495c34cb4bea986243145b079.setContent(html_ca2ec458e8974a54ba9b173de47c7d35);
marker_b0b2f092290d4a4b87859bd6aa214869.bindPopup(popup_e53e25c495c34cb4bea986243145b079)
;
var marker_d4d6b1b5a3194ee489659d2e193b8398 = L.marker(
[35.880577, -79.066224],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_d8bd04b6407841e29a16e5ccb0d0ddbf = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d4d6b1b5a3194ee489659d2e193b8398.setIcon(icon_d8bd04b6407841e29a16e5ccb0d0ddbf);
var popup_f7861094dbce4d01be4bdc8876b148ce = L.popup({maxWidth: '100%'
});
var html_c09e963b0fde4daea4c3ef1530452a22 = $(`<div id="html_c09e963b0fde4daea4c3ef1530452a22" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://www.alsburgershack.com">Al's Burgers</a><br><strong>Address: </strong>708 Market Street, Chapel Hill<br><strong>Notes: </strong>Burgers<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.alsburgershack.com">https://www.alsburgershack.com</a></div>`)[0];
popup_f7861094dbce4d01be4bdc8876b148ce.setContent(html_c09e963b0fde4daea4c3ef1530452a22);
marker_d4d6b1b5a3194ee489659d2e193b8398.bindPopup(popup_f7861094dbce4d01be4bdc8876b148ce)
;
var marker_38d2a63c5d9c49449939ede160cf48a2 = L.marker(
[35.882047, -79.065689],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_24f82379e9e84a4badeecc61118f486d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_38d2a63c5d9c49449939ede160cf48a2.setIcon(icon_24f82379e9e84a4badeecc61118f486d);
var popup_80444a48fbad46a1a8459c8b9167cdbc = L.popup({maxWidth: '100%'
});
var html_b428ec2e728d4e1ca70b351a12134bf7 = $(`<div id="html_b428ec2e728d4e1ca70b351a12134bf7" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://thetownhallgrill.com">Town Hall Grill Southern Village</a><br><strong>Address: </strong>410 Market St, Chapel Hill<br><strong>Notes: </strong>Casual<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://thetownhallgrill.com">https://thetownhallgrill.com</a></div>`)[0];
popup_80444a48fbad46a1a8459c8b9167cdbc.setContent(html_b428ec2e728d4e1ca70b351a12134bf7);
marker_38d2a63c5d9c49449939ede160cf48a2.bindPopup(popup_80444a48fbad46a1a8459c8b9167cdbc)
;
var marker_32e472d29ef64148b39229c5be8aac40 = L.marker(
[35.882047, -79.065689],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_2e395bc2ee0947a4b061e8deb204e1ad = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_32e472d29ef64148b39229c5be8aac40.setIcon(icon_2e395bc2ee0947a4b061e8deb204e1ad);
var popup_693e81bb7338427592449fee8e1e6b1e = L.popup({maxWidth: '100%'
});
var html_3deab3e768534d118d58d3d6b9aebe22 = $(`<div id="html_3deab3e768534d118d58d3d6b9aebe22" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="https://www.rasamalaysiach.com">Rasa Malaysia</a><br><strong>Address: </strong>410 Market St, Chapel Hill<br><strong>Notes: </strong>Asian<br><strong>Additional notes: </strong><br><strong>Free?: </strong>No<br><strong>Website: </strong><a href="https://www.rasamalaysiach.com">https://www.rasamalaysiach.com</a></div>`)[0];
popup_693e81bb7338427592449fee8e1e6b1e.setContent(html_3deab3e768534d118d58d3d6b9aebe22);
marker_32e472d29ef64148b39229c5be8aac40.bindPopup(popup_693e81bb7338427592449fee8e1e6b1e)
;
var marker_018e82d2cb6f4518ba6218bfa29b499b = L.marker(
[35.883019, -79.118525],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);
var icon_8db7b56c137840b6a8308a1f3ab2089d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_018e82d2cb6f4518ba6218bfa29b499b.setIcon(icon_8db7b56c137840b6a8308a1f3ab2089d);
var popup_23e2a03e1ede43519cd82bc07e81e03f = L.popup({maxWidth: '100%'
});
var html_f4aaec97c176439281f6e6ccf20da9a4 = $(`<div id="html_f4aaec97c176439281f6e6ccf20da9a4" style="width: 100.0%; height: 100.0%;"><strong>Site Type: </strong>Meal<br><strong>Location: </strong><a href="">Chapel Hill-Carrboro City Schools</a><br><strong>Address: </strong>2201 Ridgewood Rd, Chapel Hill<br><strong>Notes: </strong>Ridgewood Mobile Homes<br><strong>Additional notes: </strong>Look for the big yellow school bus!<br><strong>Free?: </strong>Yes<br><strong>Website: </strong><a href=""></a></div>`)[0];
popup_23e2a03e1ede43519cd82bc07e81e03f.setContent(html_f4aaec97c176439281f6e6ccf20da9a4);
marker_018e82d2cb6f4518ba6218bfa29b499b.bindPopup(popup_23e2a03e1ede43519cd82bc07e81e03f)
;
var marker_6979c0b8096b4a70bd1f0044e8cdf75e = L.marker(
[35.897976, -79.067737],
{
icon: new L.Icon.Default(),
}
).addTo(feature_group_4e1e96c3612445f09e19b6e04592f21d);