-
Notifications
You must be signed in to change notification settings - Fork 2
/
map_clusters.html
5915 lines (2822 loc) · 309 KB
/
map_clusters.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_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.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://rawcdn.githack.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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_cc81987d06b847f6b5f26b951c9ec338 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_cc81987d06b847f6b5f26b951c9ec338" ></div>
</body>
<script>
var map_cc81987d06b847f6b5f26b951c9ec338 = L.map(
"map_cc81987d06b847f6b5f26b951c9ec338",
{
center: [22.3511148, 78.6677428],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_b28e1c030cdc4ddabb95c75a827c46b0 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var circle_marker_90e454c6cdf84aa49cd568bc7edf033e = L.circleMarker(
[15.633330000000058, 77.28333000000003],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_0b2a69c6d76b49fab93e1c675fadbfa9 = L.popup({"maxWidth": "100%"});
var html_ac4131402b1e4ad5bf63fb235b9dff40 = $(`<div id="html_ac4131402b1e4ad5bf63fb235b9dff40" style="width: 100.0%; height: 100.0%;">Adoni - Cluster 0</div>`)[0];
popup_0b2a69c6d76b49fab93e1c675fadbfa9.setContent(html_ac4131402b1e4ad5bf63fb235b9dff40);
circle_marker_90e454c6cdf84aa49cd568bc7edf033e.bindPopup(popup_0b2a69c6d76b49fab93e1c675fadbfa9)
;
var circle_marker_a2051d3ebacc435b9d0b485f76848a26 = L.circleMarker(
[28.83893000000006, 78.77684000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_3d027f0003e8490f94242c0da4606955 = L.popup({"maxWidth": "100%"});
var html_5605361a3ad74c80ba84f114ca26ca94 = $(`<div id="html_5605361a3ad74c80ba84f114ca26ca94" style="width: 100.0%; height: 100.0%;">Moradabad - Cluster 0</div>`)[0];
popup_3d027f0003e8490f94242c0da4606955.setContent(html_5605361a3ad74c80ba84f114ca26ca94);
circle_marker_a2051d3ebacc435b9d0b485f76848a26.bindPopup(popup_3d027f0003e8490f94242c0da4606955)
;
var circle_marker_6acca60c57bc4a54a68aa0e7f723a4c1 = L.circleMarker(
[26.49052000000006, 77.98572000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_88cbf1f935374903aad9b41fba2a6529 = L.popup({"maxWidth": "100%"});
var html_c47f5f855bc14b8385c342a26e779dfa = $(`<div id="html_c47f5f855bc14b8385c342a26e779dfa" style="width: 100.0%; height: 100.0%;">Morena - Cluster 0</div>`)[0];
popup_88cbf1f935374903aad9b41fba2a6529.setContent(html_c47f5f855bc14b8385c342a26e779dfa);
circle_marker_6acca60c57bc4a54a68aa0e7f723a4c1.bindPopup(popup_88cbf1f935374903aad9b41fba2a6529)
;
var circle_marker_482b170791eb4a7080e04050826d3e78 = L.circleMarker(
[26.657380000000046, 84.91922000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_fcf2dc5bc1644aacbaa0ae520dc5c1c9 = L.popup({"maxWidth": "100%"});
var html_1f760b6a18ac4828b1de437abdcde996 = $(`<div id="html_1f760b6a18ac4828b1de437abdcde996" style="width: 100.0%; height: 100.0%;">Motihari[31] - Cluster 0</div>`)[0];
popup_fcf2dc5bc1644aacbaa0ae520dc5c1c9.setContent(html_1f760b6a18ac4828b1de437abdcde996);
circle_marker_482b170791eb4a7080e04050826d3e78.bindPopup(popup_fcf2dc5bc1644aacbaa0ae520dc5c1c9)
;
var circle_marker_bafe00a15c5c4628899bda0a37c066aa = L.circleMarker(
[18.940170000000023, 72.83483000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d1659d5e9ade4180bedd50d90f1adf16 = L.popup({"maxWidth": "100%"});
var html_e4daca7bc1784dfb8ba676aba419fd12 = $(`<div id="html_e4daca7bc1784dfb8ba676aba419fd12" style="width: 100.0%; height: 100.0%;">Mumbai - Cluster 0</div>`)[0];
popup_d1659d5e9ade4180bedd50d90f1adf16.setContent(html_e4daca7bc1784dfb8ba676aba419fd12);
circle_marker_bafe00a15c5c4628899bda0a37c066aa.bindPopup(popup_d1659d5e9ade4180bedd50d90f1adf16)
;
var circle_marker_00fe45e3d88c49ad8c8358c93587cb2f = L.circleMarker(
[25.365560000000073, 86.48767000000004],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_b5665ca95070491d85248425091517fc = L.popup({"maxWidth": "100%"});
var html_a45ec2982396484e9b51f6eddc93c4ff = $(`<div id="html_a45ec2982396484e9b51f6eddc93c4ff" style="width: 100.0%; height: 100.0%;">Munger - Cluster 0</div>`)[0];
popup_b5665ca95070491d85248425091517fc.setContent(html_a45ec2982396484e9b51f6eddc93c4ff);
circle_marker_00fe45e3d88c49ad8c8358c93587cb2f.bindPopup(popup_b5665ca95070491d85248425091517fc)
;
var circle_marker_1df1144aee124c19a134171cb7b56ad7 = L.circleMarker(
[29.470290000000034, 77.70761000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_fdc982e0318343778a95b49f0980d04f = L.popup({"maxWidth": "100%"});
var html_790d7a444ae840afb09dbe14d5c53cbe = $(`<div id="html_790d7a444ae840afb09dbe14d5c53cbe" style="width: 100.0%; height: 100.0%;">Muzaffarnagar - Cluster 0</div>`)[0];
popup_fdc982e0318343778a95b49f0980d04f.setContent(html_790d7a444ae840afb09dbe14d5c53cbe);
circle_marker_1df1144aee124c19a134171cb7b56ad7.bindPopup(popup_fdc982e0318343778a95b49f0980d04f)
;
var circle_marker_f53b070a30bc4303a1b7ea7ad757cdb4 = L.circleMarker(
[26.12399000000005, 85.38669000000004],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_5b197ab9c5da448ca976b1b778a43387 = L.popup({"maxWidth": "100%"});
var html_14422cd77cd042bb8f418d0d81b9339b = $(`<div id="html_14422cd77cd042bb8f418d0d81b9339b" style="width: 100.0%; height: 100.0%;">Muzaffarpur - Cluster 0</div>`)[0];
popup_5b197ab9c5da448ca976b1b778a43387.setContent(html_14422cd77cd042bb8f418d0d81b9339b);
circle_marker_f53b070a30bc4303a1b7ea7ad757cdb4.bindPopup(popup_5b197ab9c5da448ca976b1b778a43387)
;
var circle_marker_e887c607086c44308229fdc8aee56351 = L.circleMarker(
[12.955879994181856, 77.5458999991165],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_36ebeb68ef08469fbb142a43eb3155a8 = L.popup({"maxWidth": "100%"});
var html_c4ed0b41e7484968afacd88fae779ccf = $(`<div id="html_c4ed0b41e7484968afacd88fae779ccf" style="width: 100.0%; height: 100.0%;">Mysore[7][8][9] - Cluster 0</div>`)[0];
popup_36ebeb68ef08469fbb142a43eb3155a8.setContent(html_c4ed0b41e7484968afacd88fae779ccf);
circle_marker_e887c607086c44308229fdc8aee56351.bindPopup(popup_36ebeb68ef08469fbb142a43eb3155a8)
;
var circle_marker_3d7577f3fb244abd8a9fd654dba7a3f8 = L.circleMarker(
[22.700000000000045, 72.86667000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_dcc5d4ddd11546678b7426f4c00f2c49 = L.popup({"maxWidth": "100%"});
var html_458b662794b548a58f9aafa90eb9e1f2 = $(`<div id="html_458b662794b548a58f9aafa90eb9e1f2" style="width: 100.0%; height: 100.0%;">Nadiad - Cluster 0</div>`)[0];
popup_dcc5d4ddd11546678b7426f4c00f2c49.setContent(html_458b662794b548a58f9aafa90eb9e1f2);
circle_marker_3d7577f3fb244abd8a9fd654dba7a3f8.bindPopup(popup_dcc5d4ddd11546678b7426f4c00f2c49)
;
var circle_marker_faa8a20f34c247d6878760fc147640f8 = L.circleMarker(
[26.34949000000006, 92.68462000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_c2d3719778b5418ebc39e44cb1e551bc = L.popup({"maxWidth": "100%"});
var html_04a2a72194874266939a597ba16b9ecc = $(`<div id="html_04a2a72194874266939a597ba16b9ecc" style="width: 100.0%; height: 100.0%;">Nagaon - Cluster 0</div>`)[0];
popup_c2d3719778b5418ebc39e44cb1e551bc.setContent(html_04a2a72194874266939a597ba16b9ecc);
circle_marker_faa8a20f34c247d6878760fc147640f8.bindPopup(popup_c2d3719778b5418ebc39e44cb1e551bc)
;
var circle_marker_893fee70590d4d83adac4c809ce75cfd = L.circleMarker(
[21.157050000000027, 79.08217000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_49f500cfa5e14b0d9b60231ed8cda3e6 = L.popup({"maxWidth": "100%"});
var html_a1d5169dde304a25a24c5cca81170eee = $(`<div id="html_a1d5169dde304a25a24c5cca81170eee" style="width: 100.0%; height: 100.0%;">Nagpur - Cluster 0</div>`)[0];
popup_49f500cfa5e14b0d9b60231ed8cda3e6.setContent(html_a1d5169dde304a25a24c5cca81170eee);
circle_marker_893fee70590d4d83adac4c809ce75cfd.bindPopup(popup_49f500cfa5e14b0d9b60231ed8cda3e6)
;
var circle_marker_3a7c9a4a91354150858e608da3761db5 = L.circleMarker(
[22.895760000000053, 88.42876000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_f462520958fe430f82afe4e13d36506c = L.popup({"maxWidth": "100%"});
var html_18a34034d6954435902ff37ba7f167c1 = $(`<div id="html_18a34034d6954435902ff37ba7f167c1" style="width: 100.0%; height: 100.0%;">Naihati - Cluster 0</div>`)[0];
popup_f462520958fe430f82afe4e13d36506c.setContent(html_18a34034d6954435902ff37ba7f167c1);
circle_marker_3a7c9a4a91354150858e608da3761db5.bindPopup(popup_f462520958fe430f82afe4e13d36506c)
;
var circle_marker_a6bba815d05a4f22a52f0834bdd4c237 = L.circleMarker(
[19.15566000000007, 77.31105000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_ba449309efea4816829a950b2509718b = L.popup({"maxWidth": "100%"});
var html_97435966e4894097bdb478dcc35276df = $(`<div id="html_97435966e4894097bdb478dcc35276df" style="width: 100.0%; height: 100.0%;">Nanded - Cluster 0</div>`)[0];
popup_ba449309efea4816829a950b2509718b.setContent(html_97435966e4894097bdb478dcc35276df);
circle_marker_a6bba815d05a4f22a52f0834bdd4c237.bindPopup(popup_ba449309efea4816829a950b2509718b)
;
var circle_marker_381ba164ffdf4c979e916263d2c484c1 = L.circleMarker(
[15.470330000000047, 78.47094000000004],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_1fb2aae889594581bd9ee76479fd377a = L.popup({"maxWidth": "100%"});
var html_eac6349735764a6ba7dc5b4868b2f86f = $(`<div id="html_eac6349735764a6ba7dc5b4868b2f86f" style="width: 100.0%; height: 100.0%;">Nandyal - Cluster 0</div>`)[0];
popup_1fb2aae889594581bd9ee76479fd377a.setContent(html_eac6349735764a6ba7dc5b4868b2f86f);
circle_marker_381ba164ffdf4c979e916263d2c484c1.bindPopup(popup_1fb2aae889594581bd9ee76479fd377a)
;
var circle_marker_ebcfa1b2c20344398e9d5b8bd21bc2b4 = L.circleMarker(
[16.86095000000006, 79.55280000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_8892881e307e456bb71879800436d816 = L.popup({"maxWidth": "100%"});
var html_d145bdd3f6e84d64b325b58ea5f3c028 = $(`<div id="html_d145bdd3f6e84d64b325b58ea5f3c028" style="width: 100.0%; height: 100.0%;">Miryalaguda - Cluster 0</div>`)[0];
popup_8892881e307e456bb71879800436d816.setContent(html_d145bdd3f6e84d64b325b58ea5f3c028);
circle_marker_ebcfa1b2c20344398e9d5b8bd21bc2b4.bindPopup(popup_8892881e307e456bb71879800436d816)
;
var circle_marker_6fdaa9145c194bb89a3209d58f7ad0c6 = L.circleMarker(
[28.67865000000006, 77.06769000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d4ef70773fac420bad223213f3dac521 = L.popup({"maxWidth": "100%"});
var html_ba0fc4cabe874059b944157c90614924 = $(`<div id="html_ba0fc4cabe874059b944157c90614924" style="width: 100.0%; height: 100.0%;">Nangloi Jat - Cluster 0</div>`)[0];
popup_d4ef70773fac420bad223213f3dac521.setContent(html_ba0fc4cabe874059b944157c90614924);
circle_marker_6fdaa9145c194bb89a3209d58f7ad0c6.bindPopup(popup_d4ef70773fac420bad223213f3dac521)
;
var circle_marker_a79e763f6e554ea5b9cfa3fb6979c558 = L.circleMarker(
[19.995030000000042, 73.79647000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_25411fa23fd24aec8074519d498aa06e = L.popup({"maxWidth": "100%"});
var html_fcdf0c3216f34ec6a00a9a6fb4d6f37a = $(`<div id="html_fcdf0c3216f34ec6a00a9a6fb4d6f37a" style="width: 100.0%; height: 100.0%;">Nashik - Cluster 0</div>`)[0];
popup_25411fa23fd24aec8074519d498aa06e.setContent(html_fcdf0c3216f34ec6a00a9a6fb4d6f37a);
circle_marker_a79e763f6e554ea5b9cfa3fb6979c558.bindPopup(popup_25411fa23fd24aec8074519d498aa06e)
;
var circle_marker_a07269253df14d2ca66e2b28b8532f3e = L.circleMarker(
[19.032620000000065, 73.02962000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_68e30a3715744d39a2cdc0fbaf7c3599 = L.popup({"maxWidth": "100%"});
var html_00fbab2d2834408eaa1545b4e4b32793 = $(`<div id="html_00fbab2d2834408eaa1545b4e4b32793" style="width: 100.0%; height: 100.0%;">Navi Mumbai - Cluster 0</div>`)[0];
popup_68e30a3715744d39a2cdc0fbaf7c3599.setContent(html_00fbab2d2834408eaa1545b4e4b32793);
circle_marker_a07269253df14d2ca66e2b28b8532f3e.bindPopup(popup_68e30a3715744d39a2cdc0fbaf7c3599)
;
var circle_marker_eaf412c272fa4220b65b57e49443aae4 = L.circleMarker(
[14.439790000000073, 79.99362000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_c2d5c95b59ca4a928a46ba6a0dd687cc = L.popup({"maxWidth": "100%"});
var html_b7a3478f0af34246950be1a8fe210340 = $(`<div id="html_b7a3478f0af34246950be1a8fe210340" style="width: 100.0%; height: 100.0%;">Nellore[15][16] - Cluster 0</div>`)[0];
popup_c2d5c95b59ca4a928a46ba6a0dd687cc.setContent(html_b7a3478f0af34246950be1a8fe210340);
circle_marker_eaf412c272fa4220b65b57e49443aae4.bindPopup(popup_c2d5c95b59ca4a928a46ba6a0dd687cc)
;
var circle_marker_01b6723baedc4a83b1ca433a22ed4d07 = L.circleMarker(
[28.63095000000004, 77.21721000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_f036883b62d247dc833165d4a140fe71 = L.popup({"maxWidth": "100%"});
var html_512988a651c143e78f994faa3295e718 = $(`<div id="html_512988a651c143e78f994faa3295e718" style="width: 100.0%; height: 100.0%;">New Delhi - Cluster 0</div>`)[0];
popup_f036883b62d247dc833165d4a140fe71.setContent(html_512988a651c143e78f994faa3295e718);
circle_marker_01b6723baedc4a83b1ca433a22ed4d07.bindPopup(popup_f036883b62d247dc833165d4a140fe71)
;
var circle_marker_c2d9357c5b6b4c1eae98b2c108e2ca7b = L.circleMarker(
[18.686151879000022, 78.20615048800005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_69647554f6ef43369c69d01a742fcb54 = L.popup({"maxWidth": "100%"});
var html_cc9bea4f42e149e7818e88fdd54a4be1 = $(`<div id="html_cc9bea4f42e149e7818e88fdd54a4be1" style="width: 100.0%; height: 100.0%;">Nizamabad - Cluster 0</div>`)[0];
popup_69647554f6ef43369c69d01a742fcb54.setContent(html_cc9bea4f42e149e7818e88fdd54a4be1);
circle_marker_c2d9357c5b6b4c1eae98b2c108e2ca7b.bindPopup(popup_69647554f6ef43369c69d01a742fcb54)
;
var circle_marker_56946df4a7a248b59df5c2e3d08c8dd6 = L.circleMarker(
[28.533420000000035, 77.38190000000003],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_78a8d50d3e2f42e69e89976c1c3af4ac = L.popup({"maxWidth": "100%"});
var html_0adab6b44c8d4baf9e890a8b15908917 = $(`<div id="html_0adab6b44c8d4baf9e890a8b15908917" style="width: 100.0%; height: 100.0%;">Noida - Cluster 0</div>`)[0];
popup_78a8d50d3e2f42e69e89976c1c3af4ac.setContent(html_0adab6b44c8d4baf9e890a8b15908917);
circle_marker_56946df4a7a248b59df5c2e3d08c8dd6.bindPopup(popup_78a8d50d3e2f42e69e89976c1c3af4ac)
;
var circle_marker_7b6dad24d90f4d2a9e483a1b288edb3c = L.circleMarker(
[22.685200000000066, 88.42188000000004],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d418e39d606d4921ae8ffad022474108 = L.popup({"maxWidth": "100%"});
var html_438a1998c0cb4d2bb7293b52222a1191 = $(`<div id="html_438a1998c0cb4d2bb7293b52222a1191" style="width: 100.0%; height: 100.0%;">North Dumdum - Cluster 0</div>`)[0];
popup_d418e39d606d4921ae8ffad022474108.setContent(html_438a1998c0cb4d2bb7293b52222a1191);
circle_marker_7b6dad24d90f4d2a9e483a1b288edb3c.bindPopup(popup_d418e39d606d4921ae8ffad022474108)
;
var circle_marker_210e6331396f439c86cd7c3cc522d727 = L.circleMarker(
[25.986650000000054, 79.45085000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_23d4b1341fa7439a9500b595c750bc49 = L.popup({"maxWidth": "100%"});
var html_e8404b83f8974c0ab2326a1be80adb71 = $(`<div id="html_e8404b83f8974c0ab2326a1be80adb71" style="width: 100.0%; height: 100.0%;">Orai - Cluster 0</div>`)[0];
popup_23d4b1341fa7439a9500b595c750bc49.setContent(html_e8404b83f8974c0ab2326a1be80adb71);
circle_marker_210e6331396f439c86cd7c3cc522d727.bindPopup(popup_23d4b1341fa7439a9500b595c750bc49)
;
var circle_marker_657ea5c6acbf42ccaca47f5b71dfdd8d = L.circleMarker(
[25.772760000000062, 73.32335000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_f0d51dd31d4a4df186087859188d71f8 = L.popup({"maxWidth": "100%"});
var html_8bcd4531e70a4a42aa0d1d7abf1849a7 = $(`<div id="html_8bcd4531e70a4a42aa0d1d7abf1849a7" style="width: 100.0%; height: 100.0%;">Pali - Cluster 0</div>`)[0];
popup_f0d51dd31d4a4df186087859188d71f8.setContent(html_8bcd4531e70a4a42aa0d1d7abf1849a7);
circle_marker_657ea5c6acbf42ccaca47f5b71dfdd8d.bindPopup(popup_f0d51dd31d4a4df186087859188d71f8)
;
var circle_marker_84888217f7974508a69f1ac813d724c0 = L.circleMarker(
[12.976110000000062, 80.18361000000004],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_a05ec7426841492a9df7c39b7ca3d06a = L.popup({"maxWidth": "100%"});
var html_33ade734b2fd4678a68515f52e0a0099 = $(`<div id="html_33ade734b2fd4678a68515f52e0a0099" style="width: 100.0%; height: 100.0%;">Pallavaram - Cluster 0</div>`)[0];
popup_a05ec7426841492a9df7c39b7ca3d06a.setContent(html_33ade734b2fd4678a68515f52e0a0099);
circle_marker_84888217f7974508a69f1ac813d724c0.bindPopup(popup_a05ec7426841492a9df7c39b7ca3d06a)
;
var circle_marker_5df6f5e06c6b4d38a5747c19c65befa8 = L.circleMarker(
[30.704570000000047, 76.86396000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_2848ba3fc6ce478480e238ecf1780ecb = L.popup({"maxWidth": "100%"});
var html_9d1f2c8228e5466e843c70b05335d631 = $(`<div id="html_9d1f2c8228e5466e843c70b05335d631" style="width: 100.0%; height: 100.0%;">Panchkula - Cluster 0</div>`)[0];
popup_2848ba3fc6ce478480e238ecf1780ecb.setContent(html_9d1f2c8228e5466e843c70b05335d631);
circle_marker_5df6f5e06c6b4d38a5747c19c65befa8.bindPopup(popup_2848ba3fc6ce478480e238ecf1780ecb)
;
var circle_marker_659388a709344a7fb300d08e48a0bf8e = L.circleMarker(
[22.696340000000077, 88.39155000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_8c270cda0ac746cf91d22dc38a30c69e = L.popup({"maxWidth": "100%"});
var html_cbd7d3901948479e9ff8c9a1ad80399a = $(`<div id="html_cbd7d3901948479e9ff8c9a1ad80399a" style="width: 100.0%; height: 100.0%;">Panihati - Cluster 0</div>`)[0];
popup_8c270cda0ac746cf91d22dc38a30c69e.setContent(html_cbd7d3901948479e9ff8c9a1ad80399a);
circle_marker_659388a709344a7fb300d08e48a0bf8e.bindPopup(popup_8c270cda0ac746cf91d22dc38a30c69e)
;
var circle_marker_bef01e8afc534d6ca257fd0972b2f93e = L.circleMarker(
[29.39005000000003, 76.96949000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_a07c8ff322cf47e0aae5fa4dd2dd43b7 = L.popup({"maxWidth": "100%"});
var html_cdef9173e9644842a1b7fbcb70b494fe = $(`<div id="html_cdef9173e9644842a1b7fbcb70b494fe" style="width: 100.0%; height: 100.0%;">Panipat - Cluster 0</div>`)[0];
popup_a07c8ff322cf47e0aae5fa4dd2dd43b7.setContent(html_cdef9173e9644842a1b7fbcb70b494fe);
circle_marker_bef01e8afc534d6ca257fd0972b2f93e.bindPopup(popup_a07c8ff322cf47e0aae5fa4dd2dd43b7)
;
var circle_marker_f17a718861eb439db922d57f7f6b0a75 = L.circleMarker(
[18.99821000000003, 73.12315000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_fabb66ea4c8f4359a6265e2afc7325fb = L.popup({"maxWidth": "100%"});
var html_5b98777f8c13461f988aaac6b3392f9f = $(`<div id="html_5b98777f8c13461f988aaac6b3392f9f" style="width: 100.0%; height: 100.0%;">Panvel - Cluster 0</div>`)[0];
popup_fabb66ea4c8f4359a6265e2afc7325fb.setContent(html_5b98777f8c13461f988aaac6b3392f9f);
circle_marker_f17a718861eb439db922d57f7f6b0a75.bindPopup(popup_fabb66ea4c8f4359a6265e2afc7325fb)
;
var circle_marker_86cc5113791442a7b18cf5252f919dfa = L.circleMarker(
[16.236600000000067, 80.05551000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_df5e7d4672814af3894c0385c7840218 = L.popup({"maxWidth": "100%"});
var html_707baf4692f1413092e3b18bf3c77569 = $(`<div id="html_707baf4692f1413092e3b18bf3c77569" style="width: 100.0%; height: 100.0%;">Narasaraopet - Cluster 0</div>`)[0];
popup_df5e7d4672814af3894c0385c7840218.setContent(html_707baf4692f1413092e3b18bf3c77569);
circle_marker_86cc5113791442a7b18cf5252f919dfa.bindPopup(popup_df5e7d4672814af3894c0385c7840218)
;
var circle_marker_220e2aa5a51649cd92922fdb2ec16e06 = L.circleMarker(
[19.260790000000043, 76.77697000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_4ef36df348644a1a9d77e2cc2d67b309 = L.popup({"maxWidth": "100%"});
var html_cf1b4d04c3004b80b7b8c3cca704c16f = $(`<div id="html_cf1b4d04c3004b80b7b8c3cca704c16f" style="width: 100.0%; height: 100.0%;">Parbhani - Cluster 0</div>`)[0];
popup_4ef36df348644a1a9d77e2cc2d67b309.setContent(html_cf1b4d04c3004b80b7b8c3cca704c16f);
circle_marker_220e2aa5a51649cd92922fdb2ec16e06.bindPopup(popup_4ef36df348644a1a9d77e2cc2d67b309)
;
var circle_marker_1aef0dc29bce4b0a8b8bb0ec19299bfb = L.circleMarker(
[19.27413000000007, 72.91311000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_2cc6bc0343ba40ceb4939f27bfde04f5 = L.popup({"maxWidth": "100%"});
var html_96301d8922e34662bf040364cd00e2dd = $(`<div id="html_96301d8922e34662bf040364cd00e2dd" style="width: 100.0%; height: 100.0%;">Mira-Bhayandar - Cluster 0</div>`)[0];
popup_2cc6bc0343ba40ceb4939f27bfde04f5.setContent(html_96301d8922e34662bf040364cd00e2dd);
circle_marker_1aef0dc29bce4b0a8b8bb0ec19299bfb.bindPopup(popup_2cc6bc0343ba40ceb4939f27bfde04f5)
;
var circle_marker_12e3da81ab8348459bc93a2f42f13ac9 = L.circleMarker(
[25.938540000000046, 83.56515000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d7805c8744a749308e0539db675e9ab8 = L.popup({"maxWidth": "100%"});
var html_1243a0b39c3f404985c6ec913ed76629 = $(`<div id="html_1243a0b39c3f404985c6ec913ed76629" style="width: 100.0%; height: 100.0%;">Mau - Cluster 0</div>`)[0];
popup_d7805c8744a749308e0539db675e9ab8.setContent(html_1243a0b39c3f404985c6ec913ed76629);
circle_marker_12e3da81ab8348459bc93a2f42f13ac9.bindPopup(popup_d7805c8744a749308e0539db675e9ab8)
;
var circle_marker_c74911592e844445888687a312ecd42f = L.circleMarker(
[23.582730000000026, 88.40707000000003],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_78d7034efdf1495bbd8a38c577dd2889 = L.popup({"maxWidth": "100%"});
var html_c7c1989428f14fb0aa3c027d0df23d70 = $(`<div id="html_c7c1989428f14fb0aa3c027d0df23d70" style="width: 100.0%; height: 100.0%;">Kamarhati - Cluster 0</div>`)[0];
popup_78d7034efdf1495bbd8a38c577dd2889.setContent(html_c7c1989428f14fb0aa3c027d0df23d70);
circle_marker_c74911592e844445888687a312ecd42f.bindPopup(popup_78d7034efdf1495bbd8a38c577dd2889)
;
var circle_marker_97e6d8888ca343b0a594183ea2d0793b = L.circleMarker(
[26.43562000000003, 80.32986000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_4bbe229ee6c64928b63454cd306edb15 = L.popup({"maxWidth": "100%"});
var html_14af0411172347fabd047abcb1e365ff = $(`<div id="html_14af0411172347fabd047abcb1e365ff" style="width: 100.0%; height: 100.0%;">Kanpur - Cluster 0</div>`)[0];
popup_4bbe229ee6c64928b63454cd306edb15.setContent(html_14af0411172347fabd047abcb1e365ff);
circle_marker_97e6d8888ca343b0a594183ea2d0793b.bindPopup(popup_4bbe229ee6c64928b63454cd306edb15)
;
var circle_marker_7d52cd7b25364456902951025b5eff8c = L.circleMarker(
[18.437170000000037, 79.13123000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_dc83c10bcc834ee9974f29bb8174ca8f = L.popup({"maxWidth": "100%"});
var html_8153b1017bf34c23a500b7120a3a7d71 = $(`<div id="html_8153b1017bf34c23a500b7120a3a7d71" style="width: 100.0%; height: 100.0%;">Karimnagar - Cluster 0</div>`)[0];
popup_dc83c10bcc834ee9974f29bb8174ca8f.setContent(html_8153b1017bf34c23a500b7120a3a7d71);
circle_marker_7d52cd7b25364456902951025b5eff8c.bindPopup(popup_dc83c10bcc834ee9974f29bb8174ca8f)
;
var circle_marker_56102fafb4d446d480ac5854358480fa = L.circleMarker(
[25.538520000000062, 87.57044000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_7540c751ca834d1299442594eb6f4f23 = L.popup({"maxWidth": "100%"});
var html_11d1f5949dd84cfe92726ecc1ed79cfd = $(`<div id="html_11d1f5949dd84cfe92726ecc1ed79cfd" style="width: 100.0%; height: 100.0%;">Katihar - Cluster 0</div>`)[0];
popup_7540c751ca834d1299442594eb6f4f23.setContent(html_11d1f5949dd84cfe92726ecc1ed79cfd);
circle_marker_56102fafb4d446d480ac5854358480fa.bindPopup(popup_7540c751ca834d1299442594eb6f4f23)
;
var circle_marker_6ae0b16c727d487094e6fae9621802aa = L.circleMarker(
[14.91288000000003, 79.99058000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_bba34728302047e7aece9f6907191661 = L.popup({"maxWidth": "100%"});
var html_a7480a05fa6547368a7a55c5dd5cbc3b = $(`<div id="html_a7480a05fa6547368a7a55c5dd5cbc3b" style="width: 100.0%; height: 100.0%;">Kavali - Cluster 0</div>`)[0];
popup_bba34728302047e7aece9f6907191661.setContent(html_a7480a05fa6547368a7a55c5dd5cbc3b);
circle_marker_6ae0b16c727d487094e6fae9621802aa.bindPopup(popup_bba34728302047e7aece9f6907191661)
;
var circle_marker_66e8479c45524154920899eb66b8c69e = L.circleMarker(
[17.250870000000077, 80.15742000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d40c5d47ecff4d438e203d99656d9d0a = L.popup({"maxWidth": "100%"});
var html_c290bca560cc4528bd6449fa2c506343 = $(`<div id="html_c290bca560cc4528bd6449fa2c506343" style="width: 100.0%; height: 100.0%;">Khammam - Cluster 0</div>`)[0];
popup_d40c5d47ecff4d438e203d99656d9d0a.setContent(html_c290bca560cc4528bd6449fa2c506343);
circle_marker_66e8479c45524154920899eb66b8c69e.bindPopup(popup_d40c5d47ecff4d438e203d99656d9d0a)
;
var circle_marker_5514698cb4d44c03962c618ea4199b29 = L.circleMarker(
[21.82122000000004, 76.35638000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_b6b61256524243dfbe6b1024aa651015 = L.popup({"maxWidth": "100%"});
var html_05c970fbf4e74adfad573c80ce97d18c = $(`<div id="html_05c970fbf4e74adfad573c80ce97d18c" style="width: 100.0%; height: 100.0%;">Khandwa - Cluster 0</div>`)[0];
popup_b6b61256524243dfbe6b1024aa651015.setContent(html_05c970fbf4e74adfad573c80ce97d18c);
circle_marker_5514698cb4d44c03962c618ea4199b29.bindPopup(popup_b6b61256524243dfbe6b1024aa651015)
;
var circle_marker_0b4086a05e2f4318a920ca97a660def8 = L.circleMarker(
[22.328100000000063, 87.25169000000005],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_a93b108adf174b0aa8ed97a1025799d7 = L.popup({"maxWidth": "100%"});
var html_202b57f0e8e94557b285fa7bcf985684 = $(`<div id="html_202b57f0e8e94557b285fa7bcf985684" style="width: 100.0%; height: 100.0%;">Kharagpur - Cluster 0</div>`)[0];
popup_a93b108adf174b0aa8ed97a1025799d7.setContent(html_202b57f0e8e94557b285fa7bcf985684);
circle_marker_0b4086a05e2f4318a920ca97a660def8.bindPopup(popup_a93b108adf174b0aa8ed97a1025799d7)
;
var circle_marker_55f8a9c4d3e44957a549701e8cbdf1f9 = L.circleMarker(
[28.662490000000048, 77.43777000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_74ecfc99404c49ac9ad77a9d981ed2f3 = L.popup({"maxWidth": "100%"});
var html_0d5a16ab36694006b4fbfca1e7d37100 = $(`<div id="html_0d5a16ab36694006b4fbfca1e7d37100" style="width: 100.0%; height: 100.0%;">Khora, Ghaziabad - Cluster 0</div>`)[0];
popup_74ecfc99404c49ac9ad77a9d981ed2f3.setContent(html_0d5a16ab36694006b4fbfca1e7d37100);
circle_marker_55f8a9c4d3e44957a549701e8cbdf1f9.bindPopup(popup_74ecfc99404c49ac9ad77a9d981ed2f3)
;
var circle_marker_8680ffb88d0441c48536605376a29497 = L.circleMarker(
[17.406700000821942, 78.59399999426398],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d37d0d94b80c4ce48a843837b89b37ec = L.popup({"maxWidth": "100%"});
var html_69d9d79cf39c49aa9d27f7b97ca57e8d = $(`<div id="html_69d9d79cf39c49aa9d27f7b97ca57e8d" style="width: 100.0%; height: 100.0%;">Warangal[11][12] - Cluster 0</div>`)[0];
popup_d37d0d94b80c4ce48a843837b89b37ec.setContent(html_69d9d79cf39c49aa9d27f7b97ca57e8d);
circle_marker_8680ffb88d0441c48536605376a29497.bindPopup(popup_d37d0d94b80c4ce48a843837b89b37ec)
;
var circle_marker_5c09574a78844fd2932d854e28d6df83 = L.circleMarker(
[26.10265000000004, 87.94312000000008],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_409a35e8f57448feba8c00b8e899a85d = L.popup({"maxWidth": "100%"});
var html_59d89af12aaa4a9da3b1a4419796be88 = $(`<div id="html_59d89af12aaa4a9da3b1a4419796be88" style="width: 100.0%; height: 100.0%;">Kishanganj[32] - Cluster 0</div>`)[0];
popup_409a35e8f57448feba8c00b8e899a85d.setContent(html_59d89af12aaa4a9da3b1a4419796be88);
circle_marker_5c09574a78844fd2932d854e28d6df83.bindPopup(popup_409a35e8f57448feba8c00b8e899a85d)
;
var circle_marker_65472a17dcc04d4a98570a6afea68feb = L.circleMarker(
[16.70446000000004, 74.24137000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_550e296806054804b60a668072b0b4da = L.popup({"maxWidth": "100%"});
var html_e58ce65646eb4af79263f590d3c4b927 = $(`<div id="html_e58ce65646eb4af79263f590d3c4b927" style="width: 100.0%; height: 100.0%;">Kolhapur - Cluster 0</div>`)[0];
popup_550e296806054804b60a668072b0b4da.setContent(html_e58ce65646eb4af79263f590d3c4b927);
circle_marker_65472a17dcc04d4a98570a6afea68feb.bindPopup(popup_550e296806054804b60a668072b0b4da)
;
var circle_marker_623b2673c40949ebb8b37e0cd24a5bcc = L.circleMarker(
[22.570530000000076, 88.37124000000006],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_0d9bf055ac6344e1b161df80c57206d7 = L.popup({"maxWidth": "100%"});
var html_7785fa6321dd4179acb86769ebd7b189 = $(`<div id="html_7785fa6321dd4179acb86769ebd7b189" style="width: 100.0%; height: 100.0%;">Kolkata - Cluster 0</div>`)[0];
popup_0d9bf055ac6344e1b161df80c57206d7.setContent(html_7785fa6321dd4179acb86769ebd7b189);
circle_marker_623b2673c40949ebb8b37e0cd24a5bcc.bindPopup(popup_0d9bf055ac6344e1b161df80c57206d7)
;
var circle_marker_aeabde09427841bcb40b08ac1ff9e898 = L.circleMarker(
[8.88689000000005, 76.59228000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);
var popup_d21da70b339f4af586a5b32f4547834d = L.popup({"maxWidth": "100%"});
var html_fe7ac859350c45348f6072abd37c1bf8 = $(`<div id="html_fe7ac859350c45348f6072abd37c1bf8" style="width: 100.0%; height: 100.0%;">Kollam - Cluster 0</div>`)[0];
popup_d21da70b339f4af586a5b32f4547834d.setContent(html_fe7ac859350c45348f6072abd37c1bf8);
circle_marker_aeabde09427841bcb40b08ac1ff9e898.bindPopup(popup_d21da70b339f4af586a5b32f4547834d)
;
var circle_marker_2bc4f084b9024275a769edbf166497fc = L.circleMarker(
[23.60800000000006, 72.37459000000007],
{"bubblingMouseEvents": true, "color": "#ff0000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_cc81987d06b847f6b5f26b951c9ec338);