-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap_walking.html
1608 lines (1068 loc) · 128 KB
/
map_walking.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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/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_2f459925970a82e451d442f9d60b9bed {
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_2f459925970a82e451d442f9d60b9bed" ></div>
</body>
<script>
var map_2f459925970a82e451d442f9d60b9bed = L.map(
"map_2f459925970a82e451d442f9d60b9bed",
{
center: [22.690691, 114.34753],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_415592103cdd9aebe90f065c14e8ef9b = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_415592103cdd9aebe90f065c14e8ef9b.addTo(map_2f459925970a82e451d442f9d60b9bed);
var marker_0b924eac89d35063d9b590abde0c86f9 = L.marker(
[22.690691, 114.34753],
{}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var icon_4bea7d6faa51f8bac5c887b3fd922bb7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_0b924eac89d35063d9b590abde0c86f9.setIcon(icon_4bea7d6faa51f8bac5c887b3fd922bb7);
var popup_db63ec24db092d24b553ac823fdf8f4b = L.popup({"maxWidth": "100%"});
var html_09826085ba0137472649bcfcf99cf0e2 = $(`<div id="html_09826085ba0137472649bcfcf99cf0e2" style="width: 100.0%; height: 100.0%;">起点</div>`)[0];
popup_db63ec24db092d24b553ac823fdf8f4b.setContent(html_09826085ba0137472649bcfcf99cf0e2);
marker_0b924eac89d35063d9b590abde0c86f9.bindPopup(popup_db63ec24db092d24b553ac823fdf8f4b)
;
var marker_b7dcc37dcaeea056694fe0b85ca108b8 = L.marker(
[22.701168, 114.395655],
{}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var icon_8aaa47493029494b909edc8bfb57420c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_b7dcc37dcaeea056694fe0b85ca108b8.setIcon(icon_8aaa47493029494b909edc8bfb57420c);
var popup_d532aa69a64b48209964d5a429d87689 = L.popup({"maxWidth": "100%"});
var html_db19115ef8f2461adb3b81d338588656 = $(`<div id="html_db19115ef8f2461adb3b81d338588656" style="width: 100.0%; height: 100.0%;">终点</div>`)[0];
popup_d532aa69a64b48209964d5a429d87689.setContent(html_db19115ef8f2461adb3b81d338588656);
marker_b7dcc37dcaeea056694fe0b85ca108b8.bindPopup(popup_d532aa69a64b48209964d5a429d87689)
;
var poly_line_fb232220d86493ccbf0a5a32e1d88e56 = L.polyline(
[[22.690691, 114.34753], [22.690808, 114.347734], [22.690808, 114.347734], [22.690912, 114.34789500000001], [22.690912, 114.34789500000001], [22.691003000000002, 114.348025], [22.691003000000002, 114.348025], [22.691632000000002, 114.34878900000001], [22.691632000000002, 114.34878900000001], [22.691498, 114.348889], [22.691498, 114.348889], [22.691129, 114.349141], [22.691129, 114.349141], [22.690825, 114.34935300000001], [22.690825, 114.34935300000001], [22.690586, 114.349514], [22.690586, 114.349514], [22.690426000000002, 114.349618], [22.690426000000002, 114.349618], [22.690165, 114.349796], [22.68997, 114.34990900000001], [22.68997, 114.34990900000001], [22.689866000000002, 114.349957], [22.689766000000002, 114.34997800000001], [22.689436, 114.35003], [22.689436, 114.35003], [22.689254000000002, 114.35005600000001], [22.689254000000002, 114.35005600000001], [22.689137000000002, 114.350069], [22.689137000000002, 114.350069], [22.688824, 114.350122], [22.68882, 114.350122], [22.688863, 114.350412], [22.688915, 114.350903], [22.688915, 114.350903], [22.689063, 114.35216100000001], [22.689063, 114.35216100000001], [22.689124, 114.35332000000001], [22.689124, 114.353633], [22.689033000000002, 114.354076], [22.689033000000002, 114.354076], [22.689037, 114.354427], [22.689037, 114.354427], [22.689037, 114.354549], [22.689037, 114.354549], [22.689037, 114.354883], [22.68905, 114.35515600000001], [22.689072, 114.35542500000001], [22.689093, 114.355616], [22.689159, 114.355929], [22.689159, 114.355929], [22.689176, 114.356072], [22.689189, 114.356341], [22.689189, 114.356341], [22.689202, 114.356875], [22.689202, 114.356875], [22.689215, 114.357365], [22.689228, 114.35749100000001], [22.689228, 114.35749100000001], [22.689241, 114.357899], [22.689241, 114.357899], [22.68928, 114.35875], [22.68928, 114.35875], [22.689302, 114.35915800000001], [22.689302, 114.35915800000001], [22.689302, 114.35918000000001], [22.689302, 114.35918000000001], [22.689306000000002, 114.35931000000001], [22.689306000000002, 114.35931000000001], [22.689315, 114.359661], [22.689315, 114.359661], [22.689323, 114.359865], [22.689323, 114.359865], [22.689328, 114.359965], [22.689328, 114.359965], [22.689328, 114.360169], [22.689328, 114.360169], [22.689354, 114.36062100000001], [22.689354, 114.36062100000001], [22.689354, 114.360681], [22.689354, 114.360681], [22.689363, 114.360985], [22.689363, 114.360985], [22.689406, 114.36158900000001], [22.689406, 114.36158900000001], [22.689415, 114.36177500000001], [22.689415, 114.36177500000001], [22.689419, 114.36184], [22.689419, 114.36184], [22.689432, 114.362027], [22.689432, 114.362027], [22.689501, 114.362986], [22.689501, 114.362986], [22.689545, 114.36368900000001], [22.689597, 114.36437500000001], [22.68964, 114.364727], [22.68964, 114.364727], [22.689705, 114.365069], [22.689779, 114.365412], [22.689779, 114.365412], [22.68981, 114.36549500000001], [22.68981, 114.36549500000001], [22.689966000000002, 114.365994], [22.689966000000002, 114.365994], [22.690235, 114.36691], [22.690235, 114.36691], [22.690326, 114.36716600000001], [22.690326, 114.36716600000001], [22.690465, 114.36761700000001], [22.690465, 114.36761700000001], [22.690730000000002, 114.368424], [22.690730000000002, 114.368424], [22.690843, 114.368767], [22.690843, 114.368767], [22.691038, 114.36941800000001], [22.691038, 114.36941800000001], [22.691151, 114.369774], [22.691151, 114.369774], [22.691298, 114.37023400000001], [22.691298, 114.37023400000001], [22.691619, 114.371393], [22.691619, 114.371393], [22.691654, 114.371502], [22.691654, 114.371502], [22.69175, 114.371775], [22.691784000000002, 114.371853], [22.691902, 114.372044], [22.691941, 114.372118], [22.692001, 114.37227], [22.692001, 114.37227], [22.692145, 114.37273], [22.692145, 114.37273], [22.692214, 114.372951], [22.692257, 114.373051], [22.692318, 114.373164], [22.69257, 114.373559], [22.69257, 114.373559], [22.692648000000002, 114.373689], [22.692648000000002, 114.373689], [22.692757, 114.373889], [22.692778, 114.373919], [22.692852000000002, 114.374063], [22.692852000000002, 114.374063], [22.69313, 114.374627], [22.69313, 114.374627], [22.693282, 114.374948], [22.693282, 114.374948], [22.693529, 114.37549], [22.693568, 114.375673], [22.693568, 114.375673], [22.693915, 114.37639800000001], [22.694033, 114.376667], [22.694033, 114.376667], [22.694115, 114.37684], [22.694115, 114.37684], [22.694124000000002, 114.37687100000001], [22.694124000000002, 114.37687100000001], [22.694328000000002, 114.377352], [22.694328000000002, 114.377352], [22.694362, 114.37742200000001], [22.694362, 114.37742200000001], [22.694423, 114.37757400000001], [22.694423, 114.37757400000001], [22.694501, 114.377747], [22.694501, 114.377747], [22.69487, 114.378594], [22.69487, 114.378594], [22.694901, 114.37867200000001], [22.694901, 114.37867200000001], [22.695031, 114.378984], [22.695066, 114.379084], [22.695066, 114.379084], [22.695131, 114.379284], [22.695131, 114.379284], [22.695196, 114.379497], [22.695278000000002, 114.379779], [22.695278000000002, 114.379779], [22.695339, 114.379991], [22.695339, 114.379991], [22.695352, 114.380052], [22.695352, 114.380052], [22.695387, 114.38023000000001], [22.695413000000002, 114.380425], [22.69543, 114.380582], [22.69543, 114.380582], [22.695456, 114.38079400000001], [22.695448, 114.381168], [22.695422, 114.381411], [22.695417, 114.38151], [22.695309, 114.382669], [22.695309, 114.382669], [22.695265, 114.383103], [22.695265, 114.383103], [22.695191, 114.38392800000001], [22.695191, 114.38392800000001], [22.695174, 114.384106], [22.695174, 114.384106], [22.695148, 114.38440100000001], [22.695148, 114.38440100000001], [22.695083, 114.38511700000001], [22.695083, 114.38511700000001], [22.695009, 114.38589], [22.695009, 114.38589], [22.694831, 114.38781300000001], [22.694831, 114.38781300000001], [22.694779, 114.388368], [22.694779, 114.388368], [22.694718, 114.38906300000001], [22.694718, 114.38906300000001], [22.694692, 114.389314], [22.694692, 114.389314], [22.694653, 114.389688], [22.694653, 114.389688], [22.69464, 114.38989600000001], [22.69464, 114.38989600000001], [22.694627, 114.38997], [22.694575, 114.39073400000001], [22.694575, 114.39073400000001], [22.694553, 114.39101600000001], [22.694553, 114.39137600000001], [22.694575, 114.39168000000001], [22.694597, 114.391879], [22.694601000000002, 114.391992], [22.694601000000002, 114.391992], [22.694627, 114.39219200000001], [22.694627, 114.39219200000001], [22.696485, 114.391745], [22.696906000000002, 114.391723], [22.697244, 114.391749], [22.697618000000002, 114.39184], [22.698277, 114.39214], [22.698277, 114.39214], [22.699106, 114.39251300000001], [22.699276, 114.39255200000001], [22.699549, 114.39257400000001], [22.699918, 114.392582], [22.701125, 114.392561], [22.701125, 114.392556], [22.701133000000002, 114.392708], [22.701138, 114.39329000000001], [22.701138, 114.39329000000001], [22.701138, 114.393403], [22.701138, 114.393403], [22.701168, 114.39562500000001], [22.701168, 114.39562500000001], [22.701168, 114.395655]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_39c09b03da4621407b4258e9d4539e64 = L.circleMarker(
[22.690691, 114.34753],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_7cd6784e280a5e56632d25b44591a250 = L.circleMarker(
[22.690808, 114.347734],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_4521fd9a635f982a4e2fa39f401cc504 = L.circleMarker(
[22.690808, 114.347734],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_49a35d2f0f740ad53ef273c3f8ac1dd9 = L.circleMarker(
[22.690912, 114.34789500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b766046f0de0b8fd5fa2c60eaa17fd0a = L.circleMarker(
[22.690912, 114.34789500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_f10d1d97cadc80c2a4bc6b3d4f2a59f5 = L.circleMarker(
[22.691003000000002, 114.348025],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a56b22e8f3d37d038c0253bca749937a = L.circleMarker(
[22.691003000000002, 114.348025],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_9c70f4e69b1605f90c741865604e34e3 = L.circleMarker(
[22.691632000000002, 114.34878900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c6ba3cc5764d8f5d571687c757cd5847 = L.circleMarker(
[22.691632000000002, 114.34878900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c0ba556b7e48c10f07f8b1700c9556ca = L.circleMarker(
[22.691498, 114.348889],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_9c191ecd94d67843f6bb96d147c8f161 = L.circleMarker(
[22.691498, 114.348889],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b7770c53e9e6b3d55d6faf5c76871908 = L.circleMarker(
[22.691129, 114.349141],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_dd5da1d35cf07a4f9bce613a2d9d27fe = L.circleMarker(
[22.691129, 114.349141],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_384e4a4944ab10eb9a4debb038cac539 = L.circleMarker(
[22.690825, 114.34935300000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_e74ae01d2a596cd804dfbdee8d503274 = L.circleMarker(
[22.690825, 114.34935300000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5d0bf2e99e92fcd3762641149246f830 = L.circleMarker(
[22.690586, 114.349514],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_7e86f1d002ad141bd48153df77971a7d = L.circleMarker(
[22.690586, 114.349514],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_d7408615e51c9d9dc7fdd5c989ee58c5 = L.circleMarker(
[22.690426000000002, 114.349618],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_31ca6379c63b12ba2561cf7f9324c2ca = L.circleMarker(
[22.690426000000002, 114.349618],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a4265d048d11b4443dec01f2dab75faa = L.circleMarker(
[22.690165, 114.349796],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_e1079020fb40507cd17a473636e4c5bc = L.circleMarker(
[22.68997, 114.34990900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5ccceeb489c36db1f3d6f201872d55ca = L.circleMarker(
[22.68997, 114.34990900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_938599aa1cc9c84b3ce37531ea0ab6b3 = L.circleMarker(
[22.689866000000002, 114.349957],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_95107fb42d817a9ea977e738d5c9ba8c = L.circleMarker(
[22.689766000000002, 114.34997800000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1220558bbb688b6cef5ba174060382c5 = L.circleMarker(
[22.689436, 114.35003],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_d026234f65382cafbe8d5d1b5b19f8be = L.circleMarker(
[22.689436, 114.35003],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a9e58ace7b0bf076489f00e1f90c600c = L.circleMarker(
[22.689254000000002, 114.35005600000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_d9e52562a0a88c5dfe5fd942885523ba = L.circleMarker(
[22.689254000000002, 114.35005600000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b02129fdde686b4fd6a29e5143cde6d6 = L.circleMarker(
[22.689137000000002, 114.350069],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b9d72dd2fd9092cf9bab14a2940394f4 = L.circleMarker(
[22.689137000000002, 114.350069],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_bdef34a1dd17767b2e8df6be582d8b8b = L.circleMarker(
[22.688824, 114.350122],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c897bc34acea48e2b609c19bb9f8fd94 = L.circleMarker(
[22.68882, 114.350122],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8b9b3eb8196e3607d808fd9799a278d7 = L.circleMarker(
[22.688863, 114.350412],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_da921bea70a2a329ed3e77870bca350e = L.circleMarker(
[22.688915, 114.350903],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_21ed29e24a935103b8d48b66c587acb2 = L.circleMarker(
[22.688915, 114.350903],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c0de5c6caf7eeba3443a0ec61c27ad1a = L.circleMarker(
[22.689063, 114.35216100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a928b55f52abe20d895455c1580757b7 = L.circleMarker(
[22.689063, 114.35216100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ce8077b2c0ce8b01126028f5fd658038 = L.circleMarker(
[22.689124, 114.35332000000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8bc8aba91e6fdaa359ed3a08623d4d56 = L.circleMarker(
[22.689124, 114.353633],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_19d5dc8858d705a062b4f070dee294ad = L.circleMarker(
[22.689033000000002, 114.354076],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_6d08c9137f42cc177d1ef4d9c070d58c = L.circleMarker(
[22.689033000000002, 114.354076],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5725fdc6530d3484c4ae899ee64b8cd9 = L.circleMarker(
[22.689037, 114.354427],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_f4611c8ec0ffd2d6cf7a963f5eb128b5 = L.circleMarker(
[22.689037, 114.354427],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_799e65b36721e32d106b063f65dc6063 = L.circleMarker(
[22.689037, 114.354549],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ff89b3db02d944cfd28f3ecdcea5a4d4 = L.circleMarker(
[22.689037, 114.354549],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_2d30bf52c42dca99f3040dade86ac0b2 = L.circleMarker(
[22.689037, 114.354883],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_efb867ebc3b3c3913d23b6021781e8ed = L.circleMarker(
[22.68905, 114.35515600000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1c3aa37737be48fac13d2c110b58bcf0 = L.circleMarker(
[22.689072, 114.35542500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_917e5c2897f9fa2da5b66066dca49cc5 = L.circleMarker(
[22.689093, 114.355616],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_57b9cf427c7b11dd6e788b56514f7aab = L.circleMarker(
[22.689159, 114.355929],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_447243405b58fb055b966f1f1374617c = L.circleMarker(
[22.689159, 114.355929],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a00d964ff0a58594e5f2ac13b90c1d5f = L.circleMarker(
[22.689176, 114.356072],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5190237ba0e5ac306771d85704f6e986 = L.circleMarker(
[22.689189, 114.356341],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_224e1a23d274b5b059e6f78e7498e1a2 = L.circleMarker(
[22.689189, 114.356341],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c89d7d18917dd9cb629d4cba7be35ca3 = L.circleMarker(
[22.689202, 114.356875],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8475046f3da570caf1db044e091f714c = L.circleMarker(
[22.689202, 114.356875],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_09be0435a3b480fa89bcb5e844d0e944 = L.circleMarker(
[22.689215, 114.357365],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_d88e85c14ee9f745ba03ae0d0d865cc6 = L.circleMarker(
[22.689228, 114.35749100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_cbe99bb38e0d5a30c209fedca8f5e3dd = L.circleMarker(
[22.689228, 114.35749100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_de3b210052281ec6701b5084ac42dbda = L.circleMarker(
[22.689241, 114.357899],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1d441a0d7bc0d1ee59cb4c11dd806731 = L.circleMarker(
[22.689241, 114.357899],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_0e03d189fd626a78fbd1c4b1b719844e = L.circleMarker(
[22.68928, 114.35875],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_582472254a34d4fdc82ac278c2157adb = L.circleMarker(
[22.68928, 114.35875],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_0c9f8a2459f201af48771c2c9c82e0ea = L.circleMarker(
[22.689302, 114.35915800000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_4c25596a383a3967082babf90d0884e7 = L.circleMarker(
[22.689302, 114.35915800000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_aecd4e50ebf0759e3ffc1e4af67be5e5 = L.circleMarker(
[22.689302, 114.35918000000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_bab7052e3b36d5acac7a3608f6eb8cef = L.circleMarker(
[22.689302, 114.35918000000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_0c2bd82c5fb9a531cdad35de60e2c12a = L.circleMarker(
[22.689306000000002, 114.35931000000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_193fe07979dbdb6c9f37da71e46e503e = L.circleMarker(
[22.689306000000002, 114.35931000000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_949855dcdf883939c36b7bbeb1917560 = L.circleMarker(
[22.689315, 114.359661],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_787dfe4d8c3e01ad82ab21ce286b2017 = L.circleMarker(
[22.689315, 114.359661],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_53c1728dcdf8c4a0879d0d4c57881caa = L.circleMarker(
[22.689323, 114.359865],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_352aebe6df75c986c2d4a49e36daceba = L.circleMarker(
[22.689323, 114.359865],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_3b8f04e444e16d5534f48e33a1713dc8 = L.circleMarker(
[22.689328, 114.359965],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ff51fd48cff38db0c14e10c9f1162f91 = L.circleMarker(
[22.689328, 114.359965],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_3400f161073efbc94026d6dd06769677 = L.circleMarker(
[22.689328, 114.360169],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_0c7579e64c2afea355ec7aaf8f0951dc = L.circleMarker(
[22.689328, 114.360169],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_24bf57f40dd0185df202c7b0a0c11d07 = L.circleMarker(
[22.689354, 114.36062100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_fd80e229319dd312082efe9c5511d7e5 = L.circleMarker(
[22.689354, 114.36062100000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5374586e630dda704ccebe03829e5ac0 = L.circleMarker(
[22.689354, 114.360681],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a2abe14bc6cb3f3efd4e328223fb4532 = L.circleMarker(
[22.689354, 114.360681],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_3e64ad34a4dc522358fec6944be90282 = L.circleMarker(
[22.689363, 114.360985],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_47fa0c2955ddda08ccdae255443364bb = L.circleMarker(
[22.689363, 114.360985],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_af8269fa648b98e661b794e7fc6cb994 = L.circleMarker(
[22.689406, 114.36158900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_0e0c2bc9d1029221de62a08997d99b7f = L.circleMarker(
[22.689406, 114.36158900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_fee3387e7bbf32063b4a2f69d14e48f4 = L.circleMarker(
[22.689415, 114.36177500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_59057b1aef12eea1d1651eb399292e43 = L.circleMarker(
[22.689415, 114.36177500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_79b314a7151298699c30a02da2358915 = L.circleMarker(
[22.689419, 114.36184],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_59d8fef4e1328a33eb22f6738d56fada = L.circleMarker(
[22.689419, 114.36184],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8668dab7c955c2141e980f15500b1d0c = L.circleMarker(
[22.689432, 114.362027],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1f9989920983d82bbecaa54154d54067 = L.circleMarker(
[22.689432, 114.362027],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_571398db861461556088aa5fcd4bf56a = L.circleMarker(
[22.689501, 114.362986],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_7ecf625470357881606ea34bcbcb3b68 = L.circleMarker(
[22.689501, 114.362986],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_976057ef38cf72e25be403e65ce83282 = L.circleMarker(
[22.689545, 114.36368900000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_64d7f99899d72167d34793feb7850ac8 = L.circleMarker(
[22.689597, 114.36437500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ffcfa7d6c33865dbf7fccd773adeab14 = L.circleMarker(
[22.68964, 114.364727],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_f6161572f4f7d998d252891a9f812ec1 = L.circleMarker(
[22.68964, 114.364727],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_00a4c3f76f38388b72cd7f5822d48bb1 = L.circleMarker(
[22.689705, 114.365069],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b40e82c2bae3da2590b7a96f1cfeadf2 = L.circleMarker(
[22.689779, 114.365412],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_c0ea90efd9041dd33a394ce9d8e74d00 = L.circleMarker(
[22.689779, 114.365412],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_be7adb20c4145dadb2197bc8beca0da9 = L.circleMarker(
[22.68981, 114.36549500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_9d29bd9a89b8915dc6585df5836014d1 = L.circleMarker(
[22.68981, 114.36549500000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1622e63120f67f8e5cdef58ffed0dc0f = L.circleMarker(
[22.689966000000002, 114.365994],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ac010d82a1e2a9e52131002e7c12373d = L.circleMarker(
[22.689966000000002, 114.365994],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_7ac182656c1a7a09c567f984090d431f = L.circleMarker(
[22.690235, 114.36691],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_dde080be0bd318b0a19be29f46915fa4 = L.circleMarker(
[22.690235, 114.36691],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a11034caa9e69345a32a1c12159492b6 = L.circleMarker(
[22.690326, 114.36716600000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8e146fcfb71f05c851d8aeea4b35c716 = L.circleMarker(
[22.690326, 114.36716600000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_97eb0893890ea4fc6990863c3b42fc53 = L.circleMarker(
[22.690465, 114.36761700000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_81d3653324d7e320a3ceaf53ebb36b8a = L.circleMarker(
[22.690465, 114.36761700000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_4d8b24fde658c1f9f3474a5cc28f9fe9 = L.circleMarker(
[22.690730000000002, 114.368424],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_319e4f6312512c48b2c770d0715eeefb = L.circleMarker(
[22.690730000000002, 114.368424],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_960e3f936c392d907711335535109d94 = L.circleMarker(
[22.690843, 114.368767],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_d64e5c2d4a359e6461dc2dd6f588e482 = L.circleMarker(
[22.690843, 114.368767],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_99263cc26243777c6dd82e6e282f7fbe = L.circleMarker(
[22.691038, 114.36941800000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_e2cf9c3c82470bca5414c43014a4e7f8 = L.circleMarker(
[22.691038, 114.36941800000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8f8c41fd0ec1d926954c925c01758ea7 = L.circleMarker(
[22.691151, 114.369774],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_737fc764adc394cf802a2ef829062a7a = L.circleMarker(
[22.691151, 114.369774],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_98f2b269401e3d0c497e3a60ae86a8d2 = L.circleMarker(
[22.691298, 114.37023400000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_de4537ca0e6712d5b0cd084a44dd9984 = L.circleMarker(
[22.691298, 114.37023400000001],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_80161174306ae942fb36066e60b9656e = L.circleMarker(
[22.691619, 114.371393],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_1fd3e99e52bfff55a33bb0e20a554c61 = L.circleMarker(
[22.691619, 114.371393],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_e0f2b2386157199dccce1e0f96a08239 = L.circleMarker(
[22.691654, 114.371502],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_9d113a95f6c5cf896c294e82268e825b = L.circleMarker(
[22.691654, 114.371502],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5e2bb327b4e1069833776ae57753054c = L.circleMarker(
[22.69175, 114.371775],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b5175a526f5f562200a8caf0d3566bd4 = L.circleMarker(
[22.691784000000002, 114.371853],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b577b4218fef0de26035faacfcac1ec1 = L.circleMarker(
[22.691902, 114.372044],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_2b51726405e50d784c58883bdcf48df0 = L.circleMarker(
[22.691941, 114.372118],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ef8571e0770c3783b3dc356de37a0464 = L.circleMarker(
[22.692001, 114.37227],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5c2249ae6129548ce7dd060782df6659 = L.circleMarker(
[22.692001, 114.37227],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_22aa0134ee28d96ae927a8c59ae3b97c = L.circleMarker(
[22.692145, 114.37273],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_b2e95467eb240fb572013832fa9e46e9 = L.circleMarker(
[22.692145, 114.37273],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_cb2b529a9c78608533ba2da75280b4e9 = L.circleMarker(
[22.692214, 114.372951],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_ea814646bde85d83070c602af0e08cbf = L.circleMarker(
[22.692257, 114.373051],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_6eec185781be206483a68c8746ddc302 = L.circleMarker(
[22.692318, 114.373164],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_691e561f9c1c945e1ebb722721345240 = L.circleMarker(
[22.69257, 114.373559],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_06f6ab8562d213a502ea4d93b97299a1 = L.circleMarker(
[22.69257, 114.373559],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_892a95e77cfde7a2b148598921f464d6 = L.circleMarker(
[22.692648000000002, 114.373689],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_9868e251d4ef39ddff53961ef98252a1 = L.circleMarker(
[22.692648000000002, 114.373689],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_8bcfb80b6958a972cb60a14e4c8329da = L.circleMarker(
[22.692757, 114.373889],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a2b5e20dd232d9d643acd42f3b07e68c = L.circleMarker(
[22.692778, 114.373919],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_bc345d4691530d29d435cada00d4b0ab = L.circleMarker(
[22.692852000000002, 114.374063],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_96bfba5b43f5faf665409308e569341d = L.circleMarker(
[22.692852000000002, 114.374063],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_a060657f6c384610e07c7d65fc54d989 = L.circleMarker(
[22.69313, 114.374627],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);
var circle_marker_5fb58d179b706a3c42322dfc1997a56d = L.circleMarker(
[22.69313, 114.374627],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2f459925970a82e451d442f9d60b9bed);