-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgpsData.html
More file actions
2397 lines (1606 loc) · 189 KB
/
gpsData.html
File metadata and controls
2397 lines (1606 loc) · 189 KB
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_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_3c7a5203acf5426668b5844fd7d040d4 {
position: relative;
width: 1280.0px;
height: 960.0px;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_3c7a5203acf5426668b5844fd7d040d4" ></div>
</body>
<script>
var map_3c7a5203acf5426668b5844fd7d040d4 = L.map(
"map_3c7a5203acf5426668b5844fd7d040d4",
{
center: [40.01265351729508, -83.00969233386985],
crs: L.CRS.EPSG3857,
zoom: 20,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_eb1d4dadf56da7edd0420c9617032ee8 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8d91728d5dadd8e665f3f1340cfa826a = L.circleMarker(
[40.012654543823736, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9721f9bb3b7fc8f820c6f8b0700fe79e = L.circleMarker(
[40.01265351729508, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5690849c32470d6f8200d9cc2ff06bea = L.circleMarker(
[40.012654543823736, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_fc02c34057fad39612191652a0ebea9c = L.circleMarker(
[40.012654543823736, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e827c15ab6093f62001ffe733bfc8535 = L.circleMarker(
[40.012654543823736, -83.00969099268514],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_664e8805c0910d28616383f6f2e496cb = L.circleMarker(
[40.012654543823736, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5689248c515093ed52c53318aadf3206 = L.circleMarker(
[40.01265557035238, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_721062dbcca3c5b86b167adc381b1660 = L.circleMarker(
[40.01265557035238, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_1bc0447038e935621add6595abbcb807 = L.circleMarker(
[40.01265557035238, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_4401d7c9bcfdfe3f2551674ea2eab895 = L.circleMarker(
[40.01265557035238, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_fff0c3075c7ecd737b6c20b96f0f6f9e = L.circleMarker(
[40.01265557035238, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f572d5bdaaf76191cde27da9bc126653 = L.circleMarker(
[40.01265557035238, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_edca76a6aa185ba5efc89c492099203b = L.circleMarker(
[40.01265659688101, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_72743e458333b79b71cc990959428192 = L.circleMarker(
[40.01265659688101, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8bbc0102e7db34735f5be62c41827154 = L.circleMarker(
[40.01265659688101, -83.00969367505456],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_dfe3b000023e9bacfde31a9e5e99dc96 = L.circleMarker(
[40.01265762340961, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f7f8fcf1043b3ff72e196406c68f50ba = L.circleMarker(
[40.01265762340961, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_a1211cd373030734fa505552922b54f8 = L.circleMarker(
[40.01265762340961, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_80931cbeab162415f61ede52a45cc92a = L.circleMarker(
[40.01265864993821, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_ecb65dbf65ef4cd66ec0251af2d552a7 = L.circleMarker(
[40.01265864993821, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8d0b53d09f231c9ef8a4c991ad7073ab = L.circleMarker(
[40.01265864993821, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_831d9dcc9096fa989cba8bece12fbf63 = L.circleMarker(
[40.01265967646678, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_230ea6b5d9b386f3b9d844c76ca8d0a6 = L.circleMarker(
[40.01265967646678, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_153cbc22b8357683c5d344b7401c2384 = L.circleMarker(
[40.01266070299535, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8be266adca83c92e15d149210d404b2f = L.circleMarker(
[40.01266070299535, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_0a75e9b180f519c623909cd422886aa5 = L.circleMarker(
[40.012661729523906, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_238b3e41605d33b63db6ec43c79055bc = L.circleMarker(
[40.012661729523906, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_db826c2fb0a1a416a566d080977dc038 = L.circleMarker(
[40.012661729523906, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e333efcec3cf1321fe048599b140b72c = L.circleMarker(
[40.01266275605243, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c5fbfd8df5d312d7b706c1b77fb7ffbd = L.circleMarker(
[40.01266275605243, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d9b8496eff77df36c987a2b9e60e430a = L.circleMarker(
[40.01266378258095, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_2a27707f8c4160256f9e8ced0b8cd7dc = L.circleMarker(
[40.01266378258095, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_376ea771d5cb99ae3dae9ba63db47b9a = L.circleMarker(
[40.01266480910945, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_95a3ee5b99e453a2a948533fa209283a = L.circleMarker(
[40.01266583563793, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_30ea33c58c978e0fff32da645c31e9c5 = L.circleMarker(
[40.012666862166405, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_be0e3978c34e802ce93b6f4d525b2c79 = L.circleMarker(
[40.01266788869487, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9bd0bbd5c337fd932644c473ea812cfe = L.circleMarker(
[40.01266891522331, -83.00969769860873],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_574a12eb44482918b43ff02f94dfbc6b = L.circleMarker(
[40.01267610092195, -83.00970172216289],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_102f2549f389fb0db4a3a9b78035048d = L.circleMarker(
[40.01267712745027, -83.00970172216289],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_30f52b0d2a0451fdac42412105e418e6 = L.circleMarker(
[40.012680207035125, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_366622af053dd32b86427644786db276 = L.circleMarker(
[40.01268328661985, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_4d64746b9449f88186390a3ee571fa35 = L.circleMarker(
[40.01268431314806, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_854cb794e7354177688168b5d0856fee = L.circleMarker(
[40.012685339676246, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_1ed9829b3108541f0ff2f158e6e4dbb3 = L.circleMarker(
[40.01268739273258, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_43390533a1d39ee71fe2aedbaaf6232c = L.circleMarker(
[40.012689445788865, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_2974b77ce39b6d9fc21c9a1e32f26392 = L.circleMarker(
[40.012693551901236, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9439586429ac2a1a79bf58261644ef22 = L.circleMarker(
[40.012696631485355, -83.0097030633476],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_572e0b4e086e245062eed2d9b49ed560 = L.circleMarker(
[40.01277670062362, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_99900f293805c1df911d9be4b4f8e4e7 = L.circleMarker(
[40.01278901894424, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f0f343c6a082407930dd14e5559bf755 = L.circleMarker(
[40.01280031073619, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b3f5057ad714d68d3e51b8bd52ebcfa2 = L.circleMarker(
[40.01281057599998, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_0dbc1522acecabb6023877f051e1e725 = L.circleMarker(
[40.01282186778837, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_cd0e90a4286f8eb7ad54ecd351cb841b = L.circleMarker(
[40.01283110652293, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f4b229b91f1b3b0eb794b721e91005b8 = L.circleMarker(
[40.01284034525624, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_28721e68f512d5c204b67e5916db811b = L.circleMarker(
[40.01285061051402, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b4410b197edf7747c8c8aac3ff68a821 = L.circleMarker(
[40.01286600839777, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_7ae41dc30f2f64e81d27c54794f743d6 = L.circleMarker(
[40.01287422060103, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d2509a12673655c1711ce0e18124bced = L.circleMarker(
[40.012903989829525, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_03cde4484e03218e513e3e5d212c03e0 = L.circleMarker(
[40.01292657337352, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8b73d887b6dc46080b8ca697ed0c0227 = L.circleMarker(
[40.01293375904505, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_0917b67a2f65e9860bae0e3ba8a95d49 = L.circleMarker(
[40.012939918191464, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_53880d3ede27e34a5dd0ef67a9ea7724 = L.circleMarker(
[40.01294505081306, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e5a74fc3baf91309ad5c9a5af392fa89 = L.circleMarker(
[40.012951209958445, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_fceae773402913de77afdd2084c720b5 = L.circleMarker(
[40.01295634257919, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e528867e26e8517f5aa6911373776da7 = L.circleMarker(
[40.01296250172358, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_768ab3bd86babd9f0ff014114bd1961c = L.circleMarker(
[40.01300458919529, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5f6d4236953868759d90bb22618cff4d = L.circleMarker(
[40.01301690747478, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5ba4561b7d2a276a8d3315aef789977c = L.circleMarker(
[40.01302511965988, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_497ac64853e3c2c04d3e750869ff1d17 = L.circleMarker(
[40.01303641141276, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_362ca514cc397d4ae1d89476b4049f85 = L.circleMarker(
[40.013101082325164, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_4bedf1fc49bc967e2d8da070bf38d3da = L.circleMarker(
[40.0131205862391, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_11e8907ddfcea2ec3f9af6f1358fdbc3 = L.circleMarker(
[40.013123665803946, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d02204f7562571979a3127e4c53b106b = L.circleMarker(
[40.01312469232552, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_10995541f9d29acce5922c48fbf594aa = L.circleMarker(
[40.01312571884709, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_a0afdadb6500953ac594b2b7fd705483 = L.circleMarker(
[40.01315856752918, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_1db3ac56f9e103d4254f453147dcb37a = L.circleMarker(
[40.01316164709231, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_6d8cfd5364fe62087f9413cdcceccbd3 = L.circleMarker(
[40.01316164709231, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_dfd95474cabf69b55deb84eb5d5fadcb = L.circleMarker(
[40.01316370013432, -83.00971915756423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d6ada2903c8cb68b8923d8f3f43f5297 = L.circleMarker(
[40.013164726655305, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_90553eec16a72dc7e2399d5d0afe0fb3 = L.circleMarker(
[40.013165753176274, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_525822eaded6b83ced1712134deb6f82 = L.circleMarker(
[40.01316677969723, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5cbebc3d2b023718f567c01cdee529bd = L.circleMarker(
[40.01316780621816, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_a34f1d4dec891821ffcf62f2676c3454 = L.circleMarker(
[40.013168832739076, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_21bc07814e30d204aa74b1580d9fb0cf = L.circleMarker(
[40.01317191230176, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c402d5da088f63ab5a527ef6827c2fb6 = L.circleMarker(
[40.013173965343455, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_dda55deadba9b3868710348da7395000 = L.circleMarker(
[40.01317499186428, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9748a2b4a64b035736e5c4a590fdf1bf = L.circleMarker(
[40.0131760183851, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_842a4f668d705bb0d6edf1d240bb634f = L.circleMarker(
[40.01317807142669, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e2e9fff809c0a6484f5b6224f93c27ef = L.circleMarker(
[40.01317909794745, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_6a033fb528d1d83e711eb49f539d0a9b = L.circleMarker(
[40.013181150988935, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d9b6e5f98bc4788fa68c3a87c6f747ac = L.circleMarker(
[40.013182177509655, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8a190875a35deb224563b232c227f125 = L.circleMarker(
[40.01318320403036, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_2a751d48fca0e6762630c79bc2252831 = L.circleMarker(
[40.013185257071726, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f85ddbb508f412fcae73b7a561357382 = L.circleMarker(
[40.01318731011303, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_53bc2b6d2a8bf59b52509e29a31b7748 = L.circleMarker(
[40.013188336633654, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f26ab6df104ea013e3ece8a809f5c2d2 = L.circleMarker(
[40.01318936315426, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_7dcffb64c9a019cba40aa1399b74c223 = L.circleMarker(
[40.01319141619544, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_3a7ecb01ff0fbd933b0e121b49415eab = L.circleMarker(
[40.01319346923657, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_defbe18e08a420c639df9291b89f58d3 = L.circleMarker(
[40.01319654879812, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_528ae870232e14befccd5c6b8b1fdb39 = L.circleMarker(
[40.013198601839086, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_5dbaa7389894c3589e9f4281f349a975 = L.circleMarker(
[40.013199628359544, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_50c91d38b47f6242c3505ffdbdca43d1 = L.circleMarker(
[40.01320168140042, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_420b6b3dfb6c750d36e3935bc22ebaf0 = L.circleMarker(
[40.01320373444122, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_3a8d49796e7fe1cf5684bcf4b684c26e = L.circleMarker(
[40.0132047609616, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c04d074b1a192ef35ab0c94b431bd36a = L.circleMarker(
[40.013207840522654, -83.00972586348783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_85864e8aaaf97f7386cdc6ea3e12270e = L.circleMarker(
[40.01320989356328, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9b531f9edcee0eba1dceb175cab32976 = L.circleMarker(
[40.01321194660383, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f1ae82ad40c35b677e429e53ded365a4 = L.circleMarker(
[40.01321399964433, -83.00972452230312],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_901132861bd7b915368522f4f7d1f7b6 = L.circleMarker(
[40.01321502616456, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_900c1b9c406674a702d3ea19b93294c7 = L.circleMarker(
[40.01321707920497, -83.00972318111839],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_284717b9673dabf4b4f06afe228c8cf0 = L.circleMarker(
[40.01321913224531, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_32dd7978cde238f651c8874008ae1b7d = L.circleMarker(
[40.013221185285595, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e3232b3973c7369cb8ba6ca2dcbdf50d = L.circleMarker(
[40.01322323832582, -83.00972183993368],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_6b94eb19b1409b69a939ac6878b59272 = L.circleMarker(
[40.01322529136598, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_29dbe0309674e5ceff42628cdb2b9c5a = L.circleMarker(
[40.01322734440608, -83.00972049874893],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_e334612354e053172ea88b4e938fef55 = L.circleMarker(
[40.01323145048609, -83.0097178163795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_6a8944f0a6592b7661ff724a2b8d92fc = L.circleMarker(
[40.013241715685034, -83.00971379282537],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_bb7da2c51c36b44d0862aa5a34ebf3ed = L.circleMarker(
[40.01324479524442, -83.00971111045591],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_89df8ead0006d54515e9b061207a29de = L.circleMarker(
[40.01324787480366, -83.0097097692712],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_474bdd4fd4b9e0854bf7000472faa00a = L.circleMarker(
[40.01324890132337, -83.00970708690176],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8d95bd4a961656b0482939270b89ce0c = L.circleMarker(
[40.01324992784308, -83.00970440453231],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_693045336eefbbf79f5ab3fe43b2e53c = L.circleMarker(
[40.013256086960965, -83.00970172216289],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_8ce739de5d02453e482ed14b64fde857 = L.circleMarker(
[40.013257113480556, -83.00969903979345],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c55febb1e9fcafd0a3d29225ceed9d70 = L.circleMarker(
[40.0132591665197, -83.00969635742402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_f50866d6e7414f8e4a36d7236142dc4e = L.circleMarker(
[40.0132622460783, -83.00969501623928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_132b398e20bb59046fcf17d2d6d2f3dd = L.circleMarker(
[40.01326327259779, -83.00969233386985],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_84fb1effc95d38bd6522b84a22f0657e = L.circleMarker(
[40.0132663521562, -83.00968965150041],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_efc5afc25e352a2fc6956fae00fa2e3d = L.circleMarker(
[40.01328790906119, -83.00967892202264],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b730d5ba5b68e0925c19d992ae7f0729 = L.circleMarker(
[40.013290988618486, -83.00967355728379],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b31200444f7830ceeac148ca06c3de66 = L.circleMarker(
[40.01329201513755, -83.00967221609906],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_50cbccfbbba31496fc88eb7a30b2e917 = L.circleMarker(
[40.01329612121367, -83.00966819254491],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_940c4f26a7829e6357c5f79bf14f36fc = L.circleMarker(
[40.01329817425164, -83.00966685136018],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_9044272bac15e40c4d0e738f2291b918 = L.circleMarker(
[40.013302280327395, -83.0096614866213],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_93f3ebd4ce83d81ee98c368744b74e92 = L.circleMarker(
[40.01330433336517, -83.00965746306716],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_a45a25b7fe17845e45a5d49afdfc6780 = L.circleMarker(
[40.01332281070242, -83.00964136885052],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_07559703aa7edaea192e9ab0701f55a8 = L.circleMarker(
[40.01332486373959, -83.00963734529635],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_03385549de34ae6f3c47ebd941813dcb = L.circleMarker(
[40.01332486373959, -83.00963466292693],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c479046647cd9da549fd84be272178b5 = L.circleMarker(
[40.0133269167767, -83.0096266158186],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_0d3f91bb456628e83c40d63197990e61 = L.circleMarker(
[40.013327943295224, -83.00962259226445],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_c8226d73599075e6e8192e6ab5425eff = L.circleMarker(
[40.01333204936918, -83.00961454515614],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b67c40206a33bda0d79fec120e17dcce = L.circleMarker(
[40.01334026151636, -83.00959979212422],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_985fd16f49a89736507986eec42fd77e = L.circleMarker(
[40.013342314553, -83.00959576857007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_7ec04576f92ef6e1a143512cb74dd2a7 = L.circleMarker(
[40.013342314553, -83.00959174501591],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b6a344db2918f2822e3e477760bbd514 = L.circleMarker(
[40.01334334107129, -83.00958638027703],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_054f7050a9de2b92edc792ee549a55af = L.circleMarker(
[40.01334334107129, -83.00958235672287],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_52637704e3c2e68cfac8c24864e01444 = L.circleMarker(
[40.01334436758957, -83.00957833316872],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_d0770fc6df30873422cd87f83a52c901 = L.circleMarker(
[40.01334436758957, -83.00957565079928],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_381a4181d2e1d8487629d4330e47c7be = L.circleMarker(
[40.01334436758957, -83.00957162724511],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b5f575e4624152a1c8ccb3f33274de50 = L.circleMarker(
[40.013345394107844, -83.00956760369097],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_87a9e79c4d46e3aa150b8976e9d985f6 = L.circleMarker(
[40.013345394107844, -83.00956358013681],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_84ec5e3342e6c3f4099139d9445db469 = L.circleMarker(
[40.013345394107844, -83.00955955658264],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_7be4bfcbd9d6f9f7d811d60504f2473e = L.circleMarker(
[40.01334642062609, -83.00955553302849],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_b4fcc27fcdf79e0c1b5f964358433063 = L.circleMarker(
[40.01334642062609, -83.00955285065905],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_66890c9932aa4483141ca2ba9a482737 = L.circleMarker(
[40.013347447144334, -83.0095488271049],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_318f308e9d62158db173806019462213 = L.circleMarker(
[40.013348473662546, -83.00954480355074],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_dac6f89052e4ffe182b7cedcd8e6f8cc = L.circleMarker(
[40.013348473662546, -83.00954077999658],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1, "stroke": true, "weight": 3}
).addTo(map_3c7a5203acf5426668b5844fd7d040d4);
var circle_marker_44fabee788f2a3b0fa4aef35f3f9035e = L.circleMarker(