-
Notifications
You must be signed in to change notification settings - Fork 0
/
folium_map.html
10611 lines (4571 loc) · 492 KB
/
folium_map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_0a07fadd97aba810a9309d12778eb7fa {
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_0a07fadd97aba810a9309d12778eb7fa" ></div>
</body>
<script>
var map_0a07fadd97aba810a9309d12778eb7fa = L.map(
"map_0a07fadd97aba810a9309d12778eb7fa",
{
center: [40.682763952122244, -73.964516956325],
crs: L.CRS.EPSG3857,
zoom: 1,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_220b0b120decce86893dfa3a7faef94f = 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_0a07fadd97aba810a9309d12778eb7fa);
var marker_a659c6ceffea207b08b0978bd2aa1790 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_bb0b6df9088848b55ae27eef6eb4b0dc = L.popup({"maxWidth": 300});
var html_5b76e541bec0e8d5a5430ee1fbf9da78 = $(`<div id="html_5b76e541bec0e8d5a5430ee1fbf9da78" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_bb0b6df9088848b55ae27eef6eb4b0dc.setContent(html_5b76e541bec0e8d5a5430ee1fbf9da78);
marker_a659c6ceffea207b08b0978bd2aa1790.bindPopup(popup_bb0b6df9088848b55ae27eef6eb4b0dc)
;
var marker_c49abf2c70a5705b4c5d8019ba5a44bd = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_03a211cce0977c937a79819b4d63389f = L.popup({"maxWidth": 300});
var html_547307833c78d5085e950fccaea87bd4 = $(`<div id="html_547307833c78d5085e950fccaea87bd4" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_03a211cce0977c937a79819b4d63389f.setContent(html_547307833c78d5085e950fccaea87bd4);
marker_c49abf2c70a5705b4c5d8019ba5a44bd.bindPopup(popup_03a211cce0977c937a79819b4d63389f)
;
var marker_4866daf206beac39a40aa3c625919aaf = L.marker(
[40.701283129535, -73.914240341139],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_07e3a143adb5702fa0566b32b17607d8 = L.popup({"maxWidth": 300});
var html_fd53a438bbf1d9a49fbaaeb353e9e047 = $(`<div id="html_fd53a438bbf1d9a49fbaaeb353e9e047" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.701283129535, Longitude: -73.914240341139<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 259 WYCKOFF AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_07e3a143adb5702fa0566b32b17607d8.setContent(html_fd53a438bbf1d9a49fbaaeb353e9e047);
marker_4866daf206beac39a40aa3c625919aaf.bindPopup(popup_07e3a143adb5702fa0566b32b17607d8)
;
var marker_9c9167bedc49f99c7c678ba4113788f2 = L.marker(
[40.701283129535, -73.914240341139],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_430fa1565be541519da9cd9b88864a24 = L.popup({"maxWidth": 300});
var html_7cea318b4dad1ccd41dc6baaad46618b = $(`<div id="html_7cea318b4dad1ccd41dc6baaad46618b" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.701283129535, Longitude: -73.914240341139<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 259 WYCKOFF AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_430fa1565be541519da9cd9b88864a24.setContent(html_7cea318b4dad1ccd41dc6baaad46618b);
marker_9c9167bedc49f99c7c678ba4113788f2.bindPopup(popup_430fa1565be541519da9cd9b88864a24)
;
var marker_035e15b4dfe4dac7b003e24c3dce2ab7 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_a78e027b124d196bbf41bf69e4abe991 = L.popup({"maxWidth": 300});
var html_5c68e5a17a8e20af15388ac5d75efc0b = $(`<div id="html_5c68e5a17a8e20af15388ac5d75efc0b" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_a78e027b124d196bbf41bf69e4abe991.setContent(html_5c68e5a17a8e20af15388ac5d75efc0b);
marker_035e15b4dfe4dac7b003e24c3dce2ab7.bindPopup(popup_a78e027b124d196bbf41bf69e4abe991)
;
var marker_75e1deca700709a6c51c3cf40fa0761c = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_3505f661d5c4ed2dad005d3761c22ada = L.popup({"maxWidth": 300});
var html_5d9bf6127ca339976adda145e3442193 = $(`<div id="html_5d9bf6127ca339976adda145e3442193" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_3505f661d5c4ed2dad005d3761c22ada.setContent(html_5d9bf6127ca339976adda145e3442193);
marker_75e1deca700709a6c51c3cf40fa0761c.bindPopup(popup_3505f661d5c4ed2dad005d3761c22ada)
;
var marker_91a92522c028621ebe7f600a47e54464 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_d3ce3eb2c72ef116c8ddc36c627e3582 = L.popup({"maxWidth": 300});
var html_7c03ec6ba71876d2b3ea20d881f54fe8 = $(`<div id="html_7c03ec6ba71876d2b3ea20d881f54fe8" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_d3ce3eb2c72ef116c8ddc36c627e3582.setContent(html_7c03ec6ba71876d2b3ea20d881f54fe8);
marker_91a92522c028621ebe7f600a47e54464.bindPopup(popup_d3ce3eb2c72ef116c8ddc36c627e3582)
;
var marker_a1299ad17114d10c4f0f73f113c5750d = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_612c2f4e90dbf1219a6f79b20337fd54 = L.popup({"maxWidth": 300});
var html_0fb2f246a74bc5a710ff41b84e4244e8 = $(`<div id="html_0fb2f246a74bc5a710ff41b84e4244e8" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_612c2f4e90dbf1219a6f79b20337fd54.setContent(html_0fb2f246a74bc5a710ff41b84e4244e8);
marker_a1299ad17114d10c4f0f73f113c5750d.bindPopup(popup_612c2f4e90dbf1219a6f79b20337fd54)
;
var marker_e4a7dcde5d58393f09a0e5ec8728ef68 = L.marker(
[40.701283129535, -73.914240341139],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_2eb830d1cbdf0110c8ab3c62bd56230b = L.popup({"maxWidth": 300});
var html_74b1519c033531192fc1b711c8aeebd7 = $(`<div id="html_74b1519c033531192fc1b711c8aeebd7" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.701283129535, Longitude: -73.914240341139<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 259 WYCKOFF AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_2eb830d1cbdf0110c8ab3c62bd56230b.setContent(html_74b1519c033531192fc1b711c8aeebd7);
marker_e4a7dcde5d58393f09a0e5ec8728ef68.bindPopup(popup_2eb830d1cbdf0110c8ab3c62bd56230b)
;
var marker_5ff617e7807a9be89386dea0f051a6fa = L.marker(
[40.701283129535, -73.914240341139],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_6be5445817569acd47f99b9e34f1299f = L.popup({"maxWidth": 300});
var html_616f9a73a61f3c30d402e8b2f1e93982 = $(`<div id="html_616f9a73a61f3c30d402e8b2f1e93982" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.701283129535, Longitude: -73.914240341139<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 259 WYCKOFF AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_6be5445817569acd47f99b9e34f1299f.setContent(html_616f9a73a61f3c30d402e8b2f1e93982);
marker_5ff617e7807a9be89386dea0f051a6fa.bindPopup(popup_6be5445817569acd47f99b9e34f1299f)
;
var marker_66dde8262f84c1fd74a8a4f20632def4 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_3fb91a0ef0d72862005e48e488d7cae4 = L.popup({"maxWidth": 300});
var html_31c97360667fd95887cb2b0213eb3849 = $(`<div id="html_31c97360667fd95887cb2b0213eb3849" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_3fb91a0ef0d72862005e48e488d7cae4.setContent(html_31c97360667fd95887cb2b0213eb3849);
marker_66dde8262f84c1fd74a8a4f20632def4.bindPopup(popup_3fb91a0ef0d72862005e48e488d7cae4)
;
var marker_40b598781ebe66d05685f56d790f02bf = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_21431bddb4da2fb636427746eb50d22c = L.popup({"maxWidth": 300});
var html_3f2e710347dd0adfa76c295b3bda1570 = $(`<div id="html_3f2e710347dd0adfa76c295b3bda1570" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 6.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_21431bddb4da2fb636427746eb50d22c.setContent(html_3f2e710347dd0adfa76c295b3bda1570);
marker_40b598781ebe66d05685f56d790f02bf.bindPopup(popup_21431bddb4da2fb636427746eb50d22c)
;
var marker_e9294bcc7bab8e0075a82a5759327822 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_20a4de3ad819abdc5d3b007e6d72c542 = L.popup({"maxWidth": 300});
var html_47ddeec5edd72f67cf14c5918c5a538e = $(`<div id="html_47ddeec5edd72f67cf14c5918c5a538e" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_20a4de3ad819abdc5d3b007e6d72c542.setContent(html_47ddeec5edd72f67cf14c5918c5a538e);
marker_e9294bcc7bab8e0075a82a5759327822.bindPopup(popup_20a4de3ad819abdc5d3b007e6d72c542)
;
var marker_b21373acbce7262f104abfd7e2575573 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_df99cfba6ea6bf088214be789a6127df = L.popup({"maxWidth": 300});
var html_29b0b7b47f31c78d0f45a3922a96fd20 = $(`<div id="html_29b0b7b47f31c78d0f45a3922a96fd20" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_df99cfba6ea6bf088214be789a6127df.setContent(html_29b0b7b47f31c78d0f45a3922a96fd20);
marker_b21373acbce7262f104abfd7e2575573.bindPopup(popup_df99cfba6ea6bf088214be789a6127df)
;
var marker_ffcb7a142aa33d254dca02a066b6082f = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_4e36c913ad7c40680363f278d6da847d = L.popup({"maxWidth": 300});
var html_c9928a2b503e7c4a5bffcd1ed7840b4e = $(`<div id="html_c9928a2b503e7c4a5bffcd1ed7840b4e" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 3.0<br>Review Count: 367<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_4e36c913ad7c40680363f278d6da847d.setContent(html_c9928a2b503e7c4a5bffcd1ed7840b4e);
marker_ffcb7a142aa33d254dca02a066b6082f.bindPopup(popup_4e36c913ad7c40680363f278d6da847d)
;
var marker_f1468e86387d45fc51921b6b9a836c38 = L.marker(
[40.70804573975, -73.950650446915],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_976ae3b7e8b291f6946c0f0e7d45457b = L.popup({"maxWidth": 300});
var html_6e959a759119eb4bd403636533fe827c = $(`<div id="html_6e959a759119eb4bd403636533fe827c" style="width: 100.0%; height: 100.0%;">Name: WILLIAMSBURG PIZZA<br>Latitude: 40.70804573975, Longitude: -73.950650446915<br>Rating: 4.0<br>Review Count: 284<br>SCORE: 9.0<br>Size Category: Large<br>Full Address: 265 UNION AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_976ae3b7e8b291f6946c0f0e7d45457b.setContent(html_6e959a759119eb4bd403636533fe827c);
marker_f1468e86387d45fc51921b6b9a836c38.bindPopup(popup_976ae3b7e8b291f6946c0f0e7d45457b)
;
var marker_e1893c6fa9ed5b62759478fa283e220c = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_5a0a868f48d7537c38da6ffa08254648 = L.popup({"maxWidth": 300});
var html_f6cbba7f2a7be545b556792bc5e78f83 = $(`<div id="html_f6cbba7f2a7be545b556792bc5e78f83" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_5a0a868f48d7537c38da6ffa08254648.setContent(html_f6cbba7f2a7be545b556792bc5e78f83);
marker_e1893c6fa9ed5b62759478fa283e220c.bindPopup(popup_5a0a868f48d7537c38da6ffa08254648)
;
var marker_01af94903eafc61a4b93c6eafd2f91b5 = L.marker(
[40.61016276324, -73.984336698024],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_524b4230374bc3cbe00043712a8732c2 = L.popup({"maxWidth": 300});
var html_cdf93bad4072865356cbc60d7d4539c1 = $(`<div id="html_cdf93bad4072865356cbc60d7d4539c1" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.61016276324, Longitude: -73.984336698024<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 11.0<br>Size Category: Large<br>Full Address: 24 AVENUE O<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_524b4230374bc3cbe00043712a8732c2.setContent(html_cdf93bad4072865356cbc60d7d4539c1);
marker_01af94903eafc61a4b93c6eafd2f91b5.bindPopup(popup_524b4230374bc3cbe00043712a8732c2)
;
var marker_6ef0eac35b7bdc2dbed473c4154432ba = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_9abfb6e398e8e3ae4b1ddb2498e7596e = L.popup({"maxWidth": 300});
var html_d079727cec11b806cfd2e50f49ac67a7 = $(`<div id="html_d079727cec11b806cfd2e50f49ac67a7" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_9abfb6e398e8e3ae4b1ddb2498e7596e.setContent(html_d079727cec11b806cfd2e50f49ac67a7);
marker_6ef0eac35b7bdc2dbed473c4154432ba.bindPopup(popup_9abfb6e398e8e3ae4b1ddb2498e7596e)
;
var marker_15938fc52563a05120cf234a37c81c7f = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_35b9c2d8f369505a69c4508013ef747e = L.popup({"maxWidth": 300});
var html_b285be81c9b656d7854973a1c16c1a85 = $(`<div id="html_b285be81c9b656d7854973a1c16c1a85" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_35b9c2d8f369505a69c4508013ef747e.setContent(html_b285be81c9b656d7854973a1c16c1a85);
marker_15938fc52563a05120cf234a37c81c7f.bindPopup(popup_35b9c2d8f369505a69c4508013ef747e)
;
var marker_2ef4eb4afae6e4412af28eb8b821c431 = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_55c0f10429fe14573e653ca2695c1518 = L.popup({"maxWidth": 300});
var html_71bdb737f0c9b2ef8473be78f416b389 = $(`<div id="html_71bdb737f0c9b2ef8473be78f416b389" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 19.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: B</div>`)[0];
popup_55c0f10429fe14573e653ca2695c1518.setContent(html_71bdb737f0c9b2ef8473be78f416b389);
marker_2ef4eb4afae6e4412af28eb8b821c431.bindPopup(popup_55c0f10429fe14573e653ca2695c1518)
;
var marker_514e91ee1af254c624e208f3471ad732 = L.marker(
[40.61016276324, -73.984336698024],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_3cbd8639d3e25f7010b54354c20be979 = L.popup({"maxWidth": 300});
var html_21e09065202d53bbc166a5c5def1f56a = $(`<div id="html_21e09065202d53bbc166a5c5def1f56a" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.61016276324, Longitude: -73.984336698024<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 11.0<br>Size Category: Large<br>Full Address: 24 AVENUE O<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_3cbd8639d3e25f7010b54354c20be979.setContent(html_21e09065202d53bbc166a5c5def1f56a);
marker_514e91ee1af254c624e208f3471ad732.bindPopup(popup_3cbd8639d3e25f7010b54354c20be979)
;
var marker_13488a00fda2045f96b7ddf734c8dfae = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_affecf2a6cc2546e5245f76463ac0a78 = L.popup({"maxWidth": 300});
var html_a34b4b3356e675bb880f596a7018307e = $(`<div id="html_a34b4b3356e675bb880f596a7018307e" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_affecf2a6cc2546e5245f76463ac0a78.setContent(html_a34b4b3356e675bb880f596a7018307e);
marker_13488a00fda2045f96b7ddf734c8dfae.bindPopup(popup_affecf2a6cc2546e5245f76463ac0a78)
;
var marker_2121f14342c1c47416690ddb9787c036 = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_12705b84d0ec804d9d2e5adabdf18880 = L.popup({"maxWidth": 300});
var html_21c7fa0d2604248f758d34162fdeed13 = $(`<div id="html_21c7fa0d2604248f758d34162fdeed13" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 19.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: B</div>`)[0];
popup_12705b84d0ec804d9d2e5adabdf18880.setContent(html_21c7fa0d2604248f758d34162fdeed13);
marker_2121f14342c1c47416690ddb9787c036.bindPopup(popup_12705b84d0ec804d9d2e5adabdf18880)
;
var marker_06fe109762698dd8369a360ccbd10783 = L.marker(
[40.61016276324, -73.984336698024],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_353862086199884488617b461c9e437c = L.popup({"maxWidth": 300});
var html_d5cdc06daf6ece4821d55439721a7022 = $(`<div id="html_d5cdc06daf6ece4821d55439721a7022" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.61016276324, Longitude: -73.984336698024<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 11.0<br>Size Category: Large<br>Full Address: 24 AVENUE O<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_353862086199884488617b461c9e437c.setContent(html_d5cdc06daf6ece4821d55439721a7022);
marker_06fe109762698dd8369a360ccbd10783.bindPopup(popup_353862086199884488617b461c9e437c)
;
var marker_0e4e55baf6ff7ec3657f5e54a96f8255 = L.marker(
[40.71571857712, -73.953537809263],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_6b842a9f9c34020038dc2eccbcb28ea5 = L.popup({"maxWidth": 300});
var html_957560ba9cb32eb4b172a1dc3c8f1df4 = $(`<div id="html_957560ba9cb32eb4b172a1dc3c8f1df4" style="width: 100.0%; height: 100.0%;">Name: BEST PIZZA<br>Latitude: 40.71571857712, Longitude: -73.953537809263<br>Rating: 3.5<br>Review Count: 729<br>SCORE: 19.0<br>Size Category: Large<br>Full Address: 33 HAVEMEYER STREET<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: B</div>`)[0];
popup_6b842a9f9c34020038dc2eccbcb28ea5.setContent(html_957560ba9cb32eb4b172a1dc3c8f1df4);
marker_0e4e55baf6ff7ec3657f5e54a96f8255.bindPopup(popup_6b842a9f9c34020038dc2eccbcb28ea5)
;
var marker_d7f3c79829205730e4037641e6f20d1b = L.marker(
[40.681089055222, -73.975317209995],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_555c135d931dc9f3f01dfc65cb35d01f = L.popup({"maxWidth": 300});
var html_a668923515c5ee336b018e5ae4581778 = $(`<div id="html_a668923515c5ee336b018e5ae4581778" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.681089055222, Longitude: -73.975317209995<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 2.0<br>Size Category: Large<br>Full Address: 218 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_555c135d931dc9f3f01dfc65cb35d01f.setContent(html_a668923515c5ee336b018e5ae4581778);
marker_d7f3c79829205730e4037641e6f20d1b.bindPopup(popup_555c135d931dc9f3f01dfc65cb35d01f)
;
var marker_3e81b3909f4d423135aba7f50fe84ad5 = L.marker(
[40.681089055222, -73.975317209995],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_4b2bbaeaceac7a101d43e0770466ad7d = L.popup({"maxWidth": 300});
var html_fa4cc34a07828eee7769cc99ecfacbd3 = $(`<div id="html_fa4cc34a07828eee7769cc99ecfacbd3" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.681089055222, Longitude: -73.975317209995<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 218 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_4b2bbaeaceac7a101d43e0770466ad7d.setContent(html_fa4cc34a07828eee7769cc99ecfacbd3);
marker_3e81b3909f4d423135aba7f50fe84ad5.bindPopup(popup_4b2bbaeaceac7a101d43e0770466ad7d)
;
var marker_8c9d9338715b70b45eae338be693b6e9 = L.marker(
[40.652256037037, -73.959164568739],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_4c71eb443e33f748633141764dab757e = L.popup({"maxWidth": 300});
var html_73fb79a029f5065f7e3fd69c28544e13 = $(`<div id="html_73fb79a029f5065f7e3fd69c28544e13" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.652256037037, Longitude: -73.959164568739<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 831 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_4c71eb443e33f748633141764dab757e.setContent(html_73fb79a029f5065f7e3fd69c28544e13);
marker_8c9d9338715b70b45eae338be693b6e9.bindPopup(popup_4c71eb443e33f748633141764dab757e)
;
var marker_154a4be9a6366d61f405c606a916c78b = L.marker(
[40.681089055222, -73.975317209995],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_442db78613918c588ee4d347b37bdd8e = L.popup({"maxWidth": 300});
var html_f767001bb9a17340320ef55c7f80121c = $(`<div id="html_f767001bb9a17340320ef55c7f80121c" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.681089055222, Longitude: -73.975317209995<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 13.0<br>Size Category: Large<br>Full Address: 218 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_442db78613918c588ee4d347b37bdd8e.setContent(html_f767001bb9a17340320ef55c7f80121c);
marker_154a4be9a6366d61f405c606a916c78b.bindPopup(popup_442db78613918c588ee4d347b37bdd8e)
;
var marker_c574ef5a119608191510ac051d42adb0 = L.marker(
[40.652256037037, -73.959164568739],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_7399f456b5bb297958dc75075317e005 = L.popup({"maxWidth": 300});
var html_a70ee65f4768a0448a2b31efaf4341f3 = $(`<div id="html_a70ee65f4768a0448a2b31efaf4341f3" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.652256037037, Longitude: -73.959164568739<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 831 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_7399f456b5bb297958dc75075317e005.setContent(html_a70ee65f4768a0448a2b31efaf4341f3);
marker_c574ef5a119608191510ac051d42adb0.bindPopup(popup_7399f456b5bb297958dc75075317e005)
;
var marker_2f62412fef6104dfc3c4fe17b42ab7ae = L.marker(
[40.652256037037, -73.959164568739],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_e2d260da70a492c882e87423096c1ce3 = L.popup({"maxWidth": 300});
var html_4d4c594b73e2f190d519ff2955c07352 = $(`<div id="html_4d4c594b73e2f190d519ff2955c07352" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.652256037037, Longitude: -73.959164568739<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 3.0<br>Size Category: Large<br>Full Address: 831 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_e2d260da70a492c882e87423096c1ce3.setContent(html_4d4c594b73e2f190d519ff2955c07352);
marker_2f62412fef6104dfc3c4fe17b42ab7ae.bindPopup(popup_e2d260da70a492c882e87423096c1ce3)
;
var marker_da11299d1b7fb2ed72ac6ce32b502bfe = L.marker(
[40.652256037037, -73.959164568739],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_2ab4bf7e7fa059c030348abf58f51f7b = L.popup({"maxWidth": 300});
var html_ca2206f5cac2a6298d18a6b180325b08 = $(`<div id="html_ca2206f5cac2a6298d18a6b180325b08" style="width: 100.0%; height: 100.0%;">Name: GINO'S PIZZA<br>Latitude: 40.652256037037, Longitude: -73.959164568739<br>Rating: 3.5<br>Review Count: 202<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 831 FLATBUSH AVENUE<br>Chain Indicator: True<br>Transaction: ['delivery', 'pickup']<br>Grade: A</div>`)[0];
popup_2ab4bf7e7fa059c030348abf58f51f7b.setContent(html_ca2206f5cac2a6298d18a6b180325b08);
marker_da11299d1b7fb2ed72ac6ce32b502bfe.bindPopup(popup_2ab4bf7e7fa059c030348abf58f51f7b)
;
var marker_1dc56e0c91b995f7fb13862b20511d04 = L.marker(
[40.669622459638, -73.911054900301],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_80194e5f4ecac093a92cf15a61dd0e6d = L.popup({"maxWidth": 300});
var html_a1a89d0c9f2060bcedcd987ad172e7f8 = $(`<div id="html_a1a89d0c9f2060bcedcd987ad172e7f8" style="width: 100.0%; height: 100.0%;">Name: SAL & PAUL'S PIZZERIA<br>Latitude: 40.669622459638, Longitude: -73.911054900301<br>Rating: 4.5<br>Review Count: 57<br>SCORE: 7.0<br>Size Category: Small<br>Full Address: 1686 PITKIN AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_80194e5f4ecac093a92cf15a61dd0e6d.setContent(html_a1a89d0c9f2060bcedcd987ad172e7f8);
marker_1dc56e0c91b995f7fb13862b20511d04.bindPopup(popup_80194e5f4ecac093a92cf15a61dd0e6d)
;
var marker_b6e9ec835b47b43e99b842eaa6d52aa8 = L.marker(
[40.669622459638, -73.911054900301],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_de878dd363fd92271173f5ce6f0cbd50 = L.popup({"maxWidth": 300});
var html_5a08da7101df12cd2bc1e51d6f0c7254 = $(`<div id="html_5a08da7101df12cd2bc1e51d6f0c7254" style="width: 100.0%; height: 100.0%;">Name: SAL & PAUL'S PIZZERIA<br>Latitude: 40.669622459638, Longitude: -73.911054900301<br>Rating: 4.5<br>Review Count: 57<br>SCORE: 7.0<br>Size Category: Small<br>Full Address: 1686 PITKIN AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_de878dd363fd92271173f5ce6f0cbd50.setContent(html_5a08da7101df12cd2bc1e51d6f0c7254);
marker_b6e9ec835b47b43e99b842eaa6d52aa8.bindPopup(popup_de878dd363fd92271173f5ce6f0cbd50)
;
var marker_b86c23f0cad7514cfd89fa93faad988a = L.marker(
[40.669622459638, -73.911054900301],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_c36db455c78ec159b027a1017a7a65d8 = L.popup({"maxWidth": 300});
var html_7f92e057980c613b83f37b08d845e917 = $(`<div id="html_7f92e057980c613b83f37b08d845e917" style="width: 100.0%; height: 100.0%;">Name: SAL & PAUL'S PIZZERIA<br>Latitude: 40.669622459638, Longitude: -73.911054900301<br>Rating: 4.5<br>Review Count: 57<br>SCORE: 7.0<br>Size Category: Small<br>Full Address: 1686 PITKIN AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_c36db455c78ec159b027a1017a7a65d8.setContent(html_7f92e057980c613b83f37b08d845e917);
marker_b86c23f0cad7514cfd89fa93faad988a.bindPopup(popup_c36db455c78ec159b027a1017a7a65d8)
;
var marker_094c494d46c401f5b3c9d7cd4f9eeca2 = L.marker(
[40.669622459638, -73.911054900301],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_bee5e827530215816f490243c975a078 = L.popup({"maxWidth": 300});
var html_9e54268f38aaf11ed0efad1797b849e6 = $(`<div id="html_9e54268f38aaf11ed0efad1797b849e6" style="width: 100.0%; height: 100.0%;">Name: SAL & PAUL'S PIZZERIA<br>Latitude: 40.669622459638, Longitude: -73.911054900301<br>Rating: 4.5<br>Review Count: 57<br>SCORE: 7.0<br>Size Category: Small<br>Full Address: 1686 PITKIN AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_bee5e827530215816f490243c975a078.setContent(html_9e54268f38aaf11ed0efad1797b849e6);
marker_094c494d46c401f5b3c9d7cd4f9eeca2.bindPopup(popup_bee5e827530215816f490243c975a078)
;
var marker_169eb00953a17829f24f19cc07be51d1 = L.marker(
[40.674674511639, -73.975305172798],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_44fc88e4ebc65bf7f760342abf46e2d6 = L.popup({"maxWidth": 300});
var html_02e1e460ce2d68d04f020cb3441dc302 = $(`<div id="html_02e1e460ce2d68d04f020cb3441dc302" style="width: 100.0%; height: 100.0%;">Name: ROMA PIZZA<br>Latitude: 40.674674511639, Longitude: -73.975305172798<br>Rating: 3.5<br>Review Count: 390<br>SCORE: 5.0<br>Size Category: Large<br>Full Address: 85 7 AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: Z</div>`)[0];
popup_44fc88e4ebc65bf7f760342abf46e2d6.setContent(html_02e1e460ce2d68d04f020cb3441dc302);
marker_169eb00953a17829f24f19cc07be51d1.bindPopup(popup_44fc88e4ebc65bf7f760342abf46e2d6)
;
var marker_bf4aafe2963a7df5a5c26a5778b46b21 = L.marker(
[40.598329920175, -73.961037759948],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_827fb49d92c192ccdc20ff2cb2d2789b = L.popup({"maxWidth": 300});
var html_ee7c52a88607bab0ef42cadc18075def = $(`<div id="html_ee7c52a88607bab0ef42cadc18075def" style="width: 100.0%; height: 100.0%;">Name: ROMA PIZZA<br>Latitude: 40.598329920175, Longitude: -73.961037759948<br>Rating: 3.5<br>Review Count: 390<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 1101 AVENUE U<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_827fb49d92c192ccdc20ff2cb2d2789b.setContent(html_ee7c52a88607bab0ef42cadc18075def);
marker_bf4aafe2963a7df5a5c26a5778b46b21.bindPopup(popup_827fb49d92c192ccdc20ff2cb2d2789b)
;
var marker_2ca6a978af59221149fd4e356be63c7a = L.marker(
[40.598329920175, -73.961037759948],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_dd8004a9664531ce1e623ef2e21f47b5 = L.popup({"maxWidth": 300});
var html_3baf7e7b0a89f51104b217d54e32753d = $(`<div id="html_3baf7e7b0a89f51104b217d54e32753d" style="width: 100.0%; height: 100.0%;">Name: ROMA PIZZA<br>Latitude: 40.598329920175, Longitude: -73.961037759948<br>Rating: 3.5<br>Review Count: 390<br>SCORE: 12.0<br>Size Category: Large<br>Full Address: 1101 AVENUE U<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_dd8004a9664531ce1e623ef2e21f47b5.setContent(html_3baf7e7b0a89f51104b217d54e32753d);
marker_2ca6a978af59221149fd4e356be63c7a.bindPopup(popup_dd8004a9664531ce1e623ef2e21f47b5)
;
var marker_edf299d5c3fd56f2a8fd737a6b4cd2fd = L.marker(
[40.686935955312, -73.966578305376],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_70d2c9e5b0b4053c38bf5d36f9872927 = L.popup({"maxWidth": 300});
var html_679aa9630b28fc741dca01942b722517 = $(`<div id="html_679aa9630b28fc741dca01942b722517" style="width: 100.0%; height: 100.0%;">Name: IMPASTO<br>Latitude: 40.686935955312, Longitude: -73.966578305376<br>Rating: 4.5<br>Review Count: 25<br>SCORE: 12.0<br>Size Category: nan<br>Full Address: 373 WAVERLY AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_70d2c9e5b0b4053c38bf5d36f9872927.setContent(html_679aa9630b28fc741dca01942b722517);
marker_edf299d5c3fd56f2a8fd737a6b4cd2fd.bindPopup(popup_70d2c9e5b0b4053c38bf5d36f9872927)
;
var marker_b1ce0478a6b7a9499eb617b544307771 = L.marker(
[40.686935955312, -73.966578305376],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_1120291e46f123c4c5b1b358b4534184 = L.popup({"maxWidth": 300});
var html_62f4e9e50fd6774b9c5d1f8cfa209872 = $(`<div id="html_62f4e9e50fd6774b9c5d1f8cfa209872" style="width: 100.0%; height: 100.0%;">Name: IMPASTO<br>Latitude: 40.686935955312, Longitude: -73.966578305376<br>Rating: 4.5<br>Review Count: 25<br>SCORE: 12.0<br>Size Category: nan<br>Full Address: 373 WAVERLY AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_1120291e46f123c4c5b1b358b4534184.setContent(html_62f4e9e50fd6774b9c5d1f8cfa209872);
marker_b1ce0478a6b7a9499eb617b544307771.bindPopup(popup_1120291e46f123c4c5b1b358b4534184)
;
var marker_6cfdd7bae024dbb2a62d3e35cbe0cdda = L.marker(
[40.686935955312, -73.966578305376],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_393acedd375218ea5b8ee2d489271467 = L.popup({"maxWidth": 300});
var html_a35228db5ebf3274ce413ef8114b04f3 = $(`<div id="html_a35228db5ebf3274ce413ef8114b04f3" style="width: 100.0%; height: 100.0%;">Name: IMPASTO<br>Latitude: 40.686935955312, Longitude: -73.966578305376<br>Rating: 4.5<br>Review Count: 25<br>SCORE: 10.0<br>Size Category: nan<br>Full Address: 373 WAVERLY AVENUE<br>Chain Indicator: True<br>Transaction: ['pickup', 'delivery']<br>Grade: A</div>`)[0];
popup_393acedd375218ea5b8ee2d489271467.setContent(html_a35228db5ebf3274ce413ef8114b04f3);
marker_6cfdd7bae024dbb2a62d3e35cbe0cdda.bindPopup(popup_393acedd375218ea5b8ee2d489271467)
;
var marker_e95eea45dc5f11be4a494547c23c502f = L.marker(
[40.703293906326, -73.992047363499],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_f96b6b7f85b783cb8e78c26ba29182df = L.popup({"maxWidth": 300});
var html_cd6db148964a26a12ca2ecc3bc0ffdb5 = $(`<div id="html_cd6db148964a26a12ca2ecc3bc0ffdb5" style="width: 100.0%; height: 100.0%;">Name: FORNINO<br>Latitude: 40.703293906326, Longitude: -73.992047363499<br>Rating: 3.5<br>Review Count: 303<br>SCORE: 2.0<br>Size Category: Large<br>Full Address: 55 WATER STREET<br>Chain Indicator: True<br>Transaction: []<br>Grade: A</div>`)[0];
popup_f96b6b7f85b783cb8e78c26ba29182df.setContent(html_cd6db148964a26a12ca2ecc3bc0ffdb5);
marker_e95eea45dc5f11be4a494547c23c502f.bindPopup(popup_f96b6b7f85b783cb8e78c26ba29182df)
;
var marker_26d9b3d06d6dbd1fe063da539d53eb42 = L.marker(
[40.7290856957, -73.953788232245],
{}
).addTo(map_0a07fadd97aba810a9309d12778eb7fa);
var popup_d8ad0e5ffad3aae7a0623c06126885cb = L.popup({"maxWidth": 300});