-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
4210 lines (2945 loc) · 155 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://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.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_3efb59dcb59d4e698e1e1265d112932c {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_3efb59dcb59d4e698e1e1265d112932c" ></div>
</body>
<script>
var bounds = null;
var map_3efb59dcb59d4e698e1e1265d112932c = L.map(
'map_3efb59dcb59d4e698e1e1265d112932c',
{center: [37.830537466249126,-122.26643485866525],
zoom: 12,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_4455e7c5d209484397bf81b4a23f8958 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var poly_line_2d862cda301a41c4a5a7974ed1a56f52 = L.polyline(
[[37.80454, -122.27175], [37.80432, -122.27119], [37.80363, -122.27162], [37.80322, -122.27056], [37.80322, -122.27056], [37.80038, -122.26332], [37.80124, -122.26282], [37.80121, -122.2627], [37.80132, -122.26264], [37.80132, -122.26264], [37.80098, -122.26278], [37.80082, -122.26251], [37.80055, -122.26229], [37.79916, -122.26197], [37.79862, -122.26157], [37.79827, -122.26098], [37.79818, -122.26056], [37.79807, -122.25857], [37.79812, -122.25813], [37.79787, -122.25796], [37.79727, -122.25731], [37.79581, -122.25563], [37.79584, -122.25559], [37.79584, -122.25559], [37.79581, -122.25563], [37.79434, -122.25397], [37.79438, -122.25391], [37.79438, -122.25391], [37.79568, -122.2521], [37.79274, -122.24877], [37.79273, -122.24879], [37.79273, -122.24879], [37.78985, -122.24554], [37.79018, -122.24508], [37.78604, -122.23815], [37.7852, -122.23894], [37.78518, -122.2389], [37.78518, -122.2389], [37.7852, -122.23894], [37.78604, -122.23815], [37.78291, -122.23292], [37.78249, -122.23332], [37.78234, -122.23303], [37.78189, -122.23341], [37.7814, -122.23259], [37.78108, -122.23292], [37.78108, -122.23292], [37.7814, -122.23259], [37.78074, -122.23149], [37.7824, -122.22992], [37.78036, -122.2265], [37.7798, -122.22475], [37.77769, -122.22581], [37.77769, -122.22581], [37.77627, -122.22655], [37.7761, -122.22578], [37.77611, -122.2255], [37.77621, -122.22514], [37.77621, -122.22474], [37.77617, -122.22446], [37.77603, -122.22403], [37.77558, -122.22311], [37.77485, -122.22366], [37.77494, -122.2239], [37.77507, -122.22412], [37.77513, -122.22416], [37.77525, -122.22449], [37.77525, -122.22449], [37.77485, -122.22366], [37.77558, -122.22311], [37.77524, -122.22257], [37.77397, -122.2215], [37.77319, -122.2199], [37.77424, -122.21909], [37.77441, -122.21885], [37.77667, -122.21716], [37.77697, -122.21712], [37.77566, -122.21461], [37.77651, -122.21387], [37.77575, -122.21303], [37.77575, -122.21303], [37.77993, -122.21772], [37.77993, -122.21772], [37.78075, -122.21863], [37.78214, -122.21911], [37.78229, -122.21917], [37.78239, -122.21925], [37.78254, -122.21948], [37.78286, -122.22017], [37.7837, -122.22264], [37.7837, -122.22264], [37.78427, -122.22447], [37.78435, -122.22552], [37.78481, -122.23302], [37.78444, -122.23336], [37.78501, -122.23433], [37.78519, -122.23439], [37.78519, -122.23439], [37.78533, -122.23473], [37.78542, -122.23467], [37.78589, -122.2357], [37.79001, -122.24261], [37.79018, -122.24245], [37.79018, -122.24245], [37.79001, -122.24261], [37.79063, -122.24363], [37.79023, -122.24406], [37.79052, -122.24458], [37.79107, -122.24524], [37.79901, -122.2542], [37.79934, -122.25442], [37.80021, -122.2538], [37.80021, -122.2538], [37.7994, -122.25434], [37.79594, -122.25917], [37.79638, -122.25971], [37.79768, -122.263], [37.79768, -122.263], [37.79784, -122.26343], [37.79668, -122.26417], [37.79655, -122.26436], [37.79657, -122.26455], [37.79694, -122.26547], [37.79729, -122.26525], [37.79729, -122.26525], [37.79831, -122.26462], [37.79923, -122.26697], [37.80002, -122.26648], [37.80002, -122.26648], [37.79923, -122.26697], [37.80063, -122.27052], [37.79926, -122.27137], [37.80068, -122.27501], [37.80078, -122.27495], [37.80078, -122.27495], [37.80137, -122.27458], [37.80041, -122.27213], [37.80051, -122.27207], [37.80051, -122.27207], [37.80041, -122.27213], [37.79994, -122.27095], [37.79809, -122.2721], [37.79784, -122.27217], [37.79715, -122.27268], [37.79517, -122.27391], [37.79517, -122.27391], [37.79512, -122.27395], [37.797, -122.27877], [37.79623, -122.27924], [37.79627, -122.27934], [37.79627, -122.27934], [37.79623, -122.27924], [37.797, -122.27877], [37.79915, -122.28421], [37.79988, -122.28393], [37.79994, -122.2838], [37.80238, -122.28292], [37.8037, -122.28255], [37.8037, -122.28255], [37.80542, -122.28192], [37.80712, -122.28937], [37.80723, -122.28933], [37.80723, -122.28933], [37.80438, -122.29037], [37.80535, -122.29483], [37.80535, -122.29483], [37.80537, -122.29492], [37.81112, -122.29289], [37.81078, -122.2914], [37.81078, -122.2914], [37.81052, -122.29025], [37.81027, -122.28956], [37.81021, -122.28931], [37.81325, -122.2882], [37.81274, -122.28603], [37.81237, -122.28514], [37.81234, -122.28518], [37.81234, -122.28518], [37.81237, -122.28514], [37.8095, -122.28617], [37.80884, -122.28326], [37.80884, -122.28326], [37.80877, -122.28261], [37.80855, -122.28171], [37.80843, -122.28141], [37.80811, -122.28085], [37.80983, -122.28022], [37.80983, -122.28022], [37.81122, -122.27972], [37.81176, -122.27965], [37.81594, -122.27814], [37.81601, -122.27826], [37.81601, -122.27826], [37.81594, -122.27814], [37.81756, -122.27755], [37.81791, -122.27572], [37.81783, -122.2757], [37.81783, -122.2757], [37.81768, -122.27565], [37.81766, -122.27552], [37.81884, -122.27596], [37.81893, -122.27592], [37.82059, -122.27646], [37.82333, -122.27578], [37.82333, -122.27578], [37.82326, -122.27579], [37.82362, -122.27733], [37.82361, -122.27743], [37.82351, -122.27764], [37.82304, -122.27783], [37.82381, -122.28121], [37.82381, -122.28121], [37.82435, -122.2836], [37.82757, -122.28465], [37.82723, -122.28607], [37.82777, -122.28635], [37.82804, -122.28713], [37.82969, -122.28767], [37.82969, -122.28767], [37.83077, -122.28801], [37.83124, -122.28562], [37.83124, -122.28562], [37.8312, -122.28583], [37.833, -122.28646], [37.83605, -122.28763], [37.83616, -122.28717], [37.83616, -122.28717], [37.83605, -122.28763], [37.83732, -122.28817], [37.8384, -122.28885], [37.83845, -122.28867], [37.83845, -122.28867], [37.83908, -122.28715], [37.8399, -122.28745], [37.84191, -122.2881], [37.84191, -122.2881], [37.84164, -122.28801], [37.84096, -122.29136], [37.84096, -122.29136], [37.84094, -122.29145], [37.84089, -122.29145], [37.83924, -122.29092], [37.83907, -122.29169], [37.83895, -122.29226], [37.83881, -122.29329], [37.83976, -122.29353], [37.83982, -122.29359], [37.84076, -122.29335], [37.8407, -122.29342], [37.84051, -122.29346], [37.84051, -122.29346], [37.84094, -122.29329], [37.84127, -122.29301], [37.84157, -122.29297], [37.844, -122.29372], [37.84502, -122.29425], [37.84617, -122.29459], [37.8468, -122.29138], [37.8468, -122.29138], [37.84723, -122.28927], [37.84777, -122.28925], [37.8481, -122.28913], [37.84996, -122.28888], [37.8509, -122.28893], [37.85123, -122.28901], [37.85118, -122.28924], [37.85307, -122.28987], [37.85316, -122.28944], [37.85332, -122.28949], [37.85342, -122.28899], [37.8539, -122.28915], [37.85383, -122.28948], [37.85352, -122.28939], [37.85352, -122.28939], [37.85383, -122.28948], [37.8539, -122.28915], [37.85342, -122.28899], [37.85332, -122.28949], [37.85881, -122.29127], [37.85889, -122.29122], [37.85889, -122.29122], [37.85866, -122.29239], [37.86394, -122.29409], [37.8638, -122.29522], [37.86956, -122.29702], [37.86909, -122.29926], [37.87041, -122.29968], [37.87041, -122.29968], [37.86788, -122.29886], [37.86765, -122.29991], [37.86628, -122.29945], [37.86629, -122.29938], [37.86629, -122.29938], [37.86648, -122.29842], [37.86152, -122.29682], [37.86284, -122.29023], [37.86284, -122.29023], [37.86338, -122.28621], [37.86158, -122.28584], [37.86163, -122.28549], [37.85733, -122.2846], [37.85747, -122.28342], [37.85579, -122.28308], [37.85579, -122.28308], [37.85558, -122.28304], [37.8557, -122.28215], [37.85449, -122.2819], [37.85452, -122.28171], [37.85059, -122.28081], [37.85109, -122.27858], [37.85061, -122.27846], [37.85064, -122.27819], [37.85064, -122.27819], [37.85086, -122.27644], [37.85083, -122.27638], [37.85002, -122.27621], [37.84996, -122.27626], [37.84993, -122.27619], [37.84913, -122.27603], [37.84908, -122.27608], [37.84904, -122.27603], [37.84909, -122.27597], [37.84936, -122.27391], [37.84937, -122.27382], [37.84933, -122.27375], [37.84938, -122.27371], [37.8495, -122.27279], [37.84946, -122.27273], [37.84951, -122.27268], [37.84967, -122.27143], [37.8497, -122.27058], [37.8497, -122.27058], [37.84968, -122.27097], [37.84981, -122.27092], [37.84985, -122.27079], [37.85051, -122.27055], [37.85058, -122.27063], [37.85104, -122.27058], [37.85132, -122.27071], [37.85242, -122.27083], [37.85231, -122.27031], [37.85248, -122.27024], [37.85248, -122.27024], [37.85198, -122.27043], [37.85194, -122.27041], [37.85185, -122.27008], [37.85196, -122.27005], [37.85192, -122.26988], [37.85193, -122.26976], [37.85215, -122.26801], [37.85284, -122.26815], [37.8535, -122.26309], [37.85557, -122.26351], [37.85557, -122.26351], [37.85569, -122.26351], [37.85618, -122.25975], [37.85596, -122.25978], [37.85596, -122.25978], [37.85519, -122.25988], [37.85516, -122.2601], [37.8559, -122.26003], [37.85592, -122.26011], [37.85583, -122.2608], [37.85603, -122.26083], [37.85598, -122.26124], [37.85735, -122.26152], [37.85741, -122.26147], [37.85745, -122.26155], [37.85749, -122.26156], [37.85749, -122.26156], [37.8583, -122.26172], [37.85763, -122.26681], [37.85754, -122.26758], [37.85757, -122.26759], [37.85757, -122.26759], [37.85754, -122.26758], [37.85732, -122.26915], [37.86012, -122.26946], [37.86012, -122.26946], [37.86906, -122.27046], [37.86905, -122.27055], [37.86905, -122.27055], [37.86879, -122.2727], [37.87172, -122.27303], [37.87172, -122.27303], [37.87245, -122.27312], [37.87219, -122.27523], [37.87215, -122.27533], [37.8722, -122.27541], [37.87215, -122.27548], [37.87159, -122.27989], [37.87055, -122.27977], [37.87055, -122.27977], [37.87267, -122.28], [37.87267, -122.2803], [37.87272, -122.28044], [37.87278, -122.28055], [37.87302, -122.28078], [37.87309, -122.28091], [37.87312, -122.28103], [37.87306, -122.28168], [37.87311, -122.28203], [37.87298, -122.28289], [37.87401, -122.28305], [37.87401, -122.28305], [37.87476, -122.28317], [37.87652, -122.26952], [37.87652, -122.26952], [37.87674, -122.26781], [37.88037, -122.2682], [37.8802, -122.26959], [37.8802, -122.26959], [37.88062, -122.26595], [37.88096, -122.26368], [37.87915, -122.2635], [37.87921, -122.26306], [37.87628, -122.26243], [37.87605, -122.26219], [37.87587, -122.26177], [37.87603, -122.26035], [37.87508, -122.26015], [37.87504, -122.26056], [37.87504, -122.26056], [37.87465, -122.26376], [37.87434, -122.26473], [37.87387, -122.26865], [37.87379, -122.26864], [37.87379, -122.26864], [37.87314, -122.26857], [37.87303, -122.26849], [37.8731, -122.26833], [37.87325, -122.26706], [37.8723, -122.26687], [37.87236, -122.26645], [37.87236, -122.26645], [37.8724, -122.26615], [37.87059, -122.26595], [37.87036, -122.26777], [37.87036, -122.26777], [37.87059, -122.26595], [37.86966, -122.26586], [37.86882, -122.26628], [37.86864, -122.26624], [37.8683, -122.26608], [37.86791, -122.26601], [37.86792, -122.26591], [37.86779, -122.26589], [37.86779, -122.26589], [37.86785, -122.2659], [37.86783, -122.26599], [37.86604, -122.26564], [37.86581, -122.26743], [37.86581, -122.26743], [37.86604, -122.26564], [37.86418, -122.26527], [37.86408, -122.26521], [37.86345, -122.26507], [37.86339, -122.26509], [37.86333, -122.26502], [37.86327, -122.26504], [37.86246, -122.26488], [37.86247, -122.26479], [37.86247, -122.26479], [37.86275, -122.26269], [37.86272, -122.26263], [37.86191, -122.26246], [37.86185, -122.26251], [37.86181, -122.26245], [37.86187, -122.26239], [37.86232, -122.2588], [37.86232, -122.2588], [37.86506, -122.25844], [37.86603, -122.25864], [37.86601, -122.2588], [37.86601, -122.2588], [37.86603, -122.25864], [37.86691, -122.25882], [37.86721, -122.25655], [37.869, -122.25692], [37.86876, -122.25875], [37.86876, -122.25875], [37.86881, -122.25835], [37.87033, -122.25864], [37.87052, -122.25797], [37.87068, -122.25763], [37.87056, -122.25701], [37.87073, -122.2558], [37.87027, -122.25504], [37.86998, -122.25498], [37.87008, -122.25423], [37.87, -122.25417], [37.86937, -122.25402], [37.86933, -122.25433], [37.86933, -122.25433], [37.8693, -122.25461], [37.86902, -122.25458], [37.86656, -122.25409], [37.86656, -122.25382], [37.86656, -122.25382], [37.86656, -122.25409], [37.86572, -122.25391], [37.8618, -122.25353], [37.8618, -122.25357], [37.8618, -122.25357], [37.8618, -122.25353], [37.86173, -122.25352], [37.85848, -122.2532], [37.85848, -122.25325], [37.85848, -122.25325], [37.85848, -122.2532], [37.85138, -122.2525], [37.85138, -122.2525], [37.84815, -122.25216], [37.84815, -122.25216], [37.84429, -122.25177], [37.84429, -122.25177], [37.8418, -122.2515], [37.8418, -122.2515], [37.84235, -122.25156], [37.8452, -122.25719], [37.84425, -122.25796], [37.84463, -122.25871], [37.84428, -122.26135], [37.84449, -122.26132], [37.84449, -122.26132], [37.8502, -122.26053], [37.85024, -122.26018], [37.85024, -122.26018], [37.84953, -122.26556], [37.84953, -122.26556], [37.8495, -122.26575], [37.84651, -122.26534], [37.84651, -122.26534], [37.84359, -122.26494], [37.84321, -122.26787], [37.84263, -122.26775], [37.84263, -122.26775], [37.84167, -122.26755], [37.84114, -122.27205], [37.83965, -122.27175], [37.83965, -122.27175], [37.83954, -122.27172], [37.84045, -122.26463], [37.84045, -122.26453], [37.84036, -122.26452], [37.84036, -122.26452], [37.84045, -122.26453], [37.84046, -122.26439], [37.84027, -122.26227], [37.84019, -122.26182], [37.84019, -122.26182], [37.8402, -122.2619], [37.83799, -122.26221], [37.83794, -122.26273], [37.83753, -122.26277], [37.83726, -122.26293], [37.83712, -122.26308], [37.83712, -122.26348], [37.83707, -122.26386], [37.83682, -122.26383], [37.83673, -122.26389], [37.83672, -122.26403], [37.8368, -122.26405], [37.8368, -122.26405], [37.83672, -122.26403], [37.83673, -122.26389], [37.83664, -122.26365], [37.83643, -122.26251], [37.83597, -122.26264], [37.83593, -122.26237], [37.83593, -122.26237], [37.8353, -122.25869], [37.83662, -122.25832], [37.83796, -122.25726], [37.83796, -122.25726], [37.83951, -122.25601], [37.83714, -122.25128], [37.83813, -122.25127], [37.83813, -122.25127], [37.83635, -122.25127], [37.83579, -122.25162], [37.83579, -122.25162], [37.8357, -122.25168], [37.83565, -122.25156], [37.83549, -122.25149], [37.83446, -122.24972], [37.83371, -122.25048], [37.83365, -122.25049], [37.83295, -122.25087], [37.83329, -122.25176], [37.83334, -122.25199], [37.83328, -122.25232], [37.83321, -122.25243], [37.83304, -122.25254], [37.83318, -122.25298], [37.83331, -122.25622], [37.83331, -122.25622], [37.83342, -122.25899], [37.83304, -122.26343], [37.83326, -122.26337], [37.83326, -122.26337], [37.83304, -122.26343], [37.83297, -122.26364], [37.83357, -122.26741], [37.83357, -122.26741], [37.83446, -122.27297], [37.83419, -122.27304], [37.83419, -122.27304], [37.83453, -122.27295], [37.83521, -122.27309], [37.83576, -122.27655], [37.83663, -122.27622], [37.83663, -122.27636], [37.83572, -122.28085], [37.83572, -122.28106], [37.83562, -122.28142], [37.83559, -122.28128], [37.83563, -122.28105], [37.83563, -122.28105], [37.83572, -122.28085], [37.83663, -122.27636], [37.83663, -122.27622], [37.83127, -122.27825], [37.83127, -122.27825], [37.83134, -122.27822], [37.83108, -122.27666], [37.83096, -122.27594], [37.83092, -122.27588], [37.83085, -122.27555], [37.8306, -122.27395], [37.83055, -122.27396], [37.83055, -122.27396], [37.82715, -122.27482], [37.82669, -122.2718], [37.82669, -122.2718], [37.82671, -122.2719], [37.83025, -122.27101], [37.83024, -122.27095], [37.83024, -122.27095], [37.83025, -122.27101], [37.83014, -122.27103], [37.82936, -122.26606], [37.82842, -122.26634], [37.82842, -122.26634], [37.82599, -122.26698], [37.8259, -122.26688], [37.82565, -122.26541], [37.82254, -122.26625], [37.82254, -122.26625], [37.82635, -122.26522], [37.82629, -122.2651], [37.82629, -122.2651], [37.82585, -122.26418], [37.82571, -122.26382], [37.82493, -122.26048], [37.82493, -122.26048], [37.82475, -122.2598], [37.82435, -122.25861], [37.82754, -122.25664], [37.8276, -122.25673], [37.82773, -122.25665], [37.82773, -122.25665], [37.81936, -122.26187], [37.81936, -122.26187], [37.81435, -122.265], [37.81397, -122.26474], [37.81142, -122.26541], [37.81137, -122.26519], [37.81137, -122.26519], [37.81074, -122.26143], [37.81058, -122.26071], [37.8106, -122.26056], [37.81051, -122.26032], [37.81027, -122.25995], [37.80969, -122.2592], [37.80942, -122.25866], [37.80928, -122.25832], [37.80914, -122.25779], [37.80906, -122.25724], [37.809, -122.2565], [37.80891, -122.25653], [37.80891, -122.25653], [37.809, -122.2565], [37.8086, -122.25162], [37.80863, -122.25107], [37.80876, -122.25058], [37.80891, -122.25027], [37.80908, -122.25001], [37.81016, -122.24877], [37.81074, -122.24836], [37.81273, -122.24718], [37.81273, -122.24718], [37.81252, -122.24663], [37.81213, -122.24691], [37.81199, -122.24658], [37.81222, -122.24643], [37.81129, -122.24511], [37.81201, -122.24298], [37.8116, -122.24238], [37.81154, -122.2422], [37.81118, -122.24281], [37.81102, -122.24324], [37.81102, -122.24324], [37.81003, -122.24621], [37.80946, -122.24693], [37.80924, -122.24731], [37.80884, -122.24815], [37.80869, -122.24869], [37.80857, -122.2489], [37.80837, -122.24911], [37.80884, -122.2497], [37.80884, -122.2497], [37.80908, -122.25001], [37.80871, -122.25074], [37.80861, -122.25123], [37.8086, -122.25169], [37.80905, -122.25715], [37.80928, -122.25832], [37.80969, -122.2592], [37.81027, -122.25995], [37.81101, -122.26049], [37.81175, -122.2606], [37.81232, -122.26084], [37.81234, -122.26079], [37.81234, -122.26079], [37.81232, -122.26084], [37.81255, -122.26106], [37.81295, -122.2616], [37.81315, -122.26179], [37.81521, -122.26318], [37.81549, -122.26349], [37.81566, -122.26405], [37.81579, -122.26477], [37.81625, -122.26789], [37.81612, -122.26793], [37.81611, -122.26788], [37.81611, -122.26788], [37.81612, -122.26793], [37.81625, -122.26789], [37.81651, -122.26924], [37.81703, -122.27101], [37.81713, -122.27162], [37.817, -122.27165], [37.81703, -122.27176], [37.81703, -122.27176], [37.817, -122.27165], [37.81637, -122.27181], [37.81679, -122.27439], [37.81574, -122.27467], [37.81565, -122.27477], [37.81536, -122.2749], [37.815, -122.27479], [37.815, -122.27479], [37.81034, -122.27328], [37.81051, -122.27321], [37.81127, -122.27346], [37.81135, -122.27342], [37.81135, -122.27342], [37.8116, -122.27325], [37.81168, -122.27309], [37.81182, -122.27296], [37.81249, -122.2728], [37.81184, -122.26902], [37.81268, -122.2688], [37.81268, -122.2688], [37.80957, -122.26959], [37.80909, -122.26837], [37.80903, -122.26824], [37.80901, -122.26825], [37.80901, -122.26825], [37.80903, -122.26824], [37.80854, -122.26688], [37.80797, -122.2645], [37.80784, -122.26455], [37.80784, -122.26455], [37.80795, -122.26444], [37.80803, -122.26429], [37.80814, -122.26459], [37.80845, -122.26609], [37.80775, -122.26608], [37.80696, -122.26657], [37.80696, -122.26657], [37.80684, -122.26664], [37.8081, -122.26983], [37.80826, -122.26992], [37.80869, -122.26982], [37.80869, -122.26982], [37.80826, -122.26992], [37.80834, -122.26996], [37.80838, -122.27006], [37.80885, -122.27306], [37.80885, -122.27332], [37.80873, -122.27385], [37.80876, -122.27411], [37.80885, -122.27433], [37.80615, -122.27601], [37.80615, -122.27601], [37.8062, -122.27598], [37.80454, -122.27175]],
{
"bubblingMouseEvents": true,
"color": "#3388ff",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "#3388ff",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 3
}).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var circle_marker_14c8fb8a089847caa24c3f4fba32893d = L.circleMarker(
[37.8045623549303,-122.27173805236816],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_39b3fe75045a4eb38ff769241b1dbf47 = L.popup({maxWidth: '300'});
var html_6328b2fa39474bd3a6ef7d72258a01a0 = $('<div id="html_6328b2fa39474bd3a6ef7d72258a01a0" style="width: 100.0%; height: 100.0%;">0, 09:30:00, OK-L5: Frank H Ogawa Plaza</div>')[0];
popup_39b3fe75045a4eb38ff769241b1dbf47.setContent(html_6328b2fa39474bd3a6ef7d72258a01a0);
circle_marker_14c8fb8a089847caa24c3f4fba32893d.bindPopup(popup_39b3fe75045a4eb38ff769241b1dbf47);
var circle_marker_ab3424571a9145daa11f302106cadc6e = L.circleMarker(
[37.80318908113163,-122.27057933807373],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_977271a9a9894fa2afec37b39eae6b84 = L.popup({maxWidth: '300'});
var html_efa5c1329b5e4b03b5dc6cee9dc9e778 = $('<div id="html_efa5c1329b5e4b03b5dc6cee9dc9e778" style="width: 100.0%; height: 100.0%;">1, 09:34:15, OK-L6-: 13th St at Franklin St</div>')[0];
popup_977271a9a9894fa2afec37b39eae6b84.setContent(html_efa5c1329b5e4b03b5dc6cee9dc9e778);
circle_marker_ab3424571a9145daa11f302106cadc6e.bindPopup(popup_977271a9a9894fa2afec37b39eae6b84);
var circle_marker_6ab384e4cfba43d38a436a33df29b4f1 = L.circleMarker(
[37.8013189,-122.2626418],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_dbd5d971f3db4dcaaf80cc80f6ab0158 = L.popup({maxWidth: '300'});
var html_5045e3355b7341fdb3e7549d06678537 = $('<div id="html_5045e3355b7341fdb3e7549d06678537" style="width: 100.0%; height: 100.0%;">2, 09:41:30, OK-L7-2: Lakeside Dr at 14th St</div>')[0];
popup_dbd5d971f3db4dcaaf80cc80f6ab0158.setContent(html_5045e3355b7341fdb3e7549d06678537);
circle_marker_6ab384e4cfba43d38a436a33df29b4f1.bindPopup(popup_dbd5d971f3db4dcaaf80cc80f6ab0158);
var circle_marker_5efe0661224a4cae8b7756cd683ca4d6 = L.circleMarker(
[37.7958125,-122.2555549],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_5bfc7f5eaf5c48bb95b93d86f92f2d10 = L.popup({maxWidth: '300'});
var html_c1e97313686e4261901e65d3c7a57a83 = $('<div id="html_c1e97313686e4261901e65d3c7a57a83" style="width: 100.0%; height: 100.0%;">3, 09:49:25, OK-L9: 12th St at 4th Ave</div>')[0];
popup_5bfc7f5eaf5c48bb95b93d86f92f2d10.setContent(html_c1e97313686e4261901e65d3c7a57a83);
circle_marker_5efe0661224a4cae8b7756cd683ca4d6.bindPopup(popup_5bfc7f5eaf5c48bb95b93d86f92f2d10);
var circle_marker_5f6a98ad7d184f6ebe99fabb1100671f = L.circleMarker(
[37.7943532,-122.2538745],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_cb7c632b77f44c739c33a3a51de13c09 = L.popup({maxWidth: '300'});
var html_a2afccb324244c1f85762302d4a6116f = $('<div id="html_a2afccb324244c1f85762302d4a6116f" style="width: 100.0%; height: 100.0%;">4, 09:53:36, OK-L10: 12th St at 6th Ave</div>')[0];
popup_cb7c632b77f44c739c33a3a51de13c09.setContent(html_a2afccb324244c1f85762302d4a6116f);
circle_marker_5f6a98ad7d184f6ebe99fabb1100671f.bindPopup(popup_cb7c632b77f44c739c33a3a51de13c09);
var circle_marker_6f2be88b26a54497990af3a80c86f0e4 = L.circleMarker(
[37.7927143,-122.2487796],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_bef157ff311b41b99aede936566a236b = L.popup({maxWidth: '300'});
var html_8aaaadf3d7c749a4a7c939ac08a5ba24 = $('<div id="html_8aaaadf3d7c749a4a7c939ac08a5ba24" style="width: 100.0%; height: 100.0%;">5, 09:59:21, OK-L11: 10th Ave at E 15th St</div>')[0];
popup_bef157ff311b41b99aede936566a236b.setContent(html_8aaaadf3d7c749a4a7c939ac08a5ba24);
circle_marker_6f2be88b26a54497990af3a80c86f0e4.bindPopup(popup_bef157ff311b41b99aede936566a236b);
var circle_marker_a075a43e474d4ec3b16635a25e3eec69 = L.circleMarker(
[37.7851566,-122.2389151],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_67e3cd0900fb4a71afc0982747e78760 = L.popup({maxWidth: '300'});
var html_cfa811b256814d688fcd45b2a9c5e1d0 = $('<div id="html_cfa811b256814d688fcd45b2a9c5e1d0" style="width: 100.0%; height: 100.0%;">6, 10:08:21, OK-L13: 21st Ave at International Blvd</div>')[0];
popup_67e3cd0900fb4a71afc0982747e78760.setContent(html_cfa811b256814d688fcd45b2a9c5e1d0);
circle_marker_a075a43e474d4ec3b16635a25e3eec69.bindPopup(popup_67e3cd0900fb4a71afc0982747e78760);
var circle_marker_cabe315f28ee42928c52a9ff902a9b99 = L.circleMarker(
[37.781123,-122.2329915],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_6d733f0a48e1498e9c048026e5adcb2a = L.popup({maxWidth: '300'});
var html_b64111f1d560414892b1c14aac16a4e2 = $('<div id="html_b64111f1d560414892b1c14aac16a4e2" style="width: 100.0%; height: 100.0%;">7, 10:15:50, OK-L15: 26th Ave at International Blvd</div>')[0];
popup_6d733f0a48e1498e9c048026e5adcb2a.setContent(html_b64111f1d560414892b1c14aac16a4e2);
circle_marker_cabe315f28ee42928c52a9ff902a9b99.bindPopup(popup_6d733f0a48e1498e9c048026e5adcb2a);
var circle_marker_8cc9d0337eea46419c28116e523a788e = L.circleMarker(
[37.7776818,-122.225771],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_432e76735ca3443580742364c87dc041 = L.popup({maxWidth: '300'});
var html_fc18c1b3268542f992d364ed2671b10d = $('<div id="html_fc18c1b3268542f992d364ed2671b10d" style="width: 100.0%; height: 100.0%;">8, 10:23:57, OK-M16: Fruitvale Ave at International Blvd</div>')[0];
popup_432e76735ca3443580742364c87dc041.setContent(html_fc18c1b3268542f992d364ed2671b10d);
circle_marker_8cc9d0337eea46419c28116e523a788e.bindPopup(popup_432e76735ca3443580742364c87dc041);
var circle_marker_4d595996d9444afb861d4d5eb835b765 = L.circleMarker(
[37.7752321,-122.2244982],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_dc6787f89c364165b3bf7f5802dc49b5 = L.popup({maxWidth: '300'});
var html_bbaf9045cbb84647ba399f92966b22a0 = $('<div id="html_bbaf9045cbb84647ba399f92966b22a0" style="width: 100.0%; height: 100.0%;">9, 10:30:20, OK-N17: Fruitvale BART Station</div>')[0];
popup_dc6787f89c364165b3bf7f5802dc49b5.setContent(html_bbaf9045cbb84647ba399f92966b22a0);
circle_marker_4d595996d9444afb861d4d5eb835b765.bindPopup(popup_dc6787f89c364165b3bf7f5802dc49b5);
var circle_marker_e67ad584fc4c48e3b1e53136fe987c66 = L.circleMarker(
[37.7757452,-122.2130372],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_b9a6071eff314a409c711d8f4b4e3c25 = L.popup({maxWidth: '300'});
var html_bdb0a63acccb4d859d96b89f46cacf74 = $('<div id="html_bdb0a63acccb4d859d96b89f46cacf74" style="width: 100.0%; height: 100.0%;">10, 10:40:36, OK-L18: Foothill Blvd at 42nd Ave</div>')[0];
popup_b9a6071eff314a409c711d8f4b4e3c25.setContent(html_bdb0a63acccb4d859d96b89f46cacf74);
circle_marker_e67ad584fc4c48e3b1e53136fe987c66.bindPopup(popup_b9a6071eff314a409c711d8f4b4e3c25);
var circle_marker_9e4d38c45a5443a38c1398cf95194f5c = L.circleMarker(
[37.77993,-122.2177284],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_0ddca8c2323449219f68e178e979048d = L.popup({maxWidth: '300'});
var html_5d92e5615faf473ca88f843dbb9d3960 = $('<div id="html_5d92e5615faf473ca88f843dbb9d3960" style="width: 100.0%; height: 100.0%;">11, 10:46:05, OK-L17: Foothill Blvd at Harrington Ave</div>')[0];
popup_0ddca8c2323449219f68e178e979048d.setContent(html_5d92e5615faf473ca88f843dbb9d3960);
circle_marker_9e4d38c45a5443a38c1398cf95194f5c.bindPopup(popup_0ddca8c2323449219f68e178e979048d);
var circle_marker_9d02dbf0ee5842f1840f3bf5da328154 = L.circleMarker(
[37.7837569,-122.2226033],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_981755a41b674410a4cfcc72135c7e34 = L.popup({maxWidth: '300'});
var html_fa34814851f5403ca594fd9b3816bba5 = $('<div id="html_fa34814851f5403ca594fd9b3816bba5" style="width: 100.0%; height: 100.0%;">12, 10:51:39, OK-L16: Foothill Blvd at Fruitvale Ave</div>')[0];
popup_981755a41b674410a4cfcc72135c7e34.setContent(html_fa34814851f5403ca594fd9b3816bba5);
circle_marker_9d02dbf0ee5842f1840f3bf5da328154.bindPopup(popup_981755a41b674410a4cfcc72135c7e34);
var circle_marker_431f4ee0bc7e439ba638b320b7dbd253 = L.circleMarker(
[37.7851915,-122.2343822],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_ac6c6e653b6c43e590e15040fd2f1d09 = L.popup({maxWidth: '300'});
var html_1bff9097363242748c6282b976cfd846 = $('<div id="html_1bff9097363242748c6282b976cfd846" style="width: 100.0%; height: 100.0%;">13, 10:59:29, OK-L14: 23rd Ave at Foothill Blvd</div>')[0];
popup_ac6c6e653b6c43e590e15040fd2f1d09.setContent(html_1bff9097363242748c6282b976cfd846);
circle_marker_431f4ee0bc7e439ba638b320b7dbd253.bindPopup(popup_ac6c6e653b6c43e590e15040fd2f1d09);
var circle_marker_995a92e962044c4ab6c97a2d1ce6cc68 = L.circleMarker(
[37.79013985185364,-122.24237322807312],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_19866d8e5a114cd8ba310ab9c4e7f971 = L.popup({maxWidth: '300'});
var html_de73e72b71dd4e2f9605d7d18d90023a = $('<div id="html_de73e72b71dd4e2f9605d7d18d90023a" style="width: 100.0%; height: 100.0%;">14, 11:06:52, OK-L12: San Antonio Park</div>')[0];
popup_19866d8e5a114cd8ba310ab9c4e7f971.setContent(html_de73e72b71dd4e2f9605d7d18d90023a);
circle_marker_995a92e962044c4ab6c97a2d1ce6cc68.bindPopup(popup_19866d8e5a114cd8ba310ab9c4e7f971);
var circle_marker_d85b39d760664fb7a2018c8f81315995 = L.circleMarker(
[37.800213566969795,-122.25381016731262],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_2025f03e134a40ca91fc5de43de13733 = L.popup({maxWidth: '300'});
var html_1c01ee4b597c4ea487c819aad390a036 = $('<div id="html_1c01ee4b597c4ea487c819aad390a036" style="width: 100.0%; height: 100.0%;">15, 11:16:53, OK-K9: 2nd Ave at E 18th St</div>')[0];
popup_2025f03e134a40ca91fc5de43de13733.setContent(html_1c01ee4b597c4ea487c819aad390a036);
circle_marker_d85b39d760664fb7a2018c8f81315995.bindPopup(popup_2025f03e134a40ca91fc5de43de13733);
var circle_marker_44360271532f4394999f731e249a538c = L.circleMarker(
[37.7976728,-122.2629973],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_7e79de2b67ba43bf9dc93735aae63b4d = L.popup({maxWidth: '300'});
var html_459bd6dc180a43a0bbd612fb92fb1b9e = $('<div id="html_459bd6dc180a43a0bbd612fb92fb1b9e" style="width: 100.0%; height: 100.0%;">16, 11:24:15, OK-L8: 10th St at Fallon St</div>')[0];
popup_7e79de2b67ba43bf9dc93735aae63b4d.setContent(html_459bd6dc180a43a0bbd612fb92fb1b9e);
circle_marker_44360271532f4394999f731e249a538c.bindPopup(popup_7e79de2b67ba43bf9dc93735aae63b4d);
var circle_marker_d1ca2fb34c1f4f38aa7873574a980155 = L.circleMarker(
[37.7973195,-122.2653199],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_0143bd286b244e9a9377f49c2dd2b7b1 = L.popup({maxWidth: '300'});
var html_32305aa7b4c54a49b1961dae7d7897e5 = $('<div id="html_32305aa7b4c54a49b1961dae7d7897e5" style="width: 100.0%; height: 100.0%;">17, 11:28:57, OK-M7: Lake Merritt BART Station</div>')[0];
popup_0143bd286b244e9a9377f49c2dd2b7b1.setContent(html_32305aa7b4c54a49b1961dae7d7897e5);
circle_marker_d1ca2fb34c1f4f38aa7873574a980155.bindPopup(popup_0143bd286b244e9a9377f49c2dd2b7b1);
var circle_marker_d76c6512e1c446659eb8bb24e7ce144a = L.circleMarker(
[37.80000163118878,-122.26643800735472],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_a504d747fe0f4f0fb8ef88f35969d88e = L.popup({maxWidth: '300'});
var html_9758e212279d4929a0889d2e5fea7f08 = $('<div id="html_9758e212279d4929a0889d2e5fea7f08" style="width: 100.0%; height: 100.0%;">18, 11:34:08, OK-L7: Jackson St at 11th St</div>')[0];
popup_a504d747fe0f4f0fb8ef88f35969d88e.setContent(html_9758e212279d4929a0889d2e5fea7f08);
circle_marker_d76c6512e1c446659eb8bb24e7ce144a.bindPopup(popup_a504d747fe0f4f0fb8ef88f35969d88e);
var circle_marker_cde4607f86d7440f96ee7db9394dd8b5 = L.circleMarker(
[37.8007544,-122.2748943],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_6f14d686115f4224bba743ae91040f50 = L.popup({maxWidth: '300'});
var html_570e0024aafc4a56a6bb8ca6c1b7f52d = $('<div id="html_570e0024aafc4a56a6bb8ca6c1b7f52d" style="width: 100.0%; height: 100.0%;">19, 11:41:44, OK-M5: Washington St at 8th St</div>')[0];
popup_6f14d686115f4224bba743ae91040f50.setContent(html_570e0024aafc4a56a6bb8ca6c1b7f52d);
circle_marker_cde4607f86d7440f96ee7db9394dd8b5.bindPopup(popup_6f14d686115f4224bba743ae91040f50);
var circle_marker_2b3850c2cf9b473f90491cf01fb47a11 = L.circleMarker(
[37.8005161,-122.2720799],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_749fa10f1f0b42eeaca4d0426960d3b1 = L.popup({maxWidth: '300'});
var html_79981a4bfac7406d84e04ffb1732acfe = $('<div id="html_79981a4bfac7406d84e04ffb1732acfe" style="width: 100.0%; height: 100.0%;">20, 11:46:22, OK-M6: Franklin St at 9th St</div>')[0];
popup_749fa10f1f0b42eeaca4d0426960d3b1.setContent(html_79981a4bfac7406d84e04ffb1732acfe);
circle_marker_2b3850c2cf9b473f90491cf01fb47a11.bindPopup(popup_749fa10f1f0b42eeaca4d0426960d3b1);
var circle_marker_9fe95d880b2b47a7b2d0d0141b2e9963 = L.circleMarker(
[37.795194764385954,-122.27396965026855],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_0183ca8ef1b64afab608101a0945cdc0 = L.popup({maxWidth: '300'});
var html_a69212b9a57d48da98f5393dfa84ca5f = $('<div id="html_a69212b9a57d48da98f5393dfa84ca5f" style="width: 100.0%; height: 100.0%;">21, 11:52:44, OK-N7: Webster St at 2nd St</div>')[0];
popup_0183ca8ef1b64afab608101a0945cdc0.setContent(html_a69212b9a57d48da98f5393dfa84ca5f);
circle_marker_9fe95d880b2b47a7b2d0d0141b2e9963.bindPopup(popup_0183ca8ef1b64afab608101a0945cdc0);
var circle_marker_95d234830a384dafb535019ba12d46f9 = L.circleMarker(
[37.796248,-122.279352],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_abd12fd62f99446294e10f36fd2b694a = L.popup({maxWidth: '300'});
var html_afe0ea6f2235461cac00a0a81a9191bb = $('<div id="html_afe0ea6f2235461cac00a0a81a9191bb" style="width: 100.0%; height: 100.0%;">22, 11:58:27, OK-N6: Jack London Square</div>')[0];
popup_abd12fd62f99446294e10f36fd2b694a.setContent(html_afe0ea6f2235461cac00a0a81a9191bb);
circle_marker_95d234830a384dafb535019ba12d46f9.bindPopup(popup_abd12fd62f99446294e10f36fd2b694a);
var circle_marker_6e1c7b0b15ef4f188d4548390c060cdd = L.circleMarker(
[37.8036865,-122.282497],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_18b017ab3766420283cf9dccd368f4fc = L.popup({maxWidth: '300'});
var html_6324d410f52b46dca038980f5caa8d32 = $('<div id="html_6324d410f52b46dca038980f5caa8d32" style="width: 100.0%; height: 100.0%;">23, 12:06:38, OK-M3: Market St at 8th St</div>')[0];
popup_18b017ab3766420283cf9dccd368f4fc.setContent(html_6324d410f52b46dca038980f5caa8d32);
circle_marker_6e1c7b0b15ef4f188d4548390c060cdd.bindPopup(popup_18b017ab3766420283cf9dccd368f4fc);
var circle_marker_ee370647d1014896920c8378921da95f = L.circleMarker(
[37.8072393,-122.2893702],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_2981f6c8708243f1864bc4503f8333ca = L.popup({maxWidth: '300'});
var html_61d1ded31adf4cffa02fad238ad3aa38 = $('<div id="html_61d1ded31adf4cffa02fad238ad3aa38" style="width: 100.0%; height: 100.0%;">24, 12:13:31, OK-M2: Union St at 10th St</div>')[0];
popup_2981f6c8708243f1864bc4503f8333ca.setContent(html_61d1ded31adf4cffa02fad238ad3aa38);
circle_marker_ee370647d1014896920c8378921da95f.bindPopup(popup_2981f6c8708243f1864bc4503f8333ca);
var circle_marker_e63f4b6a7a7e4360a8bbb9ad3f0d65f4 = L.circleMarker(
[37.8053183,-122.2948365],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_4a59b825150642bb81218c3ce0d2fa0a = L.popup({maxWidth: '300'});
var html_8a65862a87234f4da401f8b1fbfaf8eb = $('<div id="html_8a65862a87234f4da401f8b1fbfaf8eb" style="width: 100.0%; height: 100.0%;">25, 12:19:35, OK-M1: West Oakland BART Station</div>')[0];
popup_4a59b825150642bb81218c3ce0d2fa0a.setContent(html_8a65862a87234f4da401f8b1fbfaf8eb);
circle_marker_e63f4b6a7a7e4360a8bbb9ad3f0d65f4.bindPopup(popup_4a59b825150642bb81218c3ce0d2fa0a);
var circle_marker_921d4b2f3c5f493b99f335fe942508cd = L.circleMarker(
[37.8107432,-122.2914153],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_09a82665a0a2455e9da019051a59e205 = L.popup({maxWidth: '300'});
var html_544b17ab6d8140d2bad69b0134516c3e = $('<div id="html_544b17ab6d8140d2bad69b0134516c3e" style="width: 100.0%; height: 100.0%;">26, 12:26:01, OK-L2: 14th St at Mandela Pkwy</div>')[0];
popup_09a82665a0a2455e9da019051a59e205.setContent(html_544b17ab6d8140d2bad69b0134516c3e);
circle_marker_921d4b2f3c5f493b99f335fe942508cd.bindPopup(popup_09a82665a0a2455e9da019051a59e205);
var circle_marker_046ce3ae0b1f4e72a1928315915c633e = L.circleMarker(
[37.8123315,-122.2851712],
{
"bubblingMouseEvents": true,
"color": "#FF4500",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#FF4500",
"fillOpacity": 1.0,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3,
"stroke": true,
"weight": 3
}
).addTo(map_3efb59dcb59d4e698e1e1265d112932c);
var popup_af1ff3cbe4dc4a22a7e17ca25714c989 = L.popup({maxWidth: '300'});