-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbangalore_rest_map.html
2564 lines (1254 loc) · 115 KB
/
bangalore_rest_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/[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_525b53bac06db624b7b62644cd2305b1 {
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_525b53bac06db624b7b62644cd2305b1" ></div>
</body>
<script>
var map_525b53bac06db624b7b62644cd2305b1 = L.map(
"map_525b53bac06db624b7b62644cd2305b1",
{
center: [12.934533, 77.626579],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_fe6b8f35e68755aaaa6be3d5f7e23c18 = 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_fe6b8f35e68755aaaa6be3d5f7e23c18.addTo(map_525b53bac06db624b7b62644cd2305b1);
var feature_group_8da8957d4ec469b0853f7f9799e3b9f1 = L.featureGroup(
{}
);
var circle_marker_ae15698a0ad10d6da2d365f50f1b6e6a = L.circleMarker(
[12.911275849999999, 77.60456543431182],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_4fabc5ffc423691a45b6de7f0b808452 = L.circleMarker(
[12.9393328, 77.5539819],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_0a0198869177098cf553d614c802a3e9 = L.circleMarker(
[13.0141618, 77.6518539],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_286c286fca0e811fd7716017ce74831e = L.circleMarker(
[12.9366292, 77.6014714],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_1bc2f8e33ecae5beede5bc390c95413f = L.circleMarker(
[12.9417261, 77.5755021],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_c3ea7a4bdb96230cdcd066a130b295b2 = L.circleMarker(
[12.99118045, 77.54489175084052],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_f13ed9534c671166a6a362bd891c7892 = L.circleMarker(
[12.93103185, 77.6782471],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_92a1a0e492306451dfe03b292564bdd9 = L.circleMarker(
[12.9089453, 77.6239038],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_7d037164afa0d68ad23daaf622024d62 = L.circleMarker(
[12.9672765, 77.6065676],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_84a9070dda28f967e2855f40dff62703 = L.circleMarker(
[12.96381425, 77.72243691580387],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_2b91b7e9b07de9bca82d7757a7065399 = L.circleMarker(
[12.9855509, 77.668072],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_74e5fe19f4a6ed3b2c3868944a51a00b = L.circleMarker(
[12.97339325, 77.61124684880099],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_28ff75a4de697f12b43892080c093262 = L.circleMarker(
[12.9749032, 77.6052899],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_dad2de6c40aea76767684a6a5ab57ce8 = L.circleMarker(
[12.965717999999999, 77.5762705372058],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_a82b60a0df7644240e600907beeb5720 = L.circleMarker(
[12.9822324, 77.6082947],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_80390e99162bb24cc3dbf4772dacd594 = L.circleMarker(
[12.9910375, 77.5858824],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_49e0a7e1ccd7296a7a195a64a4ec1134 = L.circleMarker(
[12.9624669, 77.6381958],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_4d69d3e43de3811f8c5c0a51c4c3c9df = L.circleMarker(
[13.001147, 77.61822712748447],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_7da9d510252f637d4ea0530ddf7805d0 = L.circleMarker(
[12.945245, 77.6269144],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_972e9c7a6e58508232420d6f9b9988c7 = L.circleMarker(
[12.848759900000001, 77.64825295827616],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_32ce481cc9cc2f32bfef4ecd34dea7d5 = L.circleMarker(
[12.9986827, 77.615525],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_a88c0913c381a9c0b377427451ec2a7a = L.circleMarker(
[13.0358698, 77.6323597],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_38eb473c2d0115e7d0911befd4ef17d2 = L.circleMarker(
[12.9116225, 77.6388622],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_aa79fc8514cd0dc0c9846fe1724ed2a0 = L.circleMarker(
[13.0382184, 77.5919],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_61f89fbfe7e26a976882909cb4e5b622 = L.circleMarker(
[13.0258087, 77.6305067],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_42d72c5db9338be59fe7a64c3de851e0 = L.circleMarker(
[12.9585353, 77.6061062],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_f196013fa4d352f029e65d257416e566 = L.circleMarker(
[12.9874878, 77.736158],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_03c1e101fb3d97c312993ee42d27cf0f = L.circleMarker(
[12.9732913, 77.6404672],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_68411540693b715db829b853fc15578c = L.circleMarker(
[12.9821293, 77.5988521],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_1954afc2443e257f4041e0f26557c88c = L.circleMarker(
[12.9096941, 77.5866067],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_ca6a3c743f3a807d79156439f669559b = L.circleMarker(
[13.0394104, 77.5197351],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_3685c1b705853653069ec11651805dca = L.circleMarker(
[12.9418488, 77.5868976],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_696b00fc95097d6fd4e343a97e15f144 = L.circleMarker(
[12.9678074, 77.6568367],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_0cab925e1d6a34e3592b5199dd5dab57 = L.circleMarker(
[13.007516, 77.695935],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_7e726f4440208276277a9ca6384a204c = L.circleMarker(
[12.9846713, 77.6790908],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_fb99a27da48e0a122635194fba4ef2f3 = L.circleMarker(
[13.0221416, 77.6403368],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_19e9a632090ee1fe915d9ae571adfbdd = L.circleMarker(
[13.0093455, 77.6377094],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_d30c509b04921b3cb5a2a91ec6bb89ce = L.circleMarker(
[12.9368751, 77.5753517],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_4dcd431cf5b962ff0ba43d42d65804e6 = L.circleMarker(
[12.9229728, 77.4842926],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_55d665ce5dd225ada062f4c867b818c3 = L.circleMarker(
[12.9340114, 77.6222304],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_cf59d7ec06f98ed2932ad2be4d7da809 = L.circleMarker(
[12.9277245, 77.6327822],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_28f3c8794e76d56ad1c479ab28fd0863 = L.circleMarker(
[12.9243692, 77.6242433],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_63384136107b65a090dfc3285010beac = L.circleMarker(
[12.9282918, 77.6254034],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_ec6562be9ed7ff1ca84ec2904c71ccef = L.circleMarker(
[12.9327778, 77.6294052],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_e7a1fc0f1f9be8286d4b8775000efe58 = L.circleMarker(
[12.9348429, 77.6189768],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_f534e4669deb6ec8aafe69b8123a64b3 = L.circleMarker(
[12.9390255, 77.6238477],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_23ac958bd5d4eec8230d6914ffcd3239 = L.circleMarker(
[12.9364846, 77.6134783],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_0ed4954c47cf93e123808e83050f335f = L.circleMarker(
[12.9408685, 77.617338],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_8116a6eafac5ecf6789ad7446ab09a43 = L.circleMarker(
[12.9067683, 77.5595021],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_f751ccaf1f0d59198d34b470276739b9 = L.circleMarker(
[12.957998, 77.6037312],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_96bc4b1a398626eb0d45d6d7a47be47a = L.circleMarker(
[12.9683054, 77.5964883],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_6e49f53c3fb7a49ec1240630e7a78e65 = L.circleMarker(
[12.9755264, 77.6067902],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_d3a796fdbf39842b0709670371c15d28 = L.circleMarker(
[12.975608, 77.5553564],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_04e4a63303a379420e521dc013b65387 = L.circleMarker(
[12.9783547, 77.5728609],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_a1a5aac5d9e457d42d4339470a8f44cb = L.circleMarker(
[13.0027353, 77.5703253],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_48ab1b11a633481c97145431a1c84dd4 = L.circleMarker(
[12.9552572, 77.6984163],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_11500b3e6a6fad09831cfbe2b174509e = L.circleMarker(
[12.9603811, 77.5570091],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_dbdc437461e7e870d7a510673ae81fbc = L.circleMarker(
[12.9812956, 77.5186888],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_199e3584fffdd1e0f681ed9ea20e57a7 = L.circleMarker(
[13.0422794, 77.6248577],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_afe678638edca66dbfe08558658976bb = L.circleMarker(
[13.0268145, 77.5717187],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_efe998981fb2315c9640a8e6ccc87ccb = L.circleMarker(
[12.9817233, 77.5549364],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_fb8de233cde9ba98724f7224cb6294c7 = L.circleMarker(
[12.9604498, 77.642725],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_9c621885306012c8f307e69f7cd1869c = L.circleMarker(
[12.9824848, 77.6341002],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_6668079f696caf4edf82050c3ba86c44 = L.circleMarker(
[13.0329419, 77.5273253],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_6eccdbc58a08fd201718ca04d551e988 = L.circleMarker(
[13.0227204, 77.595715],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_46f8c3c37f88c697c82b79a89731f4f2 = L.circleMarker(
[12.9843238, 77.5821089],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_b1015929a41538abfbfb06a6ca713707 = L.circleMarker(
[12.9882338, 77.554883],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_adfb1a7fa59268c762a73bdf4027ba29 = L.circleMarker(
[12.9274413, 77.5155224],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_d055bab19c680bffa4e0ed00b0a787ba = L.circleMarker(
[0.0, 0.0],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_7e5755ea8cc2cb8595f779937516aee5 = L.circleMarker(
[12.9729116, 77.6088972],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_6a9073eab87d906897f765836968a4fc = L.circleMarker(
[12.9700474, 77.6171042],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_2136e293fb28d37279c1c5642550a99f = L.circleMarker(
[0.0, 0.0],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_70101dc070d0a3d230cb875d6c766a1a = L.circleMarker(
[13.0621474, 77.58006135480495],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_559bef95df7b9813a578e97d37265d9e = L.circleMarker(
[12.9578658, 77.6958748],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_ae8d9097289b7a364b467a5643d3e289 = L.circleMarker(
[12.993541, 77.5852203],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_0b94e8525599de60bda52e3df34fcff5 = L.circleMarker(
[12.9237639, 77.6540735],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_011420a1fa6f8d1aee59619e25816327 = L.circleMarker(
[12.9931876, 77.5753419],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_8466112dee0ed30bda85f2e3ba579f1f = L.circleMarker(
[12.9575547, 77.5979099],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_49dbf55d06bc6fe3454e74413b445789 = L.circleMarker(
[12.986391, 77.6075416],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_afc4968e8b35d3e8b48d8dbf61f9d6f6 = L.circleMarker(
[12.864107149999999, 77.55441638924378],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_a71ba9498431dcd81d787f7232473477 = L.circleMarker(
[12.9744255, 77.6015301],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_54f16e138c496e40c0e963bdc270012c = L.circleMarker(
[12.973936, 77.6509982],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_49a23920226526fd6c0dfe6a7b4ee396 = L.circleMarker(
[12.9778793, 77.6246697],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_f34afa2d68054924f425fd587090b94b = L.circleMarker(
[12.9039566, 77.5096235],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_3da6437bded1dcec31ebaba593edf3af = L.circleMarker(
[12.9621761, 77.77136741208628],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_60ecbcf833356116e9f8e0cdef7cc4f1 = L.circleMarker(
[12.9934283, 77.5902145],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_9996f0c90ffb60dc5a7db62a7794fd48 = L.circleMarker(
[12.9660722, 77.6125940647638],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_1ce7ec4ce63202f800a77d60e165e3d8 = L.circleMarker(
[13.009476450000001, 77.55308891231309],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_8f6d01434c571b5372269a3dc64f479e = L.circleMarker(
[12.9696365, 77.7497448],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_568a95dc8544a88ce804b25665b4325b = L.circleMarker(
[12.9489339, 77.5968273],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_0371275801f12481a57a5a8a04644de4 = L.circleMarker(
[13.1006982, 77.5963454],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var circle_marker_b8224ae6a9ce681d78b46e0198eed3f4 = L.circleMarker(
[13.02383, 77.5529215],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var marker_876f3659555d4f740aa5dd7a2090000f = L.marker(
[12.911275849999999, 77.60456543431182],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_6ae245b16227bb3835f71c3bd8590344 = L.popup({"maxWidth": "100%"});
var html_5ece3e64e492da1c228127aa3b0f728a = $(`<div id="html_5ece3e64e492da1c228127aa3b0f728a" style="width: 100.0%; height: 100.0%;">BTM</div>`)[0];
popup_6ae245b16227bb3835f71c3bd8590344.setContent(html_5ece3e64e492da1c228127aa3b0f728a);
marker_876f3659555d4f740aa5dd7a2090000f.bindPopup(popup_6ae245b16227bb3835f71c3bd8590344)
;
var marker_c5131b14a9417fe7b61dbe778b6d6451 = L.marker(
[12.9393328, 77.5539819],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_d851b9d6a2617a8cfb1e01b88244379b = L.popup({"maxWidth": "100%"});
var html_cf4c81d1c2162a563b4c3d32f9c81895 = $(`<div id="html_cf4c81d1c2162a563b4c3d32f9c81895" style="width: 100.0%; height: 100.0%;">Banashankari</div>`)[0];
popup_d851b9d6a2617a8cfb1e01b88244379b.setContent(html_cf4c81d1c2162a563b4c3d32f9c81895);
marker_c5131b14a9417fe7b61dbe778b6d6451.bindPopup(popup_d851b9d6a2617a8cfb1e01b88244379b)
;
var marker_c73907ff852cf0246fb29f803b67512c = L.marker(
[13.0141618, 77.6518539],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_734a9f7089e29fadded73ba1e02919b1 = L.popup({"maxWidth": "100%"});
var html_a96d08c2152a9bf6ef7f69a1fa74a44c = $(`<div id="html_a96d08c2152a9bf6ef7f69a1fa74a44c" style="width: 100.0%; height: 100.0%;">Banaswadi</div>`)[0];
popup_734a9f7089e29fadded73ba1e02919b1.setContent(html_a96d08c2152a9bf6ef7f69a1fa74a44c);
marker_c73907ff852cf0246fb29f803b67512c.bindPopup(popup_734a9f7089e29fadded73ba1e02919b1)
;
var marker_862831f693ce5c612551ac2bb7c6cdcd = L.marker(
[12.9366292, 77.6014714],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_9182dc39fe4299843abef1705a450148 = L.popup({"maxWidth": "100%"});
var html_d67f886b49ab2cf11779572bc3f1e233 = $(`<div id="html_d67f886b49ab2cf11779572bc3f1e233" style="width: 100.0%; height: 100.0%;">Bannerghatta Road</div>`)[0];
popup_9182dc39fe4299843abef1705a450148.setContent(html_d67f886b49ab2cf11779572bc3f1e233);
marker_862831f693ce5c612551ac2bb7c6cdcd.bindPopup(popup_9182dc39fe4299843abef1705a450148)
;
var marker_523b6b92a63aa08cec1733641f1a6421 = L.marker(
[12.9417261, 77.5755021],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_2578b13de07d3f0a2d4dc964632a1442 = L.popup({"maxWidth": "100%"});
var html_3e9eb10ce2486902b5a07da669d09491 = $(`<div id="html_3e9eb10ce2486902b5a07da669d09491" style="width: 100.0%; height: 100.0%;">Basavanagudi</div>`)[0];
popup_2578b13de07d3f0a2d4dc964632a1442.setContent(html_3e9eb10ce2486902b5a07da669d09491);
marker_523b6b92a63aa08cec1733641f1a6421.bindPopup(popup_2578b13de07d3f0a2d4dc964632a1442)
;
var marker_671f33b2d3a78f6d1b05a4d81d6bc30c = L.marker(
[12.99118045, 77.54489175084052],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_afaf696cfebc0d7f6fea8e0a16c95e8d = L.popup({"maxWidth": "100%"});
var html_9e1faca4b7031e7725eb543b67deee47 = $(`<div id="html_9e1faca4b7031e7725eb543b67deee47" style="width: 100.0%; height: 100.0%;">Basaveshwara Nagar</div>`)[0];
popup_afaf696cfebc0d7f6fea8e0a16c95e8d.setContent(html_9e1faca4b7031e7725eb543b67deee47);
marker_671f33b2d3a78f6d1b05a4d81d6bc30c.bindPopup(popup_afaf696cfebc0d7f6fea8e0a16c95e8d)
;
var marker_719afeffe927d12bfc8a20f2e9b1ad14 = L.marker(
[12.93103185, 77.6782471],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_1bb575881e1b869c9d892741de64f039 = L.popup({"maxWidth": "100%"});
var html_434514459527e350181007529568af27 = $(`<div id="html_434514459527e350181007529568af27" style="width: 100.0%; height: 100.0%;">Bellandur</div>`)[0];
popup_1bb575881e1b869c9d892741de64f039.setContent(html_434514459527e350181007529568af27);
marker_719afeffe927d12bfc8a20f2e9b1ad14.bindPopup(popup_1bb575881e1b869c9d892741de64f039)
;
var marker_33d1bf8aeab2413e7044444842fb1c4c = L.marker(
[12.9089453, 77.6239038],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_921ad1fb17a58da7da5ea2cc84a9d22d = L.popup({"maxWidth": "100%"});
var html_f8473c5457134cf6a2882f553e5f2079 = $(`<div id="html_f8473c5457134cf6a2882f553e5f2079" style="width: 100.0%; height: 100.0%;">Bommanahalli</div>`)[0];
popup_921ad1fb17a58da7da5ea2cc84a9d22d.setContent(html_f8473c5457134cf6a2882f553e5f2079);
marker_33d1bf8aeab2413e7044444842fb1c4c.bindPopup(popup_921ad1fb17a58da7da5ea2cc84a9d22d)
;
var marker_87f03c2872f01fc8909ceb7362492d4b = L.marker(
[12.9672765, 77.6065676],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_c9c1a05a36325928d6bdf874c68e8abf = L.popup({"maxWidth": "100%"});
var html_92363cd9002d6c6cb2129e9b86078d7e = $(`<div id="html_92363cd9002d6c6cb2129e9b86078d7e" style="width: 100.0%; height: 100.0%;">Brigade Road</div>`)[0];
popup_c9c1a05a36325928d6bdf874c68e8abf.setContent(html_92363cd9002d6c6cb2129e9b86078d7e);
marker_87f03c2872f01fc8909ceb7362492d4b.bindPopup(popup_c9c1a05a36325928d6bdf874c68e8abf)
;
var marker_22b154ad2c574f23a3ea07cdc9d1a787 = L.marker(
[12.96381425, 77.72243691580387],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_663ca036786f3d377c09e87759197c1d = L.popup({"maxWidth": "100%"});
var html_b6ab7ddc732139150dd1754540861e09 = $(`<div id="html_b6ab7ddc732139150dd1754540861e09" style="width: 100.0%; height: 100.0%;">Brookefield</div>`)[0];
popup_663ca036786f3d377c09e87759197c1d.setContent(html_b6ab7ddc732139150dd1754540861e09);
marker_22b154ad2c574f23a3ea07cdc9d1a787.bindPopup(popup_663ca036786f3d377c09e87759197c1d)
;
var marker_a9ec4eadcc5374c8ccf9234a73adc910 = L.marker(
[12.9855509, 77.668072],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_e3d30ad8764f001de58a516d5bf4971b = L.popup({"maxWidth": "100%"});
var html_bbdd1a24b1feb7f6ef0f627a118f3141 = $(`<div id="html_bbdd1a24b1feb7f6ef0f627a118f3141" style="width: 100.0%; height: 100.0%;">CV Raman Nagar</div>`)[0];
popup_e3d30ad8764f001de58a516d5bf4971b.setContent(html_bbdd1a24b1feb7f6ef0f627a118f3141);
marker_a9ec4eadcc5374c8ccf9234a73adc910.bindPopup(popup_e3d30ad8764f001de58a516d5bf4971b)
;
var marker_664c34a289a2d5f242c3b246b2a26e75 = L.marker(
[12.97339325, 77.61124684880099],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_2001c5f61dbf1e35495319165fbc6af3 = L.popup({"maxWidth": "100%"});
var html_f19e797c243a5f48e16258e88fc629df = $(`<div id="html_f19e797c243a5f48e16258e88fc629df" style="width: 100.0%; height: 100.0%;">Central Bangalore</div>`)[0];
popup_2001c5f61dbf1e35495319165fbc6af3.setContent(html_f19e797c243a5f48e16258e88fc629df);
marker_664c34a289a2d5f242c3b246b2a26e75.bindPopup(popup_2001c5f61dbf1e35495319165fbc6af3)
;
var marker_86b65f26a70311245cc75953ad5dff39 = L.marker(
[12.9749032, 77.6052899],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_cd9ab1e5b06aba8362bb947573ebea6e = L.popup({"maxWidth": "100%"});
var html_0c260a5be5c4ce27c9617d6fcafe9e83 = $(`<div id="html_0c260a5be5c4ce27c9617d6fcafe9e83" style="width: 100.0%; height: 100.0%;">Church Street</div>`)[0];
popup_cd9ab1e5b06aba8362bb947573ebea6e.setContent(html_0c260a5be5c4ce27c9617d6fcafe9e83);
marker_86b65f26a70311245cc75953ad5dff39.bindPopup(popup_cd9ab1e5b06aba8362bb947573ebea6e)
;
var marker_de2671c243a9a8504d4f85841d7c3365 = L.marker(
[12.965717999999999, 77.5762705372058],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_3fcca90ef4e5f683a707cb2184b63675 = L.popup({"maxWidth": "100%"});
var html_dbb1d8438f3109e930e762220b518137 = $(`<div id="html_dbb1d8438f3109e930e762220b518137" style="width: 100.0%; height: 100.0%;">City Market</div>`)[0];
popup_3fcca90ef4e5f683a707cb2184b63675.setContent(html_dbb1d8438f3109e930e762220b518137);
marker_de2671c243a9a8504d4f85841d7c3365.bindPopup(popup_3fcca90ef4e5f683a707cb2184b63675)
;
var marker_51c6dfd76ea17f3fc4bc0d1a7030b265 = L.marker(
[12.9822324, 77.6082947],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_929735d2501d82b275a4acc4865dd3ae = L.popup({"maxWidth": "100%"});
var html_fae95180c0fd3049dae77e4a296cd54e = $(`<div id="html_fae95180c0fd3049dae77e4a296cd54e" style="width: 100.0%; height: 100.0%;">Commercial Street</div>`)[0];
popup_929735d2501d82b275a4acc4865dd3ae.setContent(html_fae95180c0fd3049dae77e4a296cd54e);
marker_51c6dfd76ea17f3fc4bc0d1a7030b265.bindPopup(popup_929735d2501d82b275a4acc4865dd3ae)
;
var marker_7aaa74d41e376f14694cb9c15028f3cd = L.marker(
[12.9910375, 77.5858824],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_d8dadde485f27e25d16971af21a376c5 = L.popup({"maxWidth": "100%"});
var html_ac24e890711c3c07db25a609053202bd = $(`<div id="html_ac24e890711c3c07db25a609053202bd" style="width: 100.0%; height: 100.0%;">Cunningham Road</div>`)[0];
popup_d8dadde485f27e25d16971af21a376c5.setContent(html_ac24e890711c3c07db25a609053202bd);
marker_7aaa74d41e376f14694cb9c15028f3cd.bindPopup(popup_d8dadde485f27e25d16971af21a376c5)
;
var marker_594b1aea34ba557d6ac02cd88a7545a5 = L.marker(
[12.9624669, 77.6381958],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_6903e07abd3829f4fb2c4e6da8ef2350 = L.popup({"maxWidth": "100%"});
var html_f9fa0ec89f2ea3857552b9b751ffcf83 = $(`<div id="html_f9fa0ec89f2ea3857552b9b751ffcf83" style="width: 100.0%; height: 100.0%;">Domlur</div>`)[0];
popup_6903e07abd3829f4fb2c4e6da8ef2350.setContent(html_f9fa0ec89f2ea3857552b9b751ffcf83);
marker_594b1aea34ba557d6ac02cd88a7545a5.bindPopup(popup_6903e07abd3829f4fb2c4e6da8ef2350)
;
var marker_67d4e8806b57731f02d73c810676e675 = L.marker(
[13.001147, 77.61822712748447],
{}
).addTo(feature_group_8da8957d4ec469b0853f7f9799e3b9f1);
var popup_9c3bfa259866e4ff405d30f59c1c1c6a = L.popup({"maxWidth": "100%"});
var html_220d72ccbd58fdced4706ec8602adb09 = $(`<div id="html_220d72ccbd58fdced4706ec8602adb09" style="width: 100.0%; height: 100.0%;">East Bangalore</div>`)[0];
popup_9c3bfa259866e4ff405d30f59c1c1c6a.setContent(html_220d72ccbd58fdced4706ec8602adb09);