-
Notifications
You must be signed in to change notification settings - Fork 0
/
beng_map2.html
4717 lines (3294 loc) · 151 KB
/
beng_map2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_ad20b6e4c2934d5981ba7c37f4f1bd8b {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_ad20b6e4c2934d5981ba7c37f4f1bd8b" ></div>
</body>
<script>
var bounds = null;
var map_ad20b6e4c2934d5981ba7c37f4f1bd8b = L.map(
'map_ad20b6e4c2934d5981ba7c37f4f1bd8b',
{center: [12.966180000000065,77.58690000000007],
zoom: 11,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_e8cfdf7070414c6280034cc24763ceb1 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var circle_marker_df3a9221248d426ca4e18a185dad585c = L.circleMarker(
[13.09931000000006,77.59259000000003],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_83b49a31fbe24eb0bd0410f3a60a3b21 = L.popup({maxWidth: '300'});
var html_31c966127fab40f7840396ced9dc2e6f = $('<div id="html_31c966127fab40f7840396ced9dc2e6f" style="width: 100.0%; height: 100.0%;">Kempegowda, Yelahanka</div>')[0];
popup_83b49a31fbe24eb0bd0410f3a60a3b21.setContent(html_31c966127fab40f7840396ced9dc2e6f);
circle_marker_df3a9221248d426ca4e18a185dad585c.bindPopup(popup_83b49a31fbe24eb0bd0410f3a60a3b21);
var circle_marker_e9d868804c0c46a1bcaba011eb0978a5 = L.circleMarker(
[13.108110000000067,77.59366000000006],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_aacef1f3b3df4a2f9d211e4b026e49a8 = L.popup({maxWidth: '300'});
var html_8d5ecd1c0c3f4923b2d8e8b73769691f = $('<div id="html_8d5ecd1c0c3f4923b2d8e8b73769691f" style="width: 100.0%; height: 100.0%;">Chowdeshwari, Yelahanka</div>')[0];
popup_aacef1f3b3df4a2f9d211e4b026e49a8.setContent(html_8d5ecd1c0c3f4923b2d8e8b73769691f);
circle_marker_e9d868804c0c46a1bcaba011eb0978a5.bindPopup(popup_aacef1f3b3df4a2f9d211e4b026e49a8);
var circle_marker_a7d3fb3f87c84cf5b4514b2409316833 = L.circleMarker(
[13.09698000000003,77.58406000000008],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_597ff2c1b99f4460bf4d41dd07e6e20c = L.popup({maxWidth: '300'});
var html_50ce5b456b514459a8c91ad44a051749 = $('<div id="html_50ce5b456b514459a8c91ad44a051749" style="width: 100.0%; height: 100.0%;">Yelahanka Satellite Town, Yelahanka</div>')[0];
popup_597ff2c1b99f4460bf4d41dd07e6e20c.setContent(html_50ce5b456b514459a8c91ad44a051749);
circle_marker_a7d3fb3f87c84cf5b4514b2409316833.bindPopup(popup_597ff2c1b99f4460bf4d41dd07e6e20c);
var circle_marker_0ff2713a7592406593ecfe8b2abbbf0f = L.circleMarker(
[12.951940000000036,77.54445000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_244bc23ccc5f4359886f0dcf077b975e = L.popup({maxWidth: '300'});
var html_8868388e1e7346d292b4d1e2ff3a50fb = $('<div id="html_8868388e1e7346d292b4d1e2ff3a50fb" style="width: 100.0%; height: 100.0%;">Jakkur, Byatarayanapura</div>')[0];
popup_244bc23ccc5f4359886f0dcf077b975e.setContent(html_8868388e1e7346d292b4d1e2ff3a50fb);
circle_marker_0ff2713a7592406593ecfe8b2abbbf0f.bindPopup(popup_244bc23ccc5f4359886f0dcf077b975e);
var circle_marker_2c7ce4d34a164875a772933db0bce336 = L.circleMarker(
[13.062510000000032,77.55907000000008],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_475223fa89d0438585d364e70ba8c318 = L.popup({maxWidth: '300'});
var html_23d966b4c2e549698fd062bfe5cfc20f = $('<div id="html_23d966b4c2e549698fd062bfe5cfc20f" style="width: 100.0%; height: 100.0%;">Doddabommasandra, Byatarayanapura</div>')[0];
popup_475223fa89d0438585d364e70ba8c318.setContent(html_23d966b4c2e549698fd062bfe5cfc20f);
circle_marker_2c7ce4d34a164875a772933db0bce336.bindPopup(popup_475223fa89d0438585d364e70ba8c318);
var circle_marker_38372cb06d854f88a5d097889fb4ff53 = L.circleMarker(
[12.95560000000006,77.54466000000008],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_79e3a850f59141749f7066605870e17f = L.popup({maxWidth: '300'});
var html_b5dca29dc1a145c0a46302601a72ffe0 = $('<div id="html_b5dca29dc1a145c0a46302601a72ffe0" style="width: 100.0%; height: 100.0%;">Kuvempu Nagar, Byatarayanapura</div>')[0];
popup_79e3a850f59141749f7066605870e17f.setContent(html_b5dca29dc1a145c0a46302601a72ffe0);
circle_marker_38372cb06d854f88a5d097889fb4ff53.bindPopup(popup_79e3a850f59141749f7066605870e17f);
var circle_marker_154c399882e5479284efae9f63b1d73d = L.circleMarker(
[13.04224000000005,77.51507000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_505f8c1da94c45d4a0d88d83e8e89143 = L.popup({maxWidth: '300'});
var html_5ac704fbcf73446eb2b87582e41bf25f = $('<div id="html_5ac704fbcf73446eb2b87582e41bf25f" style="width: 100.0%; height: 100.0%;">Shettyhalli, Dasarahalli</div>')[0];
popup_505f8c1da94c45d4a0d88d83e8e89143.setContent(html_5ac704fbcf73446eb2b87582e41bf25f);
circle_marker_154c399882e5479284efae9f63b1d73d.bindPopup(popup_505f8c1da94c45d4a0d88d83e8e89143);
var circle_marker_61137fbde35841819e28ab8be20e16ac = L.circleMarker(
[13.056070000000034,77.51230000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_dacd4b3f5dce49e48a16f818f9efe7b3 = L.popup({maxWidth: '300'});
var html_26312cddefbd4a88b2266835336ce9a4 = $('<div id="html_26312cddefbd4a88b2266835336ce9a4" style="width: 100.0%; height: 100.0%;">Mallasandra, Dasarahalli</div>')[0];
popup_dacd4b3f5dce49e48a16f818f9efe7b3.setContent(html_26312cddefbd4a88b2266835336ce9a4);
circle_marker_61137fbde35841819e28ab8be20e16ac.bindPopup(popup_dacd4b3f5dce49e48a16f818f9efe7b3);
var circle_marker_6b3b083393994513adcb4f54162ddcf4 = L.circleMarker(
[13.056990000000042,77.50736000000006],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_95c7abc38d1b41e1b4301166e68c9e9b = L.popup({maxWidth: '300'});
var html_d99ac31c90d64751b41b90fa131628f5 = $('<div id="html_d99ac31c90d64751b41b90fa131628f5" style="width: 100.0%; height: 100.0%;">Bagalagunte, Dasarahalli</div>')[0];
popup_95c7abc38d1b41e1b4301166e68c9e9b.setContent(html_d99ac31c90d64751b41b90fa131628f5);
circle_marker_6b3b083393994513adcb4f54162ddcf4.bindPopup(popup_95c7abc38d1b41e1b4301166e68c9e9b);
var circle_marker_c4d948b7000a493fa9b4bd323a4948a9 = L.circleMarker(
[12.93178000000006,77.52668000000006],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_22e77756ed8f41f0b73eaec6a0a6b755 = L.popup({maxWidth: '300'});
var html_d0f7a041f8794de68bd452f630efaff0 = $('<div id="html_d0f7a041f8794de68bd452f630efaff0" style="width: 100.0%; height: 100.0%;">Jalahalli, Rajarajeshwarinagar</div>')[0];
popup_22e77756ed8f41f0b73eaec6a0a6b755.setContent(html_d0f7a041f8794de68bd452f630efaff0);
circle_marker_c4d948b7000a493fa9b4bd323a4948a9.bindPopup(popup_22e77756ed8f41f0b73eaec6a0a6b755);
var circle_marker_94af665fc72e4668bd3d116c023180b5 = L.circleMarker(
[12.92479000000003,77.51797000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_ee6e64e069404f0dba8e12585ae5d0a9 = L.popup({maxWidth: '300'});
var html_5c658969e75b4884abb5d416f8ed6c76 = $('<div id="html_5c658969e75b4884abb5d416f8ed6c76" style="width: 100.0%; height: 100.0%;">J.P.Park, Rajarajeshwarinagar</div>')[0];
popup_ee6e64e069404f0dba8e12585ae5d0a9.setContent(html_5c658969e75b4884abb5d416f8ed6c76);
circle_marker_94af665fc72e4668bd3d116c023180b5.bindPopup(popup_ee6e64e069404f0dba8e12585ae5d0a9);
var circle_marker_e64217cc438f4172b1c4df13e4aa3a7a = L.circleMarker(
[12.980240000000038,77.67939000000007],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_fed8d3f473b84da9863acfbba6f69cb6 = L.popup({maxWidth: '300'});
var html_1a9e2fe2666e4bf181c912ea0afcccd4 = $('<div id="html_1a9e2fe2666e4bf181c912ea0afcccd4" style="width: 100.0%; height: 100.0%;">Radhakrishna Temple, Hebbal</div>')[0];
popup_fed8d3f473b84da9863acfbba6f69cb6.setContent(html_1a9e2fe2666e4bf181c912ea0afcccd4);
circle_marker_e64217cc438f4172b1c4df13e4aa3a7a.bindPopup(popup_fed8d3f473b84da9863acfbba6f69cb6);
var circle_marker_8980f42024e64808ac27c226cd8a193d = L.circleMarker(
[13.036940000000072,77.57461000000006],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_8c5298b8a1c144ee8188e4feed573f07 = L.popup({maxWidth: '300'});
var html_6b41cf618b594d69848b690837354fc4 = $('<div id="html_6b41cf618b594d69848b690837354fc4" style="width: 100.0%; height: 100.0%;">Sanjay Nagar, Hebbal</div>')[0];
popup_8c5298b8a1c144ee8188e4feed573f07.setContent(html_6b41cf618b594d69848b690837354fc4);
circle_marker_8980f42024e64808ac27c226cd8a193d.bindPopup(popup_8c5298b8a1c144ee8188e4feed573f07);
var circle_marker_f9156c7d597c4e418f7b62321442337a = L.circleMarker(
[13.014450000000068,77.58808000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_4416d115b90b47c19c2d521124552558 = L.popup({maxWidth: '300'});
var html_f981b90516fb439886bc71bcba20e24d = $('<div id="html_f981b90516fb439886bc71bcba20e24d" style="width: 100.0%; height: 100.0%;">Ganga Nagar, Hebbal</div>')[0];
popup_4416d115b90b47c19c2d521124552558.setContent(html_f981b90516fb439886bc71bcba20e24d);
circle_marker_f9156c7d597c4e418f7b62321442337a.bindPopup(popup_4416d115b90b47c19c2d521124552558);
var circle_marker_f1a0965b4dd1420ea5e6559e06ada065 = L.circleMarker(
[13.049810000000036,77.58903000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_f873cc9451044f8e85aa7c8b08583704 = L.popup({maxWidth: '300'});
var html_d29ff12f83524fd9bdc904833fd3a293 = $('<div id="html_d29ff12f83524fd9bdc904833fd3a293" style="width: 100.0%; height: 100.0%;">Hebbal, Hebbal</div>')[0];
popup_f873cc9451044f8e85aa7c8b08583704.setContent(html_d29ff12f83524fd9bdc904833fd3a293);
circle_marker_f1a0965b4dd1420ea5e6559e06ada065.bindPopup(popup_f873cc9451044f8e85aa7c8b08583704);
var circle_marker_6e41051b5ed344c5aaf72e43c68acdeb = L.circleMarker(
[13.03974110885628,77.59464472785932],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_8025f71a5cc24a159f1827fc9fd3b2a5 = L.popup({maxWidth: '300'});
var html_a902c5dbf3cb4b94bda3f4ff67fae4dd = $('<div id="html_a902c5dbf3cb4b94bda3f4ff67fae4dd" style="width: 100.0%; height: 100.0%;">Vishwanathnagenahalli, Hebbal</div>')[0];
popup_8025f71a5cc24a159f1827fc9fd3b2a5.setContent(html_a902c5dbf3cb4b94bda3f4ff67fae4dd);
circle_marker_6e41051b5ed344c5aaf72e43c68acdeb.bindPopup(popup_8025f71a5cc24a159f1827fc9fd3b2a5);
var circle_marker_d917b51dce6a44398e2528ef00d00d7f = L.circleMarker(
[12.981510000000071,77.62955000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_3cc4db36c7b24a47be060a4ef6888c31 = L.popup({maxWidth: '300'});
var html_1b2f7eac5c2e46118531d9af9af82f23 = $('<div id="html_1b2f7eac5c2e46118531d9af9af82f23" style="width: 100.0%; height: 100.0%;">Nagavara, Sarvagnanagar</div>')[0];
popup_3cc4db36c7b24a47be060a4ef6888c31.setContent(html_1b2f7eac5c2e46118531d9af9af82f23);
circle_marker_d917b51dce6a44398e2528ef00d00d7f.bindPopup(popup_3cc4db36c7b24a47be060a4ef6888c31);
var circle_marker_2e92f852f50b4598bb7041eeee279d18 = L.circleMarker(
[12.987400000000036,77.64489000000003],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_0cabcfb76c634fc4886bcef6c582d7eb = L.popup({maxWidth: '300'});
var html_183f0f7f01da475f89844f8673612f3a = $('<div id="html_183f0f7f01da475f89844f8673612f3a" style="width: 100.0%; height: 100.0%;">HBR Layout, Sarvagnanagar</div>')[0];
popup_0cabcfb76c634fc4886bcef6c582d7eb.setContent(html_183f0f7f01da475f89844f8673612f3a);
circle_marker_2e92f852f50b4598bb7041eeee279d18.bindPopup(popup_0cabcfb76c634fc4886bcef6c582d7eb);
var circle_marker_2919152ad2c94ccf857cd13d2d9dc26f = L.circleMarker(
[13.000390000000039,77.68368000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_c05c862aa5d5468dabf81d54ea54a615 = L.popup({maxWidth: '300'});
var html_cc93f140c8be4b50bcabff65e5f8324c = $('<div id="html_cc93f140c8be4b50bcabff65e5f8324c" style="width: 100.0%; height: 100.0%;">Horamavu, Krishnarajapuram</div>')[0];
popup_c05c862aa5d5468dabf81d54ea54a615.setContent(html_cc93f140c8be4b50bcabff65e5f8324c);
circle_marker_2919152ad2c94ccf857cd13d2d9dc26f.bindPopup(popup_c05c862aa5d5468dabf81d54ea54a615);
var circle_marker_2796e3b28ab84cedb6003f3d04db711a = L.circleMarker(
[13.012981686060433,77.66347772666762],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_26896d5db592442c8a0baf1e5df04abf = L.popup({maxWidth: '300'});
var html_5af65aa42a6e4669981bb0005b84684b = $('<div id="html_5af65aa42a6e4669981bb0005b84684b" style="width: 100.0%; height: 100.0%;">Ramamurthy Nagar, Krishnarajapuram</div>')[0];
popup_26896d5db592442c8a0baf1e5df04abf.setContent(html_5af65aa42a6e4669981bb0005b84684b);
circle_marker_2796e3b28ab84cedb6003f3d04db711a.bindPopup(popup_26896d5db592442c8a0baf1e5df04abf);
var circle_marker_276c6d0a880440b99a0f227a22837734 = L.circleMarker(
[13.020580000000052,77.63287000000008],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_d527127f55234d2595556fb99d90d88c = L.popup({maxWidth: '300'});
var html_81163d55b2344cb5aae5da7e036414ec = $('<div id="html_81163d55b2344cb5aae5da7e036414ec" style="width: 100.0%; height: 100.0%;">Kacharakanahalli, Sarvagnanagar</div>')[0];
popup_d527127f55234d2595556fb99d90d88c.setContent(html_81163d55b2344cb5aae5da7e036414ec);
circle_marker_276c6d0a880440b99a0f227a22837734.bindPopup(popup_d527127f55234d2595556fb99d90d88c);
var circle_marker_4e3fa3ca49574008bc67d2af648faae0 = L.circleMarker(
[13.021560000000022,77.61920000000003],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_d0677c74c559497db56bcbae56784f32 = L.popup({maxWidth: '300'});
var html_706b26df69b643e2a693681f52c9a9e9 = $('<div id="html_706b26df69b643e2a693681f52c9a9e9" style="width: 100.0%; height: 100.0%;">Kadugondanahalli, Sarvagnanagar</div>')[0];
popup_d0677c74c559497db56bcbae56784f32.setContent(html_706b26df69b643e2a693681f52c9a9e9);
circle_marker_4e3fa3ca49574008bc67d2af648faae0.bindPopup(popup_d0677c74c559497db56bcbae56784f32);
var circle_marker_b075ec0a7e154fe7bc2c5b6f2ae417a5 = L.circleMarker(
[12.999650000000031,77.61528000000004],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_5ff2e36632d64af198b45ff75491e630 = L.popup({maxWidth: '300'});
var html_e9263b5ca1b54378bae5c8fa782f84bb = $('<div id="html_e9263b5ca1b54378bae5c8fa782f84bb" style="width: 100.0%; height: 100.0%;">Kushal Nagar, Pulakeshinagar</div>')[0];
popup_5ff2e36632d64af198b45ff75491e630.setContent(html_e9263b5ca1b54378bae5c8fa782f84bb);
circle_marker_b075ec0a7e154fe7bc2c5b6f2ae417a5.bindPopup(popup_5ff2e36632d64af198b45ff75491e630);
var circle_marker_1d479455aa2e41d8b3e54f29b6dba830 = L.circleMarker(
[13.030120000000068,77.60271000000006],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_d1c362e3270f4b55895ab6a7d3e79068 = L.popup({maxWidth: '300'});
var html_c29536bda4674c7cb6c076a3fa9b1a43 = $('<div id="html_c29536bda4674c7cb6c076a3fa9b1a43" style="width: 100.0%; height: 100.0%;">Manorayanapalya, Hebbal</div>')[0];
popup_d1c362e3270f4b55895ab6a7d3e79068.setContent(html_c29536bda4674c7cb6c076a3fa9b1a43);
circle_marker_1d479455aa2e41d8b3e54f29b6dba830.bindPopup(popup_d1c362e3270f4b55895ab6a7d3e79068);
var circle_marker_1fa0d60ec092418ab6f494a62b2909cb = L.circleMarker(
[12.982760000000042,77.39203000000003],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_8bb8d3bd8ebc4d4abbda4f145185555c = L.popup({maxWidth: '300'});
var html_67df4bf4e78b4096bb9ffc026a8a41a7 = $('<div id="html_67df4bf4e78b4096bb9ffc026a8a41a7" style="width: 100.0%; height: 100.0%;">Gangenahalli, Hebbal</div>')[0];
popup_8bb8d3bd8ebc4d4abbda4f145185555c.setContent(html_67df4bf4e78b4096bb9ffc026a8a41a7);
circle_marker_1fa0d60ec092418ab6f494a62b2909cb.bindPopup(popup_8bb8d3bd8ebc4d4abbda4f145185555c);
var circle_marker_b46b1a9bab84480b981d4ad05b119738 = L.circleMarker(
[12.995000000000061,77.57346000000007],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_c7f578db2bae4c608daf490b1d0dcd41 = L.popup({maxWidth: '300'});
var html_1320004051bc4a6cbdd63ddece7e76a7 = $('<div id="html_1320004051bc4a6cbdd63ddece7e76a7" style="width: 100.0%; height: 100.0%;">Aramane Nagar, Malleshwaram</div>')[0];
popup_c7f578db2bae4c608daf490b1d0dcd41.setContent(html_1320004051bc4a6cbdd63ddece7e76a7);
circle_marker_b46b1a9bab84480b981d4ad05b119738.bindPopup(popup_c7f578db2bae4c608daf490b1d0dcd41);
var circle_marker_91b5ab872dff49ed9b8e936993817ac2 = L.circleMarker(
[13.065450000000055,77.50822000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_44b25a3b0db14f84810d882031604a3b = L.popup({maxWidth: '300'});
var html_4210af63c8f94053879d9473d5f10845 = $('<div id="html_4210af63c8f94053879d9473d5f10845" style="width: 100.0%; height: 100.0%;">Chokkasandra, Dasarahalli</div>')[0];
popup_44b25a3b0db14f84810d882031604a3b.setContent(html_4210af63c8f94053879d9473d5f10845);
circle_marker_91b5ab872dff49ed9b8e936993817ac2.bindPopup(popup_44b25a3b0db14f84810d882031604a3b);
var circle_marker_656ad53e4bd141f6bec0455068f5d5a0 = L.circleMarker(
[13.033730000000048,77.49577000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_ad20b6e4c2934d5981ba7c37f4f1bd8b);
var popup_8996276d670b4a8c8a715ae199822b17 = L.popup({maxWidth: '300'});
var html_724103d9302d4516a4ce7dc854f93fda = $('<div id="html_724103d9302d4516a4ce7dc854f93fda" style="width: 100.0%; height: 100.0%;">Dodda Bidarkallu, Yeshwanthpur</div>')[0];
popup_8996276d670b4a8c8a715ae199822b17.setContent(html_724103d9302d4516a4ce7dc854f93fda);
circle_marker_656ad53e4bd141f6bec0455068f5d5a0.bindPopup(popup_8996276d670b4a8c8a715ae199822b17);
var circle_marker_e836d270e2844deba3b4462de2c009ca = L.circleMarker(
[13.042770000000075,77.51324000000005],
{
"bubblingMouseEvents": true,
"color": "blue",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "#3186cc",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",