-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap.html
7821 lines (5221 loc) · 603 KB
/
map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_dcd45e8f3bc769dab2244d983ade67cf {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_dcd45e8f3bc769dab2244d983ade67cf" ></div>
</body>
<script>
var map_dcd45e8f3bc769dab2244d983ade67cf = L.map(
"map_dcd45e8f3bc769dab2244d983ade67cf",
{
center: [40.0000138, 116.3273679],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_09ab272dca3b15cc6e0062715636ab93 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_7cb57b220c02ba3293f1a1ea2736a853 = L.circleMarker(
[39.984702, 116.318417],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_bb5cabec94abe5926f0f845c05107556 = L.circleMarker(
[39.984045, 116.298725],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_6f22fd4b55aa89dad294727b3da9606e = L.circleMarker(
[39.995777, 116.286798],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a724c404c22d9f1e094443c136f5f51a = L.circleMarker(
[39.984983, 116.30286],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f04751398d6a55c6c07acd6470265f1f = L.circleMarker(
[40.004775, 116.320158],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_722bd71716afa1fb247697313b3467c5 = L.circleMarker(
[40.008833, 116.322297],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ccf4b247dceebeeb500e9dcbec4b669b = L.circleMarker(
[40.008761, 116.323722],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_bdf5211472ed5a620142cb8e1a56b612 = L.circleMarker(
[40.008934, 116.321623],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e52883fba430780e246595130f4a00d4 = L.circleMarker(
[40.008851, 116.321485],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2ade01d93c1fc069dd60aa35f2e0e877 = L.circleMarker(
[40.009269, 116.320978],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_44b5254d787f9c6a74a94670a8cfa934 = L.circleMarker(
[40.008304, 116.319876],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_55bae279e2426a891becf8849826b86c = L.circleMarker(
[40.008692, 116.322194],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_71ffb8ec7c69644c436402fbd4163a82 = L.circleMarker(
[40.008963, 116.322994],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_57f3b0f766e47c638534fbdd060ab5b0 = L.circleMarker(
[40.009215, 116.321158],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ca43a5456cbfbf8ea413528b3c8f26ef = L.circleMarker(
[39.907414, 116.370017],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_55f1e828e20f3f3b778f1a3b947ec54d = L.circleMarker(
[39.897675, 116.391189],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_3024a4233c5dfd8ff06c3c617ac2a1ac = L.circleMarker(
[39.994622, 116.326757],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d273726f6a354a13da1ac0bb09c3d8af = L.circleMarker(
[40.008768, 116.321916],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_db2f09f24073705f1c56f2ffd39a940c = L.circleMarker(
[40.01229, 116.297072],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_58315bfd624e231a556ef9205bbeaba1 = L.circleMarker(
[39.9995, 116.32434],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a6ed645747fceb812eee4ade173d510b = L.circleMarker(
[40.007635, 116.319636],
{"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": 5, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_8462e744c5f7f65e5d143cd4f3ae173f = L.circleMarker(
[40.007318, 116.319273],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_656881ef3399cdb88f448c7f79233f9c = L.circleMarker(
[39.994238, 116.326786],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_90e904b14fdea65f73bf188562effbad = L.circleMarker(
[39.992875, 116.328912],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_9058e5e88662bb8c3dbd2211d6c769f1 = L.circleMarker(
[39.991364, 116.326605],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b749569d789cd53a0b9ef7dcc7728788 = L.circleMarker(
[39.966856, 116.327735],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_7dfa7decf772df24d058ff18d6c4be49 = L.circleMarker(
[39.999976, 116.326565],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2a48afb40136962174a102e766dba1da = L.circleMarker(
[39.996825, 116.326536],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_849656dd5f06c0905814277c38f8d226 = L.circleMarker(
[39.996948, 116.325747],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_dd9f61a7afbe61196f04f06dc76ee09e = L.circleMarker(
[40.00453, 116.312339],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_23d59d26e3b5d86df4e5b43d626e7c14 = L.circleMarker(
[40.011597, 116.296817],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_86f3bc5510dc1bb027e8521096d0e37c = L.circleMarker(
[39.999619, 116.324769],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_24432bc8c4c6c7fd3146a01d873d4beb = L.circleMarker(
[39.997726, 116.32648],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_de688c531c7eabd8f3f46594ff2a1ab0 = L.circleMarker(
[39.974001, 116.332486],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2af6762b84eb0d9743681c335dc30da8 = L.circleMarker(
[39.974876, 116.33185],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a9662c65b0939f72dff15d60ec31fcfd = L.circleMarker(
[39.99779, 116.327229],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f964c99a1b1f1c303dbd546be3425397 = L.circleMarker(
[40.011824, 116.297026],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e75670853a6074d5dcc034875d909db1 = L.circleMarker(
[40.011308, 116.296497],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e8a2fbb21ffcf6389155e3b0c1c98d22 = L.circleMarker(
[40.011431, 116.296922],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d758a525763b9be93bbd6f5e4ee5ed13 = L.circleMarker(
[40.006605, 116.319373],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_989eea3d1b4379de4df1a332689d2fb6 = L.circleMarker(
[39.995805, 116.326236],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_037ec3d01e6a17ba74429beaf252b559 = L.circleMarker(
[39.99993, 116.324192],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a0095b7127377bb8e256b5eec421cbe8 = L.circleMarker(
[39.997311, 116.329487],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b9ca5523920db84d66692fa219d4d0ee = L.circleMarker(
[40.007701, 116.322963],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_7d63fa1d97a9bdbcba55a9073a37aa51 = L.circleMarker(
[40.008981, 116.320434],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_15b2d7e9837508a7b493e5d7a5cbb23f = L.circleMarker(
[40.000981, 116.323429],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b989f7898dafa4c10eb14d4868115d26 = L.circleMarker(
[39.999589, 116.3246],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_54902eb80022566ffc59b9b9b1031da2 = L.circleMarker(
[40.007519, 116.319305],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e0f87eef1c14cafbf5def41e3da52922 = L.circleMarker(
[40.008816, 116.3216],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_01872e6a9ae02387d68dc249b796f704 = L.circleMarker(
[40.009943, 116.322768],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e1f656df97fefde6de0ab27d71780a02 = L.circleMarker(
[40.008312, 116.320953],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_467d4a9a739bd31b4ecf139141dac392 = L.circleMarker(
[40.008769, 116.320071],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_922c6f79e675d024366793d4b2fa2041 = L.circleMarker(
[40.010085, 116.321778],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_672d6e690debf20e7f4ccabe46928b98 = L.circleMarker(
[40.007883, 116.320455],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ccb230a932fc70608bcff6b49d4f30d0 = L.circleMarker(
[39.972672, 116.312191],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_db3ca9c301a1688d94bce897574bd059 = L.circleMarker(
[39.959911, 116.316416],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_743c3b5655e0ac9d3bbba6ea5a8f0481 = L.circleMarker(
[40.00116, 116.322042],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2dc03ee7c3623ee23a9598b6aa5f119b = L.circleMarker(
[39.996383, 116.323517],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b0cff910539f99bcdd05343bdcf84be6 = L.circleMarker(
[40.00027, 116.324508],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a660459b1aa239b08621f56dd908c403 = L.circleMarker(
[40.007442, 116.31931],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_307418a1cd92e9ae15ab03db3ec1e40a = L.circleMarker(
[40.007672, 116.31966],
{"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": 5, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f349b59648b07a4cdedd4a1d0a552fe0 = L.circleMarker(
[39.999881, 116.324555],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_efbb6e4ac6b24b69f02d9b1e1d14421f = L.circleMarker(
[39.999897, 116.32519],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e0eeae280877ee18cbc3c32ed4f534d3 = L.circleMarker(
[40.010092, 116.322667],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_c58f18a2c236f8f89099bf5f05199999 = L.circleMarker(
[40.010054, 116.321753],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_9c48aba1f761526907d3f46165200ab4 = L.circleMarker(
[40.007534, 116.319455],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_fd7cd5aa8ac3caa8877fa954477984f6 = L.circleMarker(
[40.007309, 116.320175],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_807fabedf83e18bcebf3f05df8c75b3d = L.circleMarker(
[40.00188, 116.32474],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_691d6fc955a0bb3afd907af80c63529c = L.circleMarker(
[39.998875, 116.324514],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_86a84dd3d42645ab15bc5bbe8b593f46 = L.circleMarker(
[40.009098, 116.320214],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a49aa57be2047547366de06e2155ccc2 = L.circleMarker(
[40.008701, 116.321748],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f14d04a1fbe448753e3219b33da42f73 = L.circleMarker(
[40.00927, 116.321938],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_5b82b840d0e9dbaa544e72b5e1dd0b6b = L.circleMarker(
[40.00053, 116.324059],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e4013918786d227be628a03f1e4436bb = L.circleMarker(
[40.007388, 116.319502],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_29e7e802549904a6d8605405da4c0345 = L.circleMarker(
[40.007441, 116.319807],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ff3e379dec484c3b4b578a640c354d6c = L.circleMarker(
[39.999874, 116.32451],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_5b1f9703d22850d59344cf6f7dbbf31b = L.circleMarker(
[40.000041, 116.324417],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_4ae43c3cbdaf881010e52d4d4a5b12c3 = L.circleMarker(
[40.009829, 116.321029],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_95f3371b066e2fe2144765e5577e34be = L.circleMarker(
[40.002459, 116.311318],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_6e455a8a1a0bb3a7d0af584478e88040 = L.circleMarker(
[40.005494, 116.321152],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_313ba30cd7a8441b580491c05541408c = L.circleMarker(
[39.999006, 116.324101],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a39b5911f642dad28496c21413e9e305 = L.circleMarker(
[39.999355, 116.324014],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_1e5ccfa192995414a6b2d9fda7276941 = L.circleMarker(
[40.007591, 116.321614],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_038811088d9a4a7551dd88b60cbc997c = L.circleMarker(
[39.998662, 116.324518],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d0500833586767f959e482284db5a26a = L.circleMarker(
[40.000037, 116.324494],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_fb25521459c29985970a21fc197baeb3 = L.circleMarker(
[40.007371, 116.319569],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e1ceab44977648584a81d13bd6f3ff8d = L.circleMarker(
[40.009559, 116.321646],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f5eb9ff9108d24d180765fccc3e3512b = L.circleMarker(
[40.013915, 116.322986],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_47ae0f01a4365239436ccb42a25492ea = L.circleMarker(
[40.010603, 116.322627],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_4fe959e40a137080d12371a5c820c861 = L.circleMarker(
[40.011165, 116.322747],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_eb38102af829574c855a3b8348e7374e = L.circleMarker(
[40.007297, 116.319651],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e3189dd120063d54599c3ea1c8ae663e = L.circleMarker(
[39.993979, 116.326802],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_a1d2fe11aabfe20749249221a47c683a = L.circleMarker(
[39.992837, 116.328355],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_3326755ac413e555b90551dcaf7f2ebb = L.circleMarker(
[39.992422, 116.333295],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d596557a05a0455f90fc0d44919a4624 = L.circleMarker(
[39.999737, 116.324653],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d66cbaf14502f751690888020e039e5a = L.circleMarker(
[39.9997, 116.324579],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_8a72cb406730f43290a0c7ef05589b8f = L.circleMarker(
[40.008224, 116.321263],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_5377e330f5d9885c47083a5b417b8866 = L.circleMarker(
[39.999876, 116.324512],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_c2db81b82c914447206fb32274dc20b6 = L.circleMarker(
[40.001038, 116.324874],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_4d431e1360c94946d312e00c4b92cb25 = L.circleMarker(
[40.011333, 116.321011],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_decd1e2f2c8f5bb162b8ee196f84f4e0 = L.circleMarker(
[40.006465, 116.319267],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_19188289895204a25205b872a1843107 = L.circleMarker(
[39.986409, 116.300216],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_1e54118eb36759301aa283231fbfec37 = L.circleMarker(
[39.999738, 116.322057],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_84b151d97ff8506552628929a775fda9 = L.circleMarker(
[40.009334, 116.320272],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ea8d01a30ea42823ad2cd7ba823bacbc = L.circleMarker(
[40.010616, 116.320476],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_80606d8f85e4ef16cef7d58d3ca14005 = L.circleMarker(
[40.010582, 116.32058],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d06518ebd6d1cadca5e342bf0b4b6642 = L.circleMarker(
[40.008564, 116.321346],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ad3b4ae3c9898117547bd36317abd6a7 = L.circleMarker(
[40.009145, 116.321867],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b82870e3efacfb0354572d751edea811 = L.circleMarker(
[40.00769, 116.322383],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e5756b282338beee5f25ef04ef675afc = L.circleMarker(
[40.0093, 116.320241],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b1b65a7e2bc7a1d0b95f9dd0196ff338 = L.circleMarker(
[40.021469, 116.305782],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_70ac688f44c780795d14afb07c0b0515 = L.circleMarker(
[40.006927, 116.324508],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_9e9af57c21587c143b5a273e396a731b = L.circleMarker(
[40.008926, 116.322943],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_02332c343bb644258e04d03582144e74 = L.circleMarker(
[40.008695, 116.322965],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_8c59a76219b5d4e293e20854dc8a1bc1 = L.circleMarker(
[40.008447, 116.322949],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d180db6c77ca8a67b66bbd64737f8480 = L.circleMarker(
[40.009451, 116.322916],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_1408496f052a833bb64db265c57f5bc1 = L.circleMarker(
[39.998579, 116.327229],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_4adc1ee0018caab08e4a16fd6c9539a5 = L.circleMarker(
[39.997642, 116.326443],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_69e3ff0e03a6c46ec44b4c10081a8cd1 = L.circleMarker(
[39.986353, 116.311987],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_0816fddb3e8918bea576835e13943ed7 = L.circleMarker(
[39.976905, 116.310328],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_bd534a734c378e4d75c4762a86d755b9 = L.circleMarker(
[39.999277, 116.324907],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_86b88f6189d3423f4c9ec72eaa65e626 = L.circleMarker(
[39.994113, 116.325732],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_868efe09abf7637d8d70996a3114f9a5 = L.circleMarker(
[39.998611, 116.323661],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_91f82d88c6f72c93a650ab63a2d088d4 = L.circleMarker(
[40.007137, 116.322366],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_4decd782ab75f1ee4804e36ad12dbd6b = L.circleMarker(
[40.009551, 116.320406],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_52ab9ac99ca5e0c0e1142ae61a3ab364 = L.circleMarker(
[40.007477, 116.322615],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_6f6613201512e8c2b26f567ab6ef1f16 = L.circleMarker(
[40.004261, 116.322267],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_697144232852da617414fe2c769ac765 = L.circleMarker(
[40.000534, 116.325304],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_deb097d2fca8519646012bcf208baf6d = L.circleMarker(
[40.008258, 116.322279],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_3a8a6d77b39e6a17d69081e6d47e1186 = L.circleMarker(
[40.008258, 116.322279],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2437b469834fe822b2a5aaa19d588987 = L.circleMarker(
[40.007706, 116.319348],
{"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": 5, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_aea4505965ca6b3bc384a1ced86dcd3b = L.circleMarker(
[40.007605, 116.319397],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_f9cebeb6a3de2f7947790b91f7a6f4c5 = L.circleMarker(
[39.999955, 116.324784],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_13f27ef1f26be5e3c4acdcb619aa2e7d = L.circleMarker(
[40.009102, 116.321413],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_23c553dbc7b9a2112c8d0c71937140e1 = L.circleMarker(
[39.999702, 116.324163],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_9ac6a3df132e4b4b49ff0a93a631a032 = L.circleMarker(
[40.009193, 116.320993],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_49d547551fe26bf11ea8907f5d33772f = L.circleMarker(
[40.008767, 116.321001],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_470bbefecf6992b69632204bb16f224c = L.circleMarker(
[40.007285, 116.319607],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_3299abe41f67876f6a1bfda350856c71 = L.circleMarker(
[40.008959, 116.32117],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_608e7865e8049ca7c2e3252327ce4dc8 = L.circleMarker(
[39.9999, 116.32454],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_7ae35f09a32ed9c3647dc5faf15bc4dc = L.circleMarker(
[39.996291, 116.317204],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_e05d0b75ddb4638bc1de8ca5ae9bb296 = L.circleMarker(
[39.999923, 116.324447],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_86620707aa517896d67f3e5b8fc69904 = L.circleMarker(
[40.008356, 116.322531],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b50716190bc5e6e3a6a84c600b2bebb1 = L.circleMarker(
[40.000356, 116.324501],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_bb76474cd6827c9aaaf89bedb3364345 = L.circleMarker(
[40.008615, 116.321539],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2325ff51a07527124ca1ce5cf083b91c = L.circleMarker(
[40.00861, 116.321583],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_73cc701fe2c2ef9d70f040b375fb796e = L.circleMarker(
[40.003389, 116.318809],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_2ba03a64aea75373c2003480bf2a74c7 = L.circleMarker(
[39.999914, 116.324407],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_0eb9e4a10debb629532f7718f56cb7b2 = L.circleMarker(
[40.007451, 116.323341],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_c579a4089e41d84e03f61f6ce9660370 = L.circleMarker(
[39.999851, 116.3243],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_76cde090b2ce88264971d91ac464bcbb = L.circleMarker(
[39.999962, 116.322111],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_b5f2de5ea8878f4b29654c065f897bba = L.circleMarker(
[40.008586, 116.322173],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_d786d46c6276b57a92e9c65178a58269 = L.circleMarker(
[39.99957, 116.324601],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_ec427c85bdce6d607bfffd32bdf092dd = L.circleMarker(
[40.010297, 116.323178],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_3e4c4ab4640c6ba4bea7a6d61c61e062 = L.circleMarker(
[40.007036, 116.319574],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "black", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3}
).addTo(map_dcd45e8f3bc769dab2244d983ade67cf);
var circle_marker_55c03099d23b5d5056c4daab538516bf = L.circleMarker(
[39.995908, 116.327674],