-
Notifications
You must be signed in to change notification settings - Fork 2
/
sf_random_points.html
1464 lines (749 loc) · 52.9 KB
/
sf_random_points.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_a19afe7cfb084272b00e98682697345f {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_a19afe7cfb084272b00e98682697345f" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_a19afe7cfb084272b00e98682697345f = L.map('map_a19afe7cfb084272b00e98682697345f', {
center:[37.7540044212,-122.436530053],
zoom: 12,
maxBounds: bounds,
layers: [],
crs: L.CRS.EPSG3857
});
var tile_layer_22c1c9c1cd1c4151955af0cec1028ede = 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_a19afe7cfb084272b00e98682697345f);
var marker_2615bda9f5b8477db426aebcf6139eb4 = L.marker(
[37.7580291697,-122.413983],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_5ba2b79183e74a418f842f3074fe4e96 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2615bda9f5b8477db426aebcf6139eb4.setIcon(icon_5ba2b79183e74a418f842f3074fe4e96);
var popup_541ef028e824437b9a8f9a54066a1867 = L.popup({maxWidth: '300'});
var html_6587a57592c84853b3b4c96bc0f6e328 = $(' <div id="html_6587a57592c84853b3b4c96bc0f6e328" style="width: 100.0%; height: 100.0%;"> (1, 1)</div> ')[0];
popup_541ef028e824437b9a8f9a54066a1867.setContent(html_6587a57592c84853b3b4c96bc0f6e328);
marker_2615bda9f5b8477db426aebcf6139eb4.bindPopup(popup_541ef028e824437b9a8f9a54066a1867);
var marker_16f3c03176c348c09a576ec02778a8f0 = L.marker(
[37.7113970826,-122.469785557],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_cce1c640b19d4ffa8a4ee864ff67c5de = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_16f3c03176c348c09a576ec02778a8f0.setIcon(icon_cce1c640b19d4ffa8a4ee864ff67c5de);
var popup_ef624ffebe4644c7b859d5e7b6a85b35 = L.popup({maxWidth: '300'});
var html_ef1ec607d8034a21ac5053a102959383 = $(' <div id="html_ef1ec607d8034a21ac5053a102959383" style="width: 100.0%; height: 100.0%;"> (1, 2)</div> ')[0];
popup_ef624ffebe4644c7b859d5e7b6a85b35.setContent(html_ef1ec607d8034a21ac5053a102959383);
marker_16f3c03176c348c09a576ec02778a8f0.bindPopup(popup_ef624ffebe4644c7b859d5e7b6a85b35);
var marker_5c1eebcd2eaf48e7836d09fae6d5fb9a = L.marker(
[37.818019179,-122.366925164],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_ecc25bfa711c46feb4f5c244bae67cb7 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5c1eebcd2eaf48e7836d09fae6d5fb9a.setIcon(icon_ecc25bfa711c46feb4f5c244bae67cb7);
var popup_f3b66b550b0f435e9274cd934d66fe41 = L.popup({maxWidth: '300'});
var html_b60ef353b6f64300a759ada8b465834a = $(' <div id="html_b60ef353b6f64300a759ada8b465834a" style="width: 100.0%; height: 100.0%;"> (1, 3)</div> ')[0];
popup_f3b66b550b0f435e9274cd934d66fe41.setContent(html_b60ef353b6f64300a759ada8b465834a);
marker_5c1eebcd2eaf48e7836d09fae6d5fb9a.bindPopup(popup_f3b66b550b0f435e9274cd934d66fe41);
var marker_baac4c38a7b940f4bdd7014bae696e73 = L.marker(
[37.7932920616,-122.39292827],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_445b0032263d43ba91acf25fed6a59e5 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_baac4c38a7b940f4bdd7014bae696e73.setIcon(icon_445b0032263d43ba91acf25fed6a59e5);
var popup_c77e009cfd8e4d169a28aa0721c99b60 = L.popup({maxWidth: '300'});
var html_e3d7d41e3c964e008589f06aaeeaf24b = $(' <div id="html_e3d7d41e3c964e008589f06aaeeaf24b" style="width: 100.0%; height: 100.0%;"> (1, 4)</div> ')[0];
popup_c77e009cfd8e4d169a28aa0721c99b60.setContent(html_e3d7d41e3c964e008589f06aaeeaf24b);
marker_baac4c38a7b940f4bdd7014bae696e73.bindPopup(popup_c77e009cfd8e4d169a28aa0721c99b60);
var marker_2acd15e489434b36876bae9aba68e674 = L.marker(
[37.7655550293,-122.432746969],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_1108693b38324196b6d3e7b7f6e13a74 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2acd15e489434b36876bae9aba68e674.setIcon(icon_1108693b38324196b6d3e7b7f6e13a74);
var popup_10ef18613ef04ee3b2601aed12b0d7f0 = L.popup({maxWidth: '300'});
var html_968a068377c346418f1cdcfd9c10cfc3 = $(' <div id="html_968a068377c346418f1cdcfd9c10cfc3" style="width: 100.0%; height: 100.0%;"> (1, 5)</div> ')[0];
popup_10ef18613ef04ee3b2601aed12b0d7f0.setContent(html_968a068377c346418f1cdcfd9c10cfc3);
marker_2acd15e489434b36876bae9aba68e674.bindPopup(popup_10ef18613ef04ee3b2601aed12b0d7f0);
var marker_f7349193c7a7434c86f107e857654554 = L.marker(
[37.7989778384,-122.437822797],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_909f605811a74217a390a87a4b4dd297 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f7349193c7a7434c86f107e857654554.setIcon(icon_909f605811a74217a390a87a4b4dd297);
var popup_bfa9857dca20439eab46086a421eda6e = L.popup({maxWidth: '300'});
var html_86575908783746ec9cbd2d823860d811 = $(' <div id="html_86575908783746ec9cbd2d823860d811" style="width: 100.0%; height: 100.0%;"> (1, 6)</div> ')[0];
popup_bfa9857dca20439eab46086a421eda6e.setContent(html_86575908783746ec9cbd2d823860d811);
marker_f7349193c7a7434c86f107e857654554.bindPopup(popup_bfa9857dca20439eab46086a421eda6e);
var marker_9884a26a16bf41bdabc8bdb795274c13 = L.marker(
[37.7626505328,-122.479927906],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_880f6fb3ae264000932a7cf7f37b574e = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_9884a26a16bf41bdabc8bdb795274c13.setIcon(icon_880f6fb3ae264000932a7cf7f37b574e);
var popup_61b579f838e6400abdb85e4133de4680 = L.popup({maxWidth: '300'});
var html_726bee79130347338456e2a837a7e911 = $(' <div id="html_726bee79130347338456e2a837a7e911" style="width: 100.0%; height: 100.0%;"> (2, 1)</div> ')[0];
popup_61b579f838e6400abdb85e4133de4680.setContent(html_726bee79130347338456e2a837a7e911);
marker_9884a26a16bf41bdabc8bdb795274c13.bindPopup(popup_61b579f838e6400abdb85e4133de4680);
var marker_ecf640679dcb468c9818896ab589f69e = L.marker(
[37.7429625611,-122.386505548],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_0cd6690c722643da86706e170021479b = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_ecf640679dcb468c9818896ab589f69e.setIcon(icon_0cd6690c722643da86706e170021479b);
var popup_f93164657e5540ef9ee20aeeee0fb43f = L.popup({maxWidth: '300'});
var html_60e5ccf9cdd84ad59dacd4f1698c2fb7 = $(' <div id="html_60e5ccf9cdd84ad59dacd4f1698c2fb7" style="width: 100.0%; height: 100.0%;"> (2, 2)</div> ')[0];
popup_f93164657e5540ef9ee20aeeee0fb43f.setContent(html_60e5ccf9cdd84ad59dacd4f1698c2fb7);
marker_ecf640679dcb468c9818896ab589f69e.bindPopup(popup_f93164657e5540ef9ee20aeeee0fb43f);
var marker_66c016bdedc34de9a7c373ea887ce9db = L.marker(
[37.7602531171,-122.444337571],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_7f970461317e45ce96d1f7554095ec87 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_66c016bdedc34de9a7c373ea887ce9db.setIcon(icon_7f970461317e45ce96d1f7554095ec87);
var popup_32541988854546e98c327570f8dfcdbe = L.popup({maxWidth: '300'});
var html_cd4d4a19994a46bc9c730c042b39c5cb = $(' <div id="html_cd4d4a19994a46bc9c730c042b39c5cb" style="width: 100.0%; height: 100.0%;"> (2, 3)</div> ')[0];
popup_32541988854546e98c327570f8dfcdbe.setContent(html_cd4d4a19994a46bc9c730c042b39c5cb);
marker_66c016bdedc34de9a7c373ea887ce9db.bindPopup(popup_32541988854546e98c327570f8dfcdbe);
var marker_6931c9cc8361476693c5322c2e90539f = L.marker(
[37.7676239145,-122.468359017],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_7f55919d14ed477aaef353999bd66aec = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6931c9cc8361476693c5322c2e90539f.setIcon(icon_7f55919d14ed477aaef353999bd66aec);
var popup_1616b6a076db4868833b2b674d35f61e = L.popup({maxWidth: '300'});
var html_199a24fd078e4292ac4488f8190e58ab = $(' <div id="html_199a24fd078e4292ac4488f8190e58ab" style="width: 100.0%; height: 100.0%;"> (2, 4)</div> ')[0];
popup_1616b6a076db4868833b2b674d35f61e.setContent(html_199a24fd078e4292ac4488f8190e58ab);
marker_6931c9cc8361476693c5322c2e90539f.bindPopup(popup_1616b6a076db4868833b2b674d35f61e);
var marker_837ff749815949199b4446519221796b = L.marker(
[37.7239263145,-122.374129745],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_be602ff0ad2540ba9319b33e529be0a8 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_837ff749815949199b4446519221796b.setIcon(icon_be602ff0ad2540ba9319b33e529be0a8);
var popup_4309b8ec310448b18301b07c16d63c07 = L.popup({maxWidth: '300'});
var html_9242827fbf304b2f99257eb5803d8e5a = $(' <div id="html_9242827fbf304b2f99257eb5803d8e5a" style="width: 100.0%; height: 100.0%;"> (2, 5)</div> ')[0];
popup_4309b8ec310448b18301b07c16d63c07.setContent(html_9242827fbf304b2f99257eb5803d8e5a);
marker_837ff749815949199b4446519221796b.bindPopup(popup_4309b8ec310448b18301b07c16d63c07);
var marker_5764452027a54447bb8ed39d824f3e39 = L.marker(
[37.7278024242,-122.4106282],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_5b9b922d060b453dad4a520dde6fc98c = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5764452027a54447bb8ed39d824f3e39.setIcon(icon_5b9b922d060b453dad4a520dde6fc98c);
var popup_ed49e387040646a084f148789df07210 = L.popup({maxWidth: '300'});
var html_86e5a43131ee4678912d9881aa465ef4 = $(' <div id="html_86e5a43131ee4678912d9881aa465ef4" style="width: 100.0%; height: 100.0%;"> (2, 6)</div> ')[0];
popup_ed49e387040646a084f148789df07210.setContent(html_86e5a43131ee4678912d9881aa465ef4);
marker_5764452027a54447bb8ed39d824f3e39.bindPopup(popup_ed49e387040646a084f148789df07210);
var marker_f2b2f2b54ea24388902a9280d99b5d4d = L.marker(
[37.7334606694,-122.479451634],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_9f42008aca10400eb4d758ff21ac67cf = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f2b2f2b54ea24388902a9280d99b5d4d.setIcon(icon_9f42008aca10400eb4d758ff21ac67cf);
var popup_aca938804b7f4ddba1f22da6a8a951e2 = L.popup({maxWidth: '300'});
var html_b0e34b0a808b47d5aedf320daec732d5 = $(' <div id="html_b0e34b0a808b47d5aedf320daec732d5" style="width: 100.0%; height: 100.0%;"> (3, 1)</div> ')[0];
popup_aca938804b7f4ddba1f22da6a8a951e2.setContent(html_b0e34b0a808b47d5aedf320daec732d5);
marker_f2b2f2b54ea24388902a9280d99b5d4d.bindPopup(popup_aca938804b7f4ddba1f22da6a8a951e2);
var marker_112ec60ffd4f4bd29695f68af291e498 = L.marker(
[37.7645432764,-122.395946783],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_95d19bc693404c0fa79e54eb88f8221f = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_112ec60ffd4f4bd29695f68af291e498.setIcon(icon_95d19bc693404c0fa79e54eb88f8221f);
var popup_13a8d786f9da44f08782d0eee7c56263 = L.popup({maxWidth: '300'});
var html_ff27c61116b84544805bf84a035f1f74 = $(' <div id="html_ff27c61116b84544805bf84a035f1f74" style="width: 100.0%; height: 100.0%;"> (3, 2)</div> ')[0];
popup_13a8d786f9da44f08782d0eee7c56263.setContent(html_ff27c61116b84544805bf84a035f1f74);
marker_112ec60ffd4f4bd29695f68af291e498.bindPopup(popup_13a8d786f9da44f08782d0eee7c56263);
var marker_c2b884a5335346b7a6960b0a778d2463 = L.marker(
[37.7688351139,-122.410120338],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_3daba3b7468740b8b542930bc736e645 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c2b884a5335346b7a6960b0a778d2463.setIcon(icon_3daba3b7468740b8b542930bc736e645);
var popup_ec41e475cb464810ab44f5afc176beba = L.popup({maxWidth: '300'});
var html_5bb6434a0ce1430ea293dbb05d1de18b = $(' <div id="html_5bb6434a0ce1430ea293dbb05d1de18b" style="width: 100.0%; height: 100.0%;"> (3, 3)</div> ')[0];
popup_ec41e475cb464810ab44f5afc176beba.setContent(html_5bb6434a0ce1430ea293dbb05d1de18b);
marker_c2b884a5335346b7a6960b0a778d2463.bindPopup(popup_ec41e475cb464810ab44f5afc176beba);
var marker_50756e9a6cc64643a1a22285d8b2ca86 = L.marker(
[37.7416773227,-122.400723561],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_5d7030a565f34263bf6b9feb9f093169 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_50756e9a6cc64643a1a22285d8b2ca86.setIcon(icon_5d7030a565f34263bf6b9feb9f093169);
var popup_06900863920f446fa1575bfd0cdb6d89 = L.popup({maxWidth: '300'});
var html_f0a516564f38483a97189e3a8c432c57 = $(' <div id="html_f0a516564f38483a97189e3a8c432c57" style="width: 100.0%; height: 100.0%;"> (3, 4)</div> ')[0];
popup_06900863920f446fa1575bfd0cdb6d89.setContent(html_f0a516564f38483a97189e3a8c432c57);
marker_50756e9a6cc64643a1a22285d8b2ca86.bindPopup(popup_06900863920f446fa1575bfd0cdb6d89);
var marker_3ce31d07973e485b96e62a0da8745d6c = L.marker(
[37.7188316107,-122.505361883],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_6cac4aabdcba4e72ba74cb1790bf68a5 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3ce31d07973e485b96e62a0da8745d6c.setIcon(icon_6cac4aabdcba4e72ba74cb1790bf68a5);
var popup_8e23cbe052b84d8f87bd465bc8262f18 = L.popup({maxWidth: '300'});
var html_01ea371ec4264728a5ffef8302833add = $(' <div id="html_01ea371ec4264728a5ffef8302833add" style="width: 100.0%; height: 100.0%;"> (3, 5)</div> ')[0];
popup_8e23cbe052b84d8f87bd465bc8262f18.setContent(html_01ea371ec4264728a5ffef8302833add);
marker_3ce31d07973e485b96e62a0da8745d6c.bindPopup(popup_8e23cbe052b84d8f87bd465bc8262f18);
var marker_d06d7e40d9c44be9bcdadb72501201b4 = L.marker(
[37.7153424942,-122.389932454],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_e3e41d3451d346e6abdadd19806d74f8 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d06d7e40d9c44be9bcdadb72501201b4.setIcon(icon_e3e41d3451d346e6abdadd19806d74f8);
var popup_26cb116433b04a8694839d9a59ae42db = L.popup({maxWidth: '300'});
var html_e27001b6437a4d48b1fe352551cf6aa3 = $(' <div id="html_e27001b6437a4d48b1fe352551cf6aa3" style="width: 100.0%; height: 100.0%;"> (3, 6)</div> ')[0];
popup_26cb116433b04a8694839d9a59ae42db.setContent(html_e27001b6437a4d48b1fe352551cf6aa3);
marker_d06d7e40d9c44be9bcdadb72501201b4.bindPopup(popup_26cb116433b04a8694839d9a59ae42db);
var marker_1c0666f2325747ed9c572b82e50341b3 = L.marker(
[37.7970128629,-122.430779249],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_f1536915f707409686a6978a335eae42 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1c0666f2325747ed9c572b82e50341b3.setIcon(icon_f1536915f707409686a6978a335eae42);
var popup_1453db51f10b4c17b07d93e552b7036b = L.popup({maxWidth: '300'});
var html_5e6222dc59004ef288296cc07aebaa05 = $(' <div id="html_5e6222dc59004ef288296cc07aebaa05" style="width: 100.0%; height: 100.0%;"> (4, 1)</div> ')[0];
popup_1453db51f10b4c17b07d93e552b7036b.setContent(html_5e6222dc59004ef288296cc07aebaa05);
marker_1c0666f2325747ed9c572b82e50341b3.bindPopup(popup_1453db51f10b4c17b07d93e552b7036b);
var marker_19c6968afab64066a3d8ff1215174757 = L.marker(
[37.7465390903,-122.458105357],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_d83f5def033d4412aba7f79713d6f71b = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_19c6968afab64066a3d8ff1215174757.setIcon(icon_d83f5def033d4412aba7f79713d6f71b);
var popup_83a44fa6a5fe4757a6a4b44985c51517 = L.popup({maxWidth: '300'});
var html_79d7a91af1704700b71bacf50b4c1baa = $(' <div id="html_79d7a91af1704700b71bacf50b4c1baa" style="width: 100.0%; height: 100.0%;"> (4, 2)</div> ')[0];
popup_83a44fa6a5fe4757a6a4b44985c51517.setContent(html_79d7a91af1704700b71bacf50b4c1baa);
marker_19c6968afab64066a3d8ff1215174757.bindPopup(popup_83a44fa6a5fe4757a6a4b44985c51517);
var marker_3259165b46034c71bcc82661dfc2a9b7 = L.marker(
[37.7348569016,-122.439939591],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_82f7b651425342d39084e4e3fcd08c1d = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3259165b46034c71bcc82661dfc2a9b7.setIcon(icon_82f7b651425342d39084e4e3fcd08c1d);
var popup_68c24ca470a74284842bb8e5b899f05a = L.popup({maxWidth: '300'});
var html_0e78befb917a41bb8fc8ffdcb8d1854e = $(' <div id="html_0e78befb917a41bb8fc8ffdcb8d1854e" style="width: 100.0%; height: 100.0%;"> (4, 3)</div> ')[0];
popup_68c24ca470a74284842bb8e5b899f05a.setContent(html_0e78befb917a41bb8fc8ffdcb8d1854e);
marker_3259165b46034c71bcc82661dfc2a9b7.bindPopup(popup_68c24ca470a74284842bb8e5b899f05a);
var marker_2a034450f5a240bba1b5def4d50cc003 = L.marker(
[37.7819692553,-122.501979364],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_8fbe182872c348989e4e968392c702ca = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2a034450f5a240bba1b5def4d50cc003.setIcon(icon_8fbe182872c348989e4e968392c702ca);
var popup_ce5ebe42a186486fa1888918738b1627 = L.popup({maxWidth: '300'});
var html_4903b8450a8e4370ac48b203b18b842f = $(' <div id="html_4903b8450a8e4370ac48b203b18b842f" style="width: 100.0%; height: 100.0%;"> (4, 4)</div> ')[0];
popup_ce5ebe42a186486fa1888918738b1627.setContent(html_4903b8450a8e4370ac48b203b18b842f);
marker_2a034450f5a240bba1b5def4d50cc003.bindPopup(popup_ce5ebe42a186486fa1888918738b1627);
var marker_2db5c7c6ceb44cd6b872bb4e2d3d0331 = L.marker(
[37.7195732708,-122.458779116],
{
icon: new L.Icon.Default()
}
)
.addTo(map_a19afe7cfb084272b00e98682697345f);
var icon_06c12e44b0c146a989ecfe3497a77899 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2db5c7c6ceb44cd6b872bb4e2d3d0331.setIcon(icon_06c12e44b0c146a989ecfe3497a77899);
var popup_13f8e7eaeba845df84339b501e84dd3e = L.popup({maxWidth: '300'});
var html_48639ee3b5394507ab7461f54d6eb366 = $(' <div id="html_48639ee3b5394507ab7461f54d6eb366" style="width: 100.0%; height: 100.0%;"> (4, 5)</div> ')[0];
popup_13f8e7eaeba845df84339b501e84dd3e.setContent(html_48639ee3b5394507ab7461f54d6eb366);
marker_2db5c7c6ceb44cd6b872bb4e2d3d0331.bindPopup(popup_13f8e7eaeba845df84339b501e84dd3e);
var marker_bb8c35aae10349ea8f117742d4a73534 = L.marker(
[37.7162594506,-122.483268128],
{
icon: new L.Icon.Default()
}