-
Notifications
You must be signed in to change notification settings - Fork 0
/
beng_map4.html
4729 lines (3304 loc) · 152 KB
/
beng_map4.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_dd5871f382bd4af7a7575ffed702d66d {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div style="position: fixed;
bottom: 50px; left: 50px; width: 100px; height: 120px;
border:2px solid grey; z-index:9999; font-size:8px;
"> <b>Cool Legend </b>
<br> Cluster 0 <i class="fa fa-square fa-2x" style="color:#ff0000"></i>
<br> Cluster 2 <i class="fa fa-square fa-2x" style="color:#8000ff"></i>
<br> Cluster 3 <i class="fa fa-square fa-2x" style="color:#00b5eb"></i>
<br> Cluster 4 <i class="fa fa-square fa-2x" style="color:#80ffb4"></i>
<br> Cluster 5 <i class="fa fa-square fa-2x" style="color:#ffb360"></i>
</div>
<div class="folium-map" id="map_dd5871f382bd4af7a7575ffed702d66d" ></div>
</body>
<script>
var bounds = null;
var map_dd5871f382bd4af7a7575ffed702d66d = L.map(
'map_dd5871f382bd4af7a7575ffed702d66d',
{center: [12.966180000000065,77.58690000000007],
zoom: 11,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_4d74d1089bba4bd7b32e444196b2252b = 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_dd5871f382bd4af7a7575ffed702d66d);
var circle_marker_724f85c221d5498b8d3dd8a76038164f = L.circleMarker(
[13.09931000000006,77.59259000000003],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_5c7591afa87c4acb8b2dba7d2f05087b = L.popup({maxWidth: '300'});
var html_02dc8acc585b49f297e638d46b7cee3d = $('<div id="html_02dc8acc585b49f297e638d46b7cee3d" style="width: 100.0%; height: 100.0%;">Kempegowda Cluster 0</div>')[0];
popup_5c7591afa87c4acb8b2dba7d2f05087b.setContent(html_02dc8acc585b49f297e638d46b7cee3d);
circle_marker_724f85c221d5498b8d3dd8a76038164f.bindPopup(popup_5c7591afa87c4acb8b2dba7d2f05087b);
var circle_marker_06cf4dded6a847db86c5a5e80dc820fd = L.circleMarker(
[13.108110000000067,77.59366000000006],
{
"bubblingMouseEvents": true,
"color": "#ffb360",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_1d32f676bd4e429baa1b36d65ad620cf = L.popup({maxWidth: '300'});
var html_4a0d118a089c4fc695f5fd35e53824dd = $('<div id="html_4a0d118a089c4fc695f5fd35e53824dd" style="width: 100.0%; height: 100.0%;">Chowdeshwari Cluster 4</div>')[0];
popup_1d32f676bd4e429baa1b36d65ad620cf.setContent(html_4a0d118a089c4fc695f5fd35e53824dd);
circle_marker_06cf4dded6a847db86c5a5e80dc820fd.bindPopup(popup_1d32f676bd4e429baa1b36d65ad620cf);
var circle_marker_88cff961eabd4e7d819ef7e19b13e5e7 = L.circleMarker(
[13.09698000000003,77.58406000000008],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_8dc448d18b5f4899a7440e092698d375 = L.popup({maxWidth: '300'});
var html_4c1578477a754d05838d5f529474c661 = $('<div id="html_4c1578477a754d05838d5f529474c661" style="width: 100.0%; height: 100.0%;">Yelahanka Satellite Town Cluster 0</div>')[0];
popup_8dc448d18b5f4899a7440e092698d375.setContent(html_4c1578477a754d05838d5f529474c661);
circle_marker_88cff961eabd4e7d819ef7e19b13e5e7.bindPopup(popup_8dc448d18b5f4899a7440e092698d375);
var circle_marker_836b51f0025845febcab82061be21630 = L.circleMarker(
[12.951940000000036,77.54445000000004],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_b395382bab63461e932d4cc0884093f1 = L.popup({maxWidth: '300'});
var html_4445833cf1994f0fae65e5e9ecbc8831 = $('<div id="html_4445833cf1994f0fae65e5e9ecbc8831" style="width: 100.0%; height: 100.0%;">Jakkur Cluster 3</div>')[0];
popup_b395382bab63461e932d4cc0884093f1.setContent(html_4445833cf1994f0fae65e5e9ecbc8831);
circle_marker_836b51f0025845febcab82061be21630.bindPopup(popup_b395382bab63461e932d4cc0884093f1);
var circle_marker_aaa9e2db3196483792098f9d83c11ddd = L.circleMarker(
[13.062510000000032,77.55907000000008],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_b576e129d4ad4315906a00aea749fcd5 = L.popup({maxWidth: '300'});
var html_bcb36d73d19344ed94553955000fe4b0 = $('<div id="html_bcb36d73d19344ed94553955000fe4b0" style="width: 100.0%; height: 100.0%;">Doddabommasandra Cluster 3</div>')[0];
popup_b576e129d4ad4315906a00aea749fcd5.setContent(html_bcb36d73d19344ed94553955000fe4b0);
circle_marker_aaa9e2db3196483792098f9d83c11ddd.bindPopup(popup_b576e129d4ad4315906a00aea749fcd5);
var circle_marker_8ba6738ca1a142e0afac549e736bbb4b = L.circleMarker(
[12.95560000000006,77.54466000000008],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_c5c71db10d404f1dabc0ec2d5bfd3e5a = L.popup({maxWidth: '300'});
var html_0807998119894c3dba345d6ffc4b0ed8 = $('<div id="html_0807998119894c3dba345d6ffc4b0ed8" style="width: 100.0%; height: 100.0%;">Kuvempu Nagar Cluster 3</div>')[0];
popup_c5c71db10d404f1dabc0ec2d5bfd3e5a.setContent(html_0807998119894c3dba345d6ffc4b0ed8);
circle_marker_8ba6738ca1a142e0afac549e736bbb4b.bindPopup(popup_c5c71db10d404f1dabc0ec2d5bfd3e5a);
var circle_marker_5193d7ea72ed4144958d79a4782ed20e = L.circleMarker(
[13.04224000000005,77.51507000000004],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_e9376580f6614feebba5b74e5afb5a2b = L.popup({maxWidth: '300'});
var html_23738d903db44b5e96377cde1fe49cce = $('<div id="html_23738d903db44b5e96377cde1fe49cce" style="width: 100.0%; height: 100.0%;">Shettyhalli Cluster 0</div>')[0];
popup_e9376580f6614feebba5b74e5afb5a2b.setContent(html_23738d903db44b5e96377cde1fe49cce);
circle_marker_5193d7ea72ed4144958d79a4782ed20e.bindPopup(popup_e9376580f6614feebba5b74e5afb5a2b);
var circle_marker_4c397cf21be9459fbf1bc41cc8c4f9be = L.circleMarker(
[13.056070000000034,77.51230000000004],
{
"bubblingMouseEvents": true,
"color": "#00b5eb",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_2197ebb374374434bc266c04eacf61b7 = L.popup({maxWidth: '300'});
var html_9abaf0ecad8c46ee8baa5916f6da2628 = $('<div id="html_9abaf0ecad8c46ee8baa5916f6da2628" style="width: 100.0%; height: 100.0%;">Mallasandra Cluster 2</div>')[0];
popup_2197ebb374374434bc266c04eacf61b7.setContent(html_9abaf0ecad8c46ee8baa5916f6da2628);
circle_marker_4c397cf21be9459fbf1bc41cc8c4f9be.bindPopup(popup_2197ebb374374434bc266c04eacf61b7);
var circle_marker_bdaed0992a9a49918ee9e841f83425fb = L.circleMarker(
[13.056990000000042,77.50736000000006],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_d376589285254bb1aad2a37f3a6babef = L.popup({maxWidth: '300'});
var html_75476675dcf343fa8a601f6f8c83f84f = $('<div id="html_75476675dcf343fa8a601f6f8c83f84f" style="width: 100.0%; height: 100.0%;">Bagalagunte Cluster 0</div>')[0];
popup_d376589285254bb1aad2a37f3a6babef.setContent(html_75476675dcf343fa8a601f6f8c83f84f);
circle_marker_bdaed0992a9a49918ee9e841f83425fb.bindPopup(popup_d376589285254bb1aad2a37f3a6babef);
var circle_marker_31655beac0cb418da881eb098cb27910 = L.circleMarker(
[12.93178000000006,77.52668000000006],
{
"bubblingMouseEvents": true,
"color": "#8000ff",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_431723f25fa147118bbe52cfebbd2914 = L.popup({maxWidth: '300'});
var html_ff593243aaa5453ea2a50d5a8cb6ffd5 = $('<div id="html_ff593243aaa5453ea2a50d5a8cb6ffd5" style="width: 100.0%; height: 100.0%;">Jalahalli Cluster 1</div>')[0];
popup_431723f25fa147118bbe52cfebbd2914.setContent(html_ff593243aaa5453ea2a50d5a8cb6ffd5);
circle_marker_31655beac0cb418da881eb098cb27910.bindPopup(popup_431723f25fa147118bbe52cfebbd2914);
var circle_marker_197098ec6b54431fa05c3b86a40512e7 = L.circleMarker(
[12.92479000000003,77.51797000000005],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_6f3014af36bd4f1fb5507b43c71b9080 = L.popup({maxWidth: '300'});
var html_1a8a30132f164a628edad8a51f445598 = $('<div id="html_1a8a30132f164a628edad8a51f445598" style="width: 100.0%; height: 100.0%;">J.P.Park Cluster 0</div>')[0];
popup_6f3014af36bd4f1fb5507b43c71b9080.setContent(html_1a8a30132f164a628edad8a51f445598);
circle_marker_197098ec6b54431fa05c3b86a40512e7.bindPopup(popup_6f3014af36bd4f1fb5507b43c71b9080);
var circle_marker_581debb4ea4344c19f8de7b7dbc0f4f0 = L.circleMarker(
[12.980240000000038,77.67939000000007],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_ebd6be4005a94ccc939dd0ed8cde24e2 = L.popup({maxWidth: '300'});
var html_fbe6ef4082f4427f88f358a83c20987a = $('<div id="html_fbe6ef4082f4427f88f358a83c20987a" style="width: 100.0%; height: 100.0%;">Radhakrishna Temple Cluster 0</div>')[0];
popup_ebd6be4005a94ccc939dd0ed8cde24e2.setContent(html_fbe6ef4082f4427f88f358a83c20987a);
circle_marker_581debb4ea4344c19f8de7b7dbc0f4f0.bindPopup(popup_ebd6be4005a94ccc939dd0ed8cde24e2);
var circle_marker_35f0e072776241adadec3e99c33ed78d = L.circleMarker(
[13.036940000000072,77.57461000000006],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_123c87bcdfc04da1ab863e9073898a78 = L.popup({maxWidth: '300'});
var html_002f87aff8264523a3b3bd30f036c9aa = $('<div id="html_002f87aff8264523a3b3bd30f036c9aa" style="width: 100.0%; height: 100.0%;">Sanjay Nagar Cluster 0</div>')[0];
popup_123c87bcdfc04da1ab863e9073898a78.setContent(html_002f87aff8264523a3b3bd30f036c9aa);
circle_marker_35f0e072776241adadec3e99c33ed78d.bindPopup(popup_123c87bcdfc04da1ab863e9073898a78);
var circle_marker_1d3a0c022c28478f94ee1c94066fef95 = L.circleMarker(
[13.014450000000068,77.58808000000005],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_f1ae6b9416d64e299d6b26a16f123ab5 = L.popup({maxWidth: '300'});
var html_2f489e0bc84e4d6eb6aadc608d9bb19c = $('<div id="html_2f489e0bc84e4d6eb6aadc608d9bb19c" style="width: 100.0%; height: 100.0%;">Ganga Nagar Cluster 0</div>')[0];
popup_f1ae6b9416d64e299d6b26a16f123ab5.setContent(html_2f489e0bc84e4d6eb6aadc608d9bb19c);
circle_marker_1d3a0c022c28478f94ee1c94066fef95.bindPopup(popup_f1ae6b9416d64e299d6b26a16f123ab5);
var circle_marker_3354926a16ae47c58e0d9f97038f1442 = L.circleMarker(
[13.049810000000036,77.58903000000004],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_dc61c001fc034da88c9789a15fd368fa = L.popup({maxWidth: '300'});
var html_3346ab50728041ecbd7a4db99f3cc470 = $('<div id="html_3346ab50728041ecbd7a4db99f3cc470" style="width: 100.0%; height: 100.0%;">Hebbal Cluster 0</div>')[0];
popup_dc61c001fc034da88c9789a15fd368fa.setContent(html_3346ab50728041ecbd7a4db99f3cc470);
circle_marker_3354926a16ae47c58e0d9f97038f1442.bindPopup(popup_dc61c001fc034da88c9789a15fd368fa);
var circle_marker_e042e60c152a47fe860765b1895c63e4 = L.circleMarker(
[13.03974110885628,77.59464472785932],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_38e24e90d09b45f7aae6ceb80e0ce0d4 = L.popup({maxWidth: '300'});
var html_ddee607519954a018b7cd5db8d274449 = $('<div id="html_ddee607519954a018b7cd5db8d274449" style="width: 100.0%; height: 100.0%;">Vishwanathnagenahalli Cluster 0</div>')[0];
popup_38e24e90d09b45f7aae6ceb80e0ce0d4.setContent(html_ddee607519954a018b7cd5db8d274449);
circle_marker_e042e60c152a47fe860765b1895c63e4.bindPopup(popup_38e24e90d09b45f7aae6ceb80e0ce0d4);
var circle_marker_836e800eb84548b6bb06a233cfdf2afb = L.circleMarker(
[12.981510000000071,77.62955000000005],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_c0d8ef8a5e0544b6a6bcafec04afe189 = L.popup({maxWidth: '300'});
var html_122cc373c6384cc19a312aff4ee2dd57 = $('<div id="html_122cc373c6384cc19a312aff4ee2dd57" style="width: 100.0%; height: 100.0%;">Nagavara Cluster 0</div>')[0];
popup_c0d8ef8a5e0544b6a6bcafec04afe189.setContent(html_122cc373c6384cc19a312aff4ee2dd57);
circle_marker_836e800eb84548b6bb06a233cfdf2afb.bindPopup(popup_c0d8ef8a5e0544b6a6bcafec04afe189);
var circle_marker_5b91537cd5c7415099801e1a421a1a44 = L.circleMarker(
[12.987400000000036,77.64489000000003],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_f575578a2c5a4a32bb88e7712c34c42c = L.popup({maxWidth: '300'});
var html_bbd920f26cda48fba77159a91f2ee237 = $('<div id="html_bbd920f26cda48fba77159a91f2ee237" style="width: 100.0%; height: 100.0%;">HBR Layout Cluster 0</div>')[0];
popup_f575578a2c5a4a32bb88e7712c34c42c.setContent(html_bbd920f26cda48fba77159a91f2ee237);
circle_marker_5b91537cd5c7415099801e1a421a1a44.bindPopup(popup_f575578a2c5a4a32bb88e7712c34c42c);
var circle_marker_d778e70d38fa4ddaa33e4532329eeffe = L.circleMarker(
[13.000390000000039,77.68368000000004],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_bf60b5bf37534c4e80dfda7a9b3dcc36 = L.popup({maxWidth: '300'});
var html_fef65e62c22d4984a0d0eeabb6fc2c86 = $('<div id="html_fef65e62c22d4984a0d0eeabb6fc2c86" style="width: 100.0%; height: 100.0%;">Horamavu Cluster 0</div>')[0];
popup_bf60b5bf37534c4e80dfda7a9b3dcc36.setContent(html_fef65e62c22d4984a0d0eeabb6fc2c86);
circle_marker_d778e70d38fa4ddaa33e4532329eeffe.bindPopup(popup_bf60b5bf37534c4e80dfda7a9b3dcc36);
var circle_marker_9027f6ba579a489b86bfb7459dddd57e = L.circleMarker(
[13.012981686060433,77.66347772666762],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_9f3ab2d2d2d9477abf44a24ea123b420 = L.popup({maxWidth: '300'});
var html_eb7f31fdc077483ea2f7a02f50545c15 = $('<div id="html_eb7f31fdc077483ea2f7a02f50545c15" style="width: 100.0%; height: 100.0%;">Ramamurthy Nagar Cluster 3</div>')[0];
popup_9f3ab2d2d2d9477abf44a24ea123b420.setContent(html_eb7f31fdc077483ea2f7a02f50545c15);
circle_marker_9027f6ba579a489b86bfb7459dddd57e.bindPopup(popup_9f3ab2d2d2d9477abf44a24ea123b420);
var circle_marker_a501de9330fe472d94a23844a136984a = L.circleMarker(
[13.020580000000052,77.63287000000008],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_e297c56d7eea495cac1cfc732600a1de = L.popup({maxWidth: '300'});
var html_3eb83c4457c74a248313d49ba3b6c565 = $('<div id="html_3eb83c4457c74a248313d49ba3b6c565" style="width: 100.0%; height: 100.0%;">Kacharakanahalli Cluster 0</div>')[0];
popup_e297c56d7eea495cac1cfc732600a1de.setContent(html_3eb83c4457c74a248313d49ba3b6c565);
circle_marker_a501de9330fe472d94a23844a136984a.bindPopup(popup_e297c56d7eea495cac1cfc732600a1de);
var circle_marker_951dfe1b05cd428bb0528542f296803b = L.circleMarker(
[13.021560000000022,77.61920000000003],
{
"bubblingMouseEvents": true,
"color": "#80ffb4",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_1ee6f498dc8b46d5828dd2b9fbd6ea06 = L.popup({maxWidth: '300'});
var html_f1b83e4c43c0474483bffd95a8e5c4fa = $('<div id="html_f1b83e4c43c0474483bffd95a8e5c4fa" style="width: 100.0%; height: 100.0%;">Kadugondanahalli Cluster 3</div>')[0];
popup_1ee6f498dc8b46d5828dd2b9fbd6ea06.setContent(html_f1b83e4c43c0474483bffd95a8e5c4fa);
circle_marker_951dfe1b05cd428bb0528542f296803b.bindPopup(popup_1ee6f498dc8b46d5828dd2b9fbd6ea06);
var circle_marker_b9e522ae05994a8b90826cc1c908a05a = L.circleMarker(
[12.999650000000031,77.61528000000004],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_34bf3e10f5e2420d8c478276b52e8be6 = L.popup({maxWidth: '300'});
var html_1807c30f814444b4a72ffc7d38170456 = $('<div id="html_1807c30f814444b4a72ffc7d38170456" style="width: 100.0%; height: 100.0%;">Kushal Nagar Cluster 0</div>')[0];
popup_34bf3e10f5e2420d8c478276b52e8be6.setContent(html_1807c30f814444b4a72ffc7d38170456);
circle_marker_b9e522ae05994a8b90826cc1c908a05a.bindPopup(popup_34bf3e10f5e2420d8c478276b52e8be6);
var circle_marker_97e9e9e7240d421785b6ffac26a72bf2 = L.circleMarker(
[13.030120000000068,77.60271000000006],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_3d1acef807354fc19d1ca6efb4f0d114 = L.popup({maxWidth: '300'});
var html_7f506f68f6cd4bc3a4b71849605801cd = $('<div id="html_7f506f68f6cd4bc3a4b71849605801cd" style="width: 100.0%; height: 100.0%;">Manorayanapalya Cluster 0</div>')[0];
popup_3d1acef807354fc19d1ca6efb4f0d114.setContent(html_7f506f68f6cd4bc3a4b71849605801cd);
circle_marker_97e9e9e7240d421785b6ffac26a72bf2.bindPopup(popup_3d1acef807354fc19d1ca6efb4f0d114);
var circle_marker_0f2d7d43512f49f6be5b02da6f5d5879 = L.circleMarker(
[12.982760000000042,77.39203000000003],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_9cc91d8a9f9e4645b3acaf48339a5b6e = L.popup({maxWidth: '300'});
var html_bd3f2e43374646a2ae6218d093c461b3 = $('<div id="html_bd3f2e43374646a2ae6218d093c461b3" style="width: 100.0%; height: 100.0%;">Gangenahalli Cluster 0</div>')[0];
popup_9cc91d8a9f9e4645b3acaf48339a5b6e.setContent(html_bd3f2e43374646a2ae6218d093c461b3);
circle_marker_0f2d7d43512f49f6be5b02da6f5d5879.bindPopup(popup_9cc91d8a9f9e4645b3acaf48339a5b6e);
var circle_marker_17d3875e9df74b49a48e56ae1b9e12c4 = L.circleMarker(
[12.995000000000061,77.57346000000007],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_0ee3dc7b543f4f2b95e29ed13e6255d2 = L.popup({maxWidth: '300'});
var html_3e3f6e52d1c24f74a80bcdf83e441fe2 = $('<div id="html_3e3f6e52d1c24f74a80bcdf83e441fe2" style="width: 100.0%; height: 100.0%;">Aramane Nagar Cluster 0</div>')[0];
popup_0ee3dc7b543f4f2b95e29ed13e6255d2.setContent(html_3e3f6e52d1c24f74a80bcdf83e441fe2);
circle_marker_17d3875e9df74b49a48e56ae1b9e12c4.bindPopup(popup_0ee3dc7b543f4f2b95e29ed13e6255d2);
var circle_marker_e72b4b8d87174b0d9ffc6b4c39c561ff = L.circleMarker(
[13.065450000000055,77.50822000000005],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_155764c84bb5456f810305862f18687f = L.popup({maxWidth: '300'});
var html_beabb220db424341902f13464ea21ea4 = $('<div id="html_beabb220db424341902f13464ea21ea4" style="width: 100.0%; height: 100.0%;">Chokkasandra Cluster 0</div>')[0];
popup_155764c84bb5456f810305862f18687f.setContent(html_beabb220db424341902f13464ea21ea4);
circle_marker_e72b4b8d87174b0d9ffc6b4c39c561ff.bindPopup(popup_155764c84bb5456f810305862f18687f);
var circle_marker_f3cfe21b0ec8420e97d11f5b653af14a = L.circleMarker(
[13.033730000000048,77.49577000000005],
{
"bubblingMouseEvents": true,
"color": "#ff0000",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "black",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5,
"stroke": true,
"weight": 3
}
).addTo(map_dd5871f382bd4af7a7575ffed702d66d);
var popup_3e104a69a64e4842a4adec31b1c4258f = L.popup({maxWidth: '300'});
var html_00714e23964d41abb18e37581b665eb4 = $('<div id="html_00714e23964d41abb18e37581b665eb4" style="width: 100.0%; height: 100.0%;">Dodda Bidarkallu Cluster 0</div>')[0];
popup_3e104a69a64e4842a4adec31b1c4258f.setContent(html_00714e23964d41abb18e37581b665eb4);
circle_marker_f3cfe21b0ec8420e97d11f5b653af14a.bindPopup(popup_3e104a69a64e4842a4adec31b1c4258f);