-
Notifications
You must be signed in to change notification settings - Fork 5
/
restaurants.html
3773 lines (1967 loc) · 142 KB
/
restaurants.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 src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/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.1.0/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://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<style> #map_85005e0681e240d0a8be8ca3ae3c9ef2 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_85005e0681e240d0a8be8ca3ae3c9ef2" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_85005e0681e240d0a8be8ca3ae3c9ef2 = L.map('map_85005e0681e240d0a8be8ca3ae3c9ef2', {
center:[40.7831,-73.9712],
zoom: 12,
maxBounds: bounds,
layers: [],
crs: L.CRS.EPSG3857
});
var tile_layer_25e70863c4104b6889320aa2169601fb = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
maxZoom: 18,
minZoom: 1,
attribution: 'Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://www.openstreetmap.org/copyright">ODbL</a>.',
detectRetina: false
}
).addTo(map_85005e0681e240d0a8be8ca3ae3c9ef2);
var marker_cluster_1f02527dcc9b474ca3fb7c92e48447df = L.markerClusterGroup();
map_85005e0681e240d0a8be8ca3ae3c9ef2.addLayer(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var marker_5313f38b7e3f4e06845a87916f5d8266 = L.marker(
[40.755086,-73.981982],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_176dbe4b5342427b8f08bc66b423a04f = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5313f38b7e3f4e06845a87916f5d8266.setIcon(icon_176dbe4b5342427b8f08bc66b423a04f);
var popup_f615d65ff33041d0b57df041e80362a0 = L.popup({maxWidth: '300'});
var html_e672d1fe2572471dab3265dd94e0e9f8 = $(' <div id="html_e672d1fe2572471dab3265dd94e0e9f8" style="width: 100.0%; height: 100.0%;"> Name: CITY CAFE Score: 12.0 Grade: A</div> ')[0];
popup_f615d65ff33041d0b57df041e80362a0.setContent(html_e672d1fe2572471dab3265dd94e0e9f8);
marker_5313f38b7e3f4e06845a87916f5d8266.bindPopup(popup_f615d65ff33041d0b57df041e80362a0);
var marker_f8fe2f5c8a47418e80703898f3e71454 = L.marker(
[40.742555,-74.006084],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_e2708c8c3828475c83050dd5e88361db = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f8fe2f5c8a47418e80703898f3e71454.setIcon(icon_e2708c8c3828475c83050dd5e88361db);
var popup_632a52c877a04ece8d332994d9f21625 = L.popup({maxWidth: '300'});
var html_4a75d34aef40439bbf98ce22958859ed = $(' <div id="html_4a75d34aef40439bbf98ce22958859ed" style="width: 100.0%; height: 100.0%;"> Name: MOKBAR Score: 11.0 Grade: A</div> ')[0];
popup_632a52c877a04ece8d332994d9f21625.setContent(html_4a75d34aef40439bbf98ce22958859ed);
marker_f8fe2f5c8a47418e80703898f3e71454.bindPopup(popup_632a52c877a04ece8d332994d9f21625);
var marker_df84511e3eb640afbf8b8598277ed0da = L.marker(
[40.756746,-73.993477],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_bf0f992b07c24d2b966d256fef693a7f = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_df84511e3eb640afbf8b8598277ed0da.setIcon(icon_bf0f992b07c24d2b966d256fef693a7f);
var popup_e9464663dde04761ac35429b40639dcd = L.popup({maxWidth: '300'});
var html_7244f198ce5f45e481cee986cfdb3b5f = $(' <div id="html_7244f198ce5f45e481cee986cfdb3b5f" style="width: 100.0%; height: 100.0%;"> Name: CURRY HUT Score: 4.0 Grade: A</div> ')[0];
popup_e9464663dde04761ac35429b40639dcd.setContent(html_7244f198ce5f45e481cee986cfdb3b5f);
marker_df84511e3eb640afbf8b8598277ed0da.bindPopup(popup_e9464663dde04761ac35429b40639dcd);
var marker_a366ef24bcbe4f02a09140e0b8c380d0 = L.marker(
[40.757811,-73.970822],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_04b9d37d402748b9ac0326eed0d6e902 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a366ef24bcbe4f02a09140e0b8c380d0.setIcon(icon_04b9d37d402748b9ac0326eed0d6e902);
var popup_780feb1cb321466194d7c1934288d588 = L.popup({maxWidth: '300'});
var html_d55cba12c8fe499887723251826399dd = $(' <div id="html_d55cba12c8fe499887723251826399dd" style="width: 100.0%; height: 100.0%;"> Name: AU BON PAIN Score: 13.0 Grade: A</div> ')[0];
popup_780feb1cb321466194d7c1934288d588.setContent(html_d55cba12c8fe499887723251826399dd);
marker_a366ef24bcbe4f02a09140e0b8c380d0.bindPopup(popup_780feb1cb321466194d7c1934288d588);
var marker_1fb084d0c2cd425392adb23eb1ac9342 = L.marker(
[40.729353,-73.984012],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_4d2f65d63c4741c2beff7d5c6e55ea9e = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1fb084d0c2cd425392adb23eb1ac9342.setIcon(icon_4d2f65d63c4741c2beff7d5c6e55ea9e);
var popup_91db9d8cb8194d819dd71ec26fa121fe = L.popup({maxWidth: '300'});
var html_4f4d2c6673904069863e1592ae98f7d3 = $(' <div id="html_4f4d2c6673904069863e1592ae98f7d3" style="width: 100.0%; height: 100.0%;"> Name: V-NAM CAFE Score: 36.0 Grade: C</div> ')[0];
popup_91db9d8cb8194d819dd71ec26fa121fe.setContent(html_4f4d2c6673904069863e1592ae98f7d3);
marker_1fb084d0c2cd425392adb23eb1ac9342.bindPopup(popup_91db9d8cb8194d819dd71ec26fa121fe);
var marker_2e821b1d39ab4cb8ad9773c66b18b566 = L.marker(
[40.716382,-73.998228],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_c0b27530e8f0417ab16785ce997f105d = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2e821b1d39ab4cb8ad9773c66b18b566.setIcon(icon_c0b27530e8f0417ab16785ce997f105d);
var popup_4cb715e9a08e48d7966626b9ec7614d2 = L.popup({maxWidth: '300'});
var html_15ae024dc17f4b9081c060ee9bc1f62c = $(' <div id="html_15ae024dc17f4b9081c060ee9bc1f62c" style="width: 100.0%; height: 100.0%;"> Name: TEN REN'S TEA TIME Score: 10.0 Grade: A</div> ')[0];
popup_4cb715e9a08e48d7966626b9ec7614d2.setContent(html_15ae024dc17f4b9081c060ee9bc1f62c);
marker_2e821b1d39ab4cb8ad9773c66b18b566.bindPopup(popup_4cb715e9a08e48d7966626b9ec7614d2);
var marker_327f3f55a65c483f98168785eef14275 = L.marker(
[40.724783,-73.983822],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_1890b78e1f324744b8e04d498ca53377 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_327f3f55a65c483f98168785eef14275.setIcon(icon_1890b78e1f324744b8e04d498ca53377);
var popup_e3a8aa9a940048d98b181a385940a810 = L.popup({maxWidth: '300'});
var html_4abad2cb463548169cfab957c91f1d58 = $(' <div id="html_4abad2cb463548169cfab957c91f1d58" style="width: 100.0%; height: 100.0%;"> Name: SOPHIE'S Score: 5.0 Grade: A</div> ')[0];
popup_e3a8aa9a940048d98b181a385940a810.setContent(html_4abad2cb463548169cfab957c91f1d58);
marker_327f3f55a65c483f98168785eef14275.bindPopup(popup_e3a8aa9a940048d98b181a385940a810);
var marker_3cae37ddb6b74f86b606867ce5ed03dd = L.marker(
[40.739398,-74.00222],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_874ebd2a866b417789582bfc30574ad5 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3cae37ddb6b74f86b606867ce5ed03dd.setIcon(icon_874ebd2a866b417789582bfc30574ad5);
var popup_e40dfecde7684d71a4f0e7163a7d3403 = L.popup({maxWidth: '300'});
var html_76c8e6ba2bcd47acb0c3801595ec0e26 = $(' <div id="html_76c8e6ba2bcd47acb0c3801595ec0e26" style="width: 100.0%; height: 100.0%;"> Name: IPANEMA BAR Score: 20.0 Grade: Z</div> ')[0];
popup_e40dfecde7684d71a4f0e7163a7d3403.setContent(html_76c8e6ba2bcd47acb0c3801595ec0e26);
marker_3cae37ddb6b74f86b606867ce5ed03dd.bindPopup(popup_e40dfecde7684d71a4f0e7163a7d3403);
var marker_0d83120f30764d59b6cfb09bc382791f = L.marker(
[40.825871,-73.948381],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_bf2ef48e8f764e67b740a76597d0d539 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0d83120f30764d59b6cfb09bc382791f.setIcon(icon_bf2ef48e8f764e67b740a76597d0d539);
var popup_89da1d216993413d850cd4adf046d4cd = L.popup({maxWidth: '300'});
var html_19039291508a43978809b5711fca9ca8 = $(' <div id="html_19039291508a43978809b5711fca9ca8" style="width: 100.0%; height: 100.0%;"> Name: WAT'S ON YOUR PLATE Score: 24.0 Grade: B</div> ')[0];
popup_89da1d216993413d850cd4adf046d4cd.setContent(html_19039291508a43978809b5711fca9ca8);
marker_0d83120f30764d59b6cfb09bc382791f.bindPopup(popup_89da1d216993413d850cd4adf046d4cd);
var marker_75621d3c06d74032908457d99add1dba = L.marker(
[40.739194,-73.995911],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_67f1e091d9134548ad591ea2ce07a1cd = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_75621d3c06d74032908457d99add1dba.setIcon(icon_67f1e091d9134548ad591ea2ce07a1cd);
var popup_6020e9e907514ed6911cbb774e7c00e0 = L.popup({maxWidth: '300'});
var html_842a357fd08f4b9db4c52cc429ec7f0d = $(' <div id="html_842a357fd08f4b9db4c52cc429ec7f0d" style="width: 100.0%; height: 100.0%;"> Name: THE HUMMUS & PITA Score: 11.0 Grade: A</div> ')[0];
popup_6020e9e907514ed6911cbb774e7c00e0.setContent(html_842a357fd08f4b9db4c52cc429ec7f0d);
marker_75621d3c06d74032908457d99add1dba.bindPopup(popup_6020e9e907514ed6911cbb774e7c00e0);
var marker_048bdc1c2e924f7aab21140a5d1636c6 = L.marker(
[40.755057,-73.983687],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_b3664414ef9249dea168fd2fc5889100 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_048bdc1c2e924f7aab21140a5d1636c6.setIcon(icon_b3664414ef9249dea168fd2fc5889100);
var popup_d77658a89bdd44b7a5ea33c20926fa22 = L.popup({maxWidth: '300'});
var html_cdb68458691641819c1d3746fafab411 = $(' <div id="html_cdb68458691641819c1d3746fafab411" style="width: 100.0%; height: 100.0%;"> Name: THE BISTRO (HBO CAFETERIA) Score: 11.0 Grade: A</div> ')[0];
popup_d77658a89bdd44b7a5ea33c20926fa22.setContent(html_cdb68458691641819c1d3746fafab411);
marker_048bdc1c2e924f7aab21140a5d1636c6.bindPopup(popup_d77658a89bdd44b7a5ea33c20926fa22);
var marker_97805c37d7794ab2a1c964d6540098aa = L.marker(
[40.750411,-73.990716],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_28f5f2a1a8b94a43b1e09d0445d67c45 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_97805c37d7794ab2a1c964d6540098aa.setIcon(icon_28f5f2a1a8b94a43b1e09d0445d67c45);
var popup_a33c5e91726b40b09abc5156010f7098 = L.popup({maxWidth: '300'});
var html_caaa01004916472aad278f6233a310d9 = $(' <div id="html_caaa01004916472aad278f6233a310d9" style="width: 100.0%; height: 100.0%;"> Name: SPINELLI'S PIZZA/GYRO II Score: 22.0 Grade: B</div> ')[0];
popup_a33c5e91726b40b09abc5156010f7098.setContent(html_caaa01004916472aad278f6233a310d9);
marker_97805c37d7794ab2a1c964d6540098aa.bindPopup(popup_a33c5e91726b40b09abc5156010f7098);
var marker_445eea14c84a4b27928ac4f0916d330f = L.marker(
[40.76099,-73.990465],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_bcae873da14849dc8bb0b03ea8cda272 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_445eea14c84a4b27928ac4f0916d330f.setIcon(icon_bcae873da14849dc8bb0b03ea8cda272);
var popup_2396c23fccd940dab51dc74659e0a2fe = L.popup({maxWidth: '300'});
var html_bf37c801fdd545429f4ba31c3893a4d9 = $(' <div id="html_bf37c801fdd545429f4ba31c3893a4d9" style="width: 100.0%; height: 100.0%;"> Name: YUM YUM TOO Score: 23.0 Grade: B</div> ')[0];
popup_2396c23fccd940dab51dc74659e0a2fe.setContent(html_bf37c801fdd545429f4ba31c3893a4d9);
marker_445eea14c84a4b27928ac4f0916d330f.bindPopup(popup_2396c23fccd940dab51dc74659e0a2fe);
var marker_d6544984338e49b38eaa42c65a0de50d = L.marker(
[40.756746,-73.993477],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_7f53e214b6b14d20a6fbb9efd5c1e3ba = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d6544984338e49b38eaa42c65a0de50d.setIcon(icon_7f53e214b6b14d20a6fbb9efd5c1e3ba);
var popup_14f1131fb3534f0baa2ad540fee42ab2 = L.popup({maxWidth: '300'});
var html_44bc0fb721f448a191676a073b033156 = $(' <div id="html_44bc0fb721f448a191676a073b033156" style="width: 100.0%; height: 100.0%;"> Name: CURRY HUT Score: 22.0 Grade: B</div> ')[0];
popup_14f1131fb3534f0baa2ad540fee42ab2.setContent(html_44bc0fb721f448a191676a073b033156);
marker_d6544984338e49b38eaa42c65a0de50d.bindPopup(popup_14f1131fb3534f0baa2ad540fee42ab2);
var marker_b6023c790ce44d19961e3f2c8dde2c55 = L.marker(
[40.764963,-73.976197],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_b1ef501a6c534302bbbf170debc12816 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b6023c790ce44d19961e3f2c8dde2c55.setIcon(icon_b1ef501a6c534302bbbf170debc12816);
var popup_5b7585da41454ca096df2228ea5e44c0 = L.popup({maxWidth: '300'});
var html_c152491bd76c42f58e147f263a63bb10 = $(' <div id="html_c152491bd76c42f58e147f263a63bb10" style="width: 100.0%; height: 100.0%;"> Name: QUALITY MEATS Score: 7.0 Grade: A</div> ')[0];
popup_5b7585da41454ca096df2228ea5e44c0.setContent(html_c152491bd76c42f58e147f263a63bb10);
marker_b6023c790ce44d19961e3f2c8dde2c55.bindPopup(popup_5b7585da41454ca096df2228ea5e44c0);
var marker_0f16169646f04a399c5f88ec86f4d307 = L.marker(
[40.741781,-74.004501],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_ba12e7e7f2d64ecfb39873a21848b17a = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0f16169646f04a399c5f88ec86f4d307.setIcon(icon_ba12e7e7f2d64ecfb39873a21848b17a);
var popup_2d56de3bf4164eaea5c191b665424987 = L.popup({maxWidth: '300'});
var html_5bc142bce2fb4e39b7b8bc1bbed47abe = $(' <div id="html_5bc142bce2fb4e39b7b8bc1bbed47abe" style="width: 100.0%; height: 100.0%;"> Name: GOOGLE 5BB Score: 7.0 Grade: A</div> ')[0];
popup_2d56de3bf4164eaea5c191b665424987.setContent(html_5bc142bce2fb4e39b7b8bc1bbed47abe);
marker_0f16169646f04a399c5f88ec86f4d307.bindPopup(popup_2d56de3bf4164eaea5c191b665424987);
var marker_8550350363f14501a496b5e3fa258092 = L.marker(
[40.741618,-74.000685],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_5a0d39194df84bde864127296e0cfa8e = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8550350363f14501a496b5e3fa258092.setIcon(icon_5a0d39194df84bde864127296e0cfa8e);
var popup_5d7160f5871e4094877abc6ef5849d87 = L.popup({maxWidth: '300'});
var html_f757d9ac9fc4456c8883eddfdd81d31a = $(' <div id="html_f757d9ac9fc4456c8883eddfdd81d31a" style="width: 100.0%; height: 100.0%;"> Name: JUST MADE SUSHI (DD MARU) Score: 5.0 Grade: A</div> ')[0];
popup_5d7160f5871e4094877abc6ef5849d87.setContent(html_f757d9ac9fc4456c8883eddfdd81d31a);
marker_8550350363f14501a496b5e3fa258092.bindPopup(popup_5d7160f5871e4094877abc6ef5849d87);
var marker_c4c3edc22cb24f60990b189f4514ba12 = L.marker(
[40.726131,-73.984196],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_e2acf8029a20470b84913fd9aea003dd = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c4c3edc22cb24f60990b189f4514ba12.setIcon(icon_e2acf8029a20470b84913fd9aea003dd);
var popup_6e0c29f9c725421aa44dbda51468de0b = L.popup({maxWidth: '300'});
var html_9429672219e54f73ade26d2235aed08c = $(' <div id="html_9429672219e54f73ade26d2235aed08c" style="width: 100.0%; height: 100.0%;"> Name: GIANO Score: 11.0 Grade: A</div> ')[0];
popup_6e0c29f9c725421aa44dbda51468de0b.setContent(html_9429672219e54f73ade26d2235aed08c);
marker_c4c3edc22cb24f60990b189f4514ba12.bindPopup(popup_6e0c29f9c725421aa44dbda51468de0b);
var marker_edceba8cc467422bb09ad1422e5bef62 = L.marker(
[40.752474,-73.973943],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_fe41ffddad8a4c76b09010d21daeee51 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_edceba8cc467422bb09ad1422e5bef62.setIcon(icon_fe41ffddad8a4c76b09010d21daeee51);
var popup_d24fb3333e064ed798c17eca2257d993 = L.popup({maxWidth: '300'});
var html_196c44d95f95414e85c50b8f92edda27 = $(' <div id="html_196c44d95f95414e85c50b8f92edda27" style="width: 100.0%; height: 100.0%;"> Name: DEE DAA Score: 5.0 Grade: A</div> ')[0];
popup_d24fb3333e064ed798c17eca2257d993.setContent(html_196c44d95f95414e85c50b8f92edda27);
marker_edceba8cc467422bb09ad1422e5bef62.bindPopup(popup_d24fb3333e064ed798c17eca2257d993);
var marker_b3ad1dfe1e184cf2974eb50c615f84c7 = L.marker(
[40.777284,-73.948751],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_eb6f745091fb43a7815ea9ca2041ba12 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b3ad1dfe1e184cf2974eb50c615f84c7.setIcon(icon_eb6f745091fb43a7815ea9ca2041ba12);
var popup_3c4241cfbb824568a91f03b1f0e1b6a6 = L.popup({maxWidth: '300'});
var html_8bcacabe54784fbf86d0db0f46dd5831 = $(' <div id="html_8bcacabe54784fbf86d0db0f46dd5831" style="width: 100.0%; height: 100.0%;"> Name: EASTEND BAR & GRILL Score: 23.0 Grade: B</div> ')[0];
popup_3c4241cfbb824568a91f03b1f0e1b6a6.setContent(html_8bcacabe54784fbf86d0db0f46dd5831);
marker_b3ad1dfe1e184cf2974eb50c615f84c7.bindPopup(popup_3c4241cfbb824568a91f03b1f0e1b6a6);
var marker_02ee9488f3804aed88e25ae7ff881ebf = L.marker(
[40.75946,-73.992291],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_a424a454d7e3453cbcb1a0317e15d9c3 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_02ee9488f3804aed88e25ae7ff881ebf.setIcon(icon_a424a454d7e3453cbcb1a0317e15d9c3);
var popup_9cf9caa416e048e3b3a141fe2e6f345a = L.popup({maxWidth: '300'});
var html_868ac254e5d8479baba0bbdd8885e9c5 = $(' <div id="html_868ac254e5d8479baba0bbdd8885e9c5" style="width: 100.0%; height: 100.0%;"> Name: DALTON'S BAR & GRILL Score: 12.0 Grade: A</div> ')[0];
popup_9cf9caa416e048e3b3a141fe2e6f345a.setContent(html_868ac254e5d8479baba0bbdd8885e9c5);
marker_02ee9488f3804aed88e25ae7ff881ebf.bindPopup(popup_9cf9caa416e048e3b3a141fe2e6f345a);
var marker_02186dfa64294fad9eed8f9f571666da = L.marker(
[40.723727,-73.998822],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_abbcdd70916a4e858f1fdd622b0a9e43 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_02186dfa64294fad9eed8f9f571666da.setIcon(icon_abbcdd70916a4e858f1fdd622b0a9e43);
var popup_e372091439b64b4d8028252363f7c6e5 = L.popup({maxWidth: '300'});
var html_dfae628df05b4de9ac27180cd3109832 = $(' <div id="html_dfae628df05b4de9ac27180cd3109832" style="width: 100.0%; height: 100.0%;"> Name: CAFE DUKE Score: 19.0 Grade: B</div> ')[0];
popup_e372091439b64b4d8028252363f7c6e5.setContent(html_dfae628df05b4de9ac27180cd3109832);
marker_02186dfa64294fad9eed8f9f571666da.bindPopup(popup_e372091439b64b4d8028252363f7c6e5);
var marker_95ba8003bccb443a93db79b0cedb5261 = L.marker(
[40.75802,-73.974978],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_1f02527dcc9b474ca3fb7c92e48447df);
var icon_dcdc1156989647c1af97bf5a6ac4a792 = L.AwesomeMarkers.icon({
icon: 'no-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_95ba8003bccb443a93db79b0cedb5261.setIcon(icon_dcdc1156989647c1af97bf5a6ac4a792);
var popup_2c2df713fd714078be3afed8dd74a451 = L.popup({maxWidth: '300'});
var html_a5cd47a4613148f0beb70542dd52bdb4 = $(' <div id="html_a5cd47a4613148f0beb70542dd52bdb4" style="width: 100.0%; height: 100.0%;"> Name: VILLARD MICHEL RICHARD Score: 7.0 Grade: A</div> ')[0];
popup_2c2df713fd714078be3afed8dd74a451.setContent(html_a5cd47a4613148f0beb70542dd52bdb4);
marker_95ba8003bccb443a93db79b0cedb5261.bindPopup(popup_2c2df713fd714078be3afed8dd74a451);