-
Notifications
You must be signed in to change notification settings - Fork 6
/
map_clusters.html
1963 lines (950 loc) · 102 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_9daacca4582c4ef692fdb872607ea3e0 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_9daacca4582c4ef692fdb872607ea3e0" ></div>
</body>
<script>
var map_9daacca4582c4ef692fdb872607ea3e0 = L.map(
"map_9daacca4582c4ef692fdb872607ea3e0",
{
center: [22.3511148, 78.6677428],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_f74186d08ca04105b33f265df59ed0fe = 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_9daacca4582c4ef692fdb872607ea3e0);
var circle_marker_1e08d5a708134c0a942587db5beeed4e = L.circleMarker(
[17.984050000000025, 79.60205000000008],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_209678cf3ad44fe7bdc20db0b61edc51 = L.popup({"maxWidth": "100%"});
var html_36cccfbe7eca4f25b1d4e04244f192e6 = $(`<div id="html_36cccfbe7eca4f25b1d4e04244f192e6" style="width: 100.0%; height: 100.0%;">Warangal - Cluster 0</div>`)[0];
popup_209678cf3ad44fe7bdc20db0b61edc51.setContent(html_36cccfbe7eca4f25b1d4e04244f192e6);
circle_marker_1e08d5a708134c0a942587db5beeed4e.bindPopup(popup_209678cf3ad44fe7bdc20db0b61edc51)
;
var circle_marker_3a75d5262cff42b891d8feeb906d6889 = L.circleMarker(
[17.658040000000028, 75.90685000000008],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_539bdd7f41964afebaef729e051dd5db = L.popup({"maxWidth": "100%"});
var html_651487a74b554cab9f2a868c4666c47f = $(`<div id="html_651487a74b554cab9f2a868c4666c47f" style="width: 100.0%; height: 100.0%;">Solapur - Cluster 0</div>`)[0];
popup_539bdd7f41964afebaef729e051dd5db.setContent(html_651487a74b554cab9f2a868c4666c47f);
circle_marker_3a75d5262cff42b891d8feeb906d6889.bindPopup(popup_539bdd7f41964afebaef729e051dd5db)
;
var circle_marker_f603d7e4906b45c7b6c6b0cfdb4aa80d = L.circleMarker(
[23.532320000000027, 87.30735000000004],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_5ad675178def40048d101d1d2fa6aa98 = L.popup({"maxWidth": "100%"});
var html_dea5a005f09d444c9a9d5bf53f0e0203 = $(`<div id="html_dea5a005f09d444c9a9d5bf53f0e0203" style="width: 100.0%; height: 100.0%;">Durgapur - Cluster 0</div>`)[0];
popup_5ad675178def40048d101d1d2fa6aa98.setContent(html_dea5a005f09d444c9a9d5bf53f0e0203);
circle_marker_f603d7e4906b45c7b6c6b0cfdb4aa80d.bindPopup(popup_5ad675178def40048d101d1d2fa6aa98)
;
var circle_marker_54673690e46a44a5a0b9d26ccd7b7ab8 = L.circleMarker(
[28.016470000000027, 73.31184000000007],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_c10567c7e76c4e9d90d3fe3649918c55 = L.popup({"maxWidth": "100%"});
var html_79b5b87c1fd644f88e6589c58074bf97 = $(`<div id="html_79b5b87c1fd644f88e6589c58074bf97" style="width: 100.0%; height: 100.0%;">Bikaner - Cluster 0</div>`)[0];
popup_c10567c7e76c4e9d90d3fe3649918c55.setContent(html_79b5b87c1fd644f88e6589c58074bf97);
circle_marker_54673690e46a44a5a0b9d26ccd7b7ab8.bindPopup(popup_c10567c7e76c4e9d90d3fe3649918c55)
;
var circle_marker_e292538fc0ef495c9d9e8a1ee5566282 = 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_9daacca4582c4ef692fdb872607ea3e0);
var popup_292a016664cf40f39903c69618dd9153 = L.popup({"maxWidth": "100%"});
var html_b84d3e62b33e4ee7b15fd720e222811a = $(`<div id="html_b84d3e62b33e4ee7b15fd720e222811a" style="width: 100.0%; height: 100.0%;">Moradabad - Cluster 0</div>`)[0];
popup_292a016664cf40f39903c69618dd9153.setContent(html_b84d3e62b33e4ee7b15fd720e222811a);
circle_marker_e292538fc0ef495c9d9e8a1ee5566282.bindPopup(popup_292a016664cf40f39903c69618dd9153)
;
var circle_marker_e1c751a78b1c42a68d27332ebd9ac8c2 = L.circleMarker(
[25.44858000000005, 78.56955000000005],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_3f24b07c8e5c4e9eae91d957158399a8 = L.popup({"maxWidth": "100%"});
var html_742a9b2210ad43029c26afffc40eb694 = $(`<div id="html_742a9b2210ad43029c26afffc40eb694" style="width: 100.0%; height: 100.0%;">Jhansi - Cluster 0</div>`)[0];
popup_3f24b07c8e5c4e9eae91d957158399a8.setContent(html_742a9b2210ad43029c26afffc40eb694);
circle_marker_e1c751a78b1c42a68d27332ebd9ac8c2.bindPopup(popup_3f24b07c8e5c4e9eae91d957158399a8)
;
var circle_marker_dba19e040aa54894b4bd4bc269dc0968 = L.circleMarker(
[25.165310000000034, 75.85123000000004],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_f2183e8a5ae1406d9b3b52da115b1ec8 = L.popup({"maxWidth": "100%"});
var html_d690d5d63d1c4fa4b5c64d2f49eedf13 = $(`<div id="html_d690d5d63d1c4fa4b5c64d2f49eedf13" style="width: 100.0%; height: 100.0%;">Kota - Cluster 0</div>`)[0];
popup_f2183e8a5ae1406d9b3b52da115b1ec8.setContent(html_d690d5d63d1c4fa4b5c64d2f49eedf13);
circle_marker_dba19e040aa54894b4bd4bc269dc0968.bindPopup(popup_f2183e8a5ae1406d9b3b52da115b1ec8)
;
var circle_marker_189c388a3ff842ea88ad2db33f1b1ecb = L.circleMarker(
[21.770030000000077, 72.14590000000004],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_cf81b8784b2f48a7a697ae4f3178997d = L.popup({"maxWidth": "100%"});
var html_ddc9c5031d944caebcdd9ed0dbcd193c = $(`<div id="html_ddc9c5031d944caebcdd9ed0dbcd193c" style="width: 100.0%; height: 100.0%;">Bhavnagar - Cluster 0</div>`)[0];
popup_cf81b8784b2f48a7a697ae4f3178997d.setContent(html_ddc9c5031d944caebcdd9ed0dbcd193c);
circle_marker_189c388a3ff842ea88ad2db33f1b1ecb.bindPopup(popup_cf81b8784b2f48a7a697ae4f3178997d)
;
var circle_marker_396c904fed204a2492031fb4e50f746a = L.circleMarker(
[23.180870000000027, 75.78816000000006],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_c5ee05a9146f43babdc4fd302724f930 = L.popup({"maxWidth": "100%"});
var html_ae2a5985512d4043ae75514f4ecca4e9 = $(`<div id="html_ae2a5985512d4043ae75514f4ecca4e9" style="width: 100.0%; height: 100.0%;">Ujjain - Cluster 0</div>`)[0];
popup_c5ee05a9146f43babdc4fd302724f930.setContent(html_ae2a5985512d4043ae75514f4ecca4e9);
circle_marker_396c904fed204a2492031fb4e50f746a.bindPopup(popup_c5ee05a9146f43babdc4fd302724f930)
;
var circle_marker_f315363256564208a8841ebe478d42c4 = L.circleMarker(
[11.874720000000025, 75.37518000000006],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_ae50fd70e3e1425cbeb5b23f22c7ec20 = L.popup({"maxWidth": "100%"});
var html_fb10bfa11509445eb00ff202853f63f9 = $(`<div id="html_fb10bfa11509445eb00ff202853f63f9" style="width: 100.0%; height: 100.0%;">Kannur - Cluster 0</div>`)[0];
popup_ae50fd70e3e1425cbeb5b23f22c7ec20.setContent(html_fb10bfa11509445eb00ff202853f63f9);
circle_marker_f315363256564208a8841ebe478d42c4.bindPopup(popup_ae50fd70e3e1425cbeb5b23f22c7ec20)
;
var circle_marker_15b676bebe944d4491834a95af5afb1a = L.circleMarker(
[23.68432000000007, 86.97938000000005],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_63df6f5c4e84459798fec221e85d41b0 = L.popup({"maxWidth": "100%"});
var html_7840deb7721a4a85981dcf9cc73d3748 = $(`<div id="html_7840deb7721a4a85981dcf9cc73d3748" style="width: 100.0%; height: 100.0%;">Asansol - Cluster 0</div>`)[0];
popup_63df6f5c4e84459798fec221e85d41b0.setContent(html_7840deb7721a4a85981dcf9cc73d3748);
circle_marker_15b676bebe944d4491834a95af5afb1a.bindPopup(popup_63df6f5c4e84459798fec221e85d41b0)
;
var circle_marker_278ef3ee11ac46f5881e9253a749f96f = L.circleMarker(
[20.93333000000007, 77.75000000000006],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_31f8fd89d8ee43d981d06c05136a3283 = L.popup({"maxWidth": "100%"});
var html_7deb859a009d4de29ca987858c635286 = $(`<div id="html_7deb859a009d4de29ca987858c635286" style="width: 100.0%; height: 100.0%;">Amravati - Cluster 0</div>`)[0];
popup_31f8fd89d8ee43d981d06c05136a3283.setContent(html_7deb859a009d4de29ca987858c635286);
circle_marker_278ef3ee11ac46f5881e9253a749f96f.bindPopup(popup_31f8fd89d8ee43d981d06c05136a3283)
;
var circle_marker_e6566326093943369d4cde192e6689d7 = L.circleMarker(
[25.436090000000036, 81.84718000000004],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_5d470b09248d47ab909dbfd315aae9d2 = L.popup({"maxWidth": "100%"});
var html_2e818ef118d3416a955dd08c17dc1b46 = $(`<div id="html_2e818ef118d3416a955dd08c17dc1b46" style="width: 100.0%; height: 100.0%;">Allahabad - Cluster 0</div>`)[0];
popup_5d470b09248d47ab909dbfd315aae9d2.setContent(html_2e818ef118d3416a955dd08c17dc1b46);
circle_marker_e6566326093943369d4cde192e6689d7.bindPopup(popup_5d470b09248d47ab909dbfd315aae9d2)
;
var circle_marker_f45a18a2f00d446586cca073fde1d39e = L.circleMarker(
[27.886250000000075, 78.07385000000005],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_1c50d7227199448ea6ff44d941168a67 = L.popup({"maxWidth": "100%"});
var html_48f10ab1a828429aaffcffa36a04c8bf = $(`<div id="html_48f10ab1a828429aaffcffa36a04c8bf" style="width: 100.0%; height: 100.0%;">Aligarh - Cluster 0</div>`)[0];
popup_1c50d7227199448ea6ff44d941168a67.setContent(html_48f10ab1a828429aaffcffa36a04c8bf);
circle_marker_f45a18a2f00d446586cca073fde1d39e.bindPopup(popup_1c50d7227199448ea6ff44d941168a67)
;
var circle_marker_9ace5d236db9430c86e9c79e194c2646 = L.circleMarker(
[26.220110000000034, 78.17620000000005],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_7e03e7e3ec4a436eb08128b0b5901505 = L.popup({"maxWidth": "100%"});
var html_2ee5a8c8a34146f2abed1dc0e95e8f89 = $(`<div id="html_2ee5a8c8a34146f2abed1dc0e95e8f89" style="width: 100.0%; height: 100.0%;">Gwalior - Cluster 0</div>`)[0];
popup_7e03e7e3ec4a436eb08128b0b5901505.setContent(html_2ee5a8c8a34146f2abed1dc0e95e8f89);
circle_marker_9ace5d236db9430c86e9c79e194c2646.bindPopup(popup_7e03e7e3ec4a436eb08128b0b5901505)
;
var circle_marker_267dd29292474c3c8710e5fc585e8a00 = L.circleMarker(
[22.229720000000043, 84.86077000000006],
{"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_9daacca4582c4ef692fdb872607ea3e0);
var popup_4676f23c12bb429887b1e72d40638dd4 = L.popup({"maxWidth": "100%"});
var html_8db77eaab567408ea1111bd6aef7f0ac = $(`<div id="html_8db77eaab567408ea1111bd6aef7f0ac" style="width: 100.0%; height: 100.0%;">Raurkela - Cluster 0</div>`)[0];
popup_4676f23c12bb429887b1e72d40638dd4.setContent(html_8db77eaab567408ea1111bd6aef7f0ac);
circle_marker_267dd29292474c3c8710e5fc585e8a00.bindPopup(popup_4676f23c12bb429887b1e72d40638dd4)
;
var circle_marker_55db0ce12ae449eba008de862c35df31 = 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_9daacca4582c4ef692fdb872607ea3e0);
var popup_d44c19d0d09f4a6b9f007bec42541989 = L.popup({"maxWidth": "100%"});
var html_6e93f62be5da4573a7aa6234ef526950 = $(`<div id="html_6e93f62be5da4573a7aa6234ef526950" style="width: 100.0%; height: 100.0%;">Nanded - Cluster 0</div>`)[0];
popup_d44c19d0d09f4a6b9f007bec42541989.setContent(html_6e93f62be5da4573a7aa6234ef526950);
circle_marker_55db0ce12ae449eba008de862c35df31.bindPopup(popup_d44c19d0d09f4a6b9f007bec42541989)
;
var circle_marker_df7bd0c2d7134a18a88c3637f827f4b2 = L.circleMarker(
[20.550000000000068, 74.53333000000003],
{"bubblingMouseEvents": true, "color": "#8000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#8000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_391d02ca098d4bc090ed8ca01861b9aa = L.popup({"maxWidth": "100%"});
var html_2b2ba0555e0a4c9d8ede6128fdeaf408 = $(`<div id="html_2b2ba0555e0a4c9d8ede6128fdeaf408" style="width: 100.0%; height: 100.0%;">Malegaon - Cluster 1</div>`)[0];
popup_391d02ca098d4bc090ed8ca01861b9aa.setContent(html_2b2ba0555e0a4c9d8ede6128fdeaf408);
circle_marker_df7bd0c2d7134a18a88c3637f827f4b2.bindPopup(popup_391d02ca098d4bc090ed8ca01861b9aa)
;
var circle_marker_9a5bf794fa4a438e8d16117c36c51d89 = L.circleMarker(
[17.332740000000058, 76.84035000000006],
{"bubblingMouseEvents": true, "color": "#8000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#8000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_0dbda988bb014ce1977b3bcca99ddd35 = L.popup({"maxWidth": "100%"});
var html_86b3264942d84060a284ddaf3febc78a = $(`<div id="html_86b3264942d84060a284ddaf3febc78a" style="width: 100.0%; height: 100.0%;">Gulbarga - Cluster 1</div>`)[0];
popup_0dbda988bb014ce1977b3bcca99ddd35.setContent(html_86b3264942d84060a284ddaf3febc78a);
circle_marker_9a5bf794fa4a438e8d16117c36c51d89.bindPopup(popup_0dbda988bb014ce1977b3bcca99ddd35)
;
var circle_marker_342bdb21ff834ce68bc32ff99cbc41d5 = L.circleMarker(
[23.783330000000035, 85.96667000000008],
{"bubblingMouseEvents": true, "color": "#8000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#8000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_d5981308b53c4f27831094a7d22dc77b = L.popup({"maxWidth": "100%"});
var html_1beaed9f77cd4681b288e36bbd9de4d9 = $(`<div id="html_1beaed9f77cd4681b288e36bbd9de4d9" style="width: 100.0%; height: 100.0%;">Bokaro - Cluster 1</div>`)[0];
popup_d5981308b53c4f27831094a7d22dc77b.setContent(html_1beaed9f77cd4681b288e36bbd9de4d9);
circle_marker_342bdb21ff834ce68bc32ff99cbc41d5.bindPopup(popup_d5981308b53c4f27831094a7d22dc77b)
;
var circle_marker_b75629b3c6984af6a30bbf9fd927b64a = L.circleMarker(
[23.795930000000055, 86.43060000000008],
{"bubblingMouseEvents": true, "color": "#8000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#8000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_8e9c7241c0584bb9b3a567bbc4031a1d = L.popup({"maxWidth": "100%"});
var html_37df6218eec74f96bbe8a2a2fd306973 = $(`<div id="html_37df6218eec74f96bbe8a2a2fd306973" style="width: 100.0%; height: 100.0%;">Dhanbad - Cluster 1</div>`)[0];
popup_8e9c7241c0584bb9b3a567bbc4031a1d.setContent(html_37df6218eec74f96bbe8a2a2fd306973);
circle_marker_b75629b3c6984af6a30bbf9fd927b64a.bindPopup(popup_8e9c7241c0584bb9b3a567bbc4031a1d)
;
var circle_marker_43d4d94d98854cbca0cda52d4d5f7a6d = L.circleMarker(
[19.995030000000042, 73.79647000000006],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_aee591063ac743f588fcf4e152ca44e4 = L.popup({"maxWidth": "100%"});
var html_7b732068de004bbc8b07d67ff997e28c = $(`<div id="html_7b732068de004bbc8b07d67ff997e28c" style="width: 100.0%; height: 100.0%;">Nashik - Cluster 2</div>`)[0];
popup_aee591063ac743f588fcf4e152ca44e4.setContent(html_7b732068de004bbc8b07d67ff997e28c);
circle_marker_43d4d94d98854cbca0cda52d4d5f7a6d.bindPopup(popup_aee591063ac743f588fcf4e152ca44e4)
;
var circle_marker_24f34b9294b44d41bf455101169c9754 = L.circleMarker(
[14.439790000000073, 79.99362000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_1e407020bdbd4761ba66a14081c2b52a = L.popup({"maxWidth": "100%"});
var html_73c9d9013c784504b89d41209586f99b = $(`<div id="html_73c9d9013c784504b89d41209586f99b" style="width: 100.0%; height: 100.0%;">Nellore - Cluster 2</div>`)[0];
popup_1e407020bdbd4761ba66a14081c2b52a.setContent(html_73c9d9013c784504b89d41209586f99b);
circle_marker_24f34b9294b44d41bf455101169c9754.bindPopup(popup_1e407020bdbd4761ba66a14081c2b52a)
;
var circle_marker_5f5d4c4b34204ce198d10a6f45e503d6 = L.circleMarker(
[28.533420000000035, 77.38190000000003],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_811e288dffe24eeaa0fce20225c69395 = L.popup({"maxWidth": "100%"});
var html_04e6558b24ef4574a126a2c85ef55f97 = $(`<div id="html_04e6558b24ef4574a126a2c85ef55f97" style="width: 100.0%; height: 100.0%;">Noida - Cluster 2</div>`)[0];
popup_811e288dffe24eeaa0fce20225c69395.setContent(html_04e6558b24ef4574a126a2c85ef55f97);
circle_marker_5f5d4c4b34204ce198d10a6f45e503d6.bindPopup(popup_811e288dffe24eeaa0fce20225c69395)
;
var circle_marker_c3ca37bab55541cd85d3fda18b408246 = L.circleMarker(
[18.940170000000023, 72.83483000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_6772cb2b4a6b48d89092374c31dc98b9 = L.popup({"maxWidth": "100%"});
var html_ac2025142c7c4be9a3d945cbd9b548c4 = $(`<div id="html_ac2025142c7c4be9a3d945cbd9b548c4" style="width: 100.0%; height: 100.0%;">Mumbai - Cluster 2</div>`)[0];
popup_6772cb2b4a6b48d89092374c31dc98b9.setContent(html_ac2025142c7c4be9a3d945cbd9b548c4);
circle_marker_c3ca37bab55541cd85d3fda18b408246.bindPopup(popup_6772cb2b4a6b48d89092374c31dc98b9)
;
var circle_marker_630adab131bf469b897e0bdfcd184b35 = L.circleMarker(
[12.309060000000045, 76.65303000000006],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_265ff48dae8e4172b08cfde9d7c90bf2 = L.popup({"maxWidth": "100%"});
var html_487010f6a7af4871b80eade8b59e539f = $(`<div id="html_487010f6a7af4871b80eade8b59e539f" style="width: 100.0%; height: 100.0%;">Mysore - Cluster 2</div>`)[0];
popup_265ff48dae8e4172b08cfde9d7c90bf2.setContent(html_487010f6a7af4871b80eade8b59e539f);
circle_marker_630adab131bf469b897e0bdfcd184b35.bindPopup(popup_265ff48dae8e4172b08cfde9d7c90bf2)
;
var circle_marker_b1186d2d40604895a43154e6586a4e4c = L.circleMarker(
[29.470290000000034, 77.70761000000005],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_87357aa7fd4f4053a074544ba5e38d56 = L.popup({"maxWidth": "100%"});
var html_0f0db63248fe4bb68ad69903fb6acbaf = $(`<div id="html_0f0db63248fe4bb68ad69903fb6acbaf" style="width: 100.0%; height: 100.0%;">Muzaffarnagar - Cluster 2</div>`)[0];
popup_87357aa7fd4f4053a074544ba5e38d56.setContent(html_0f0db63248fe4bb68ad69903fb6acbaf);
circle_marker_b1186d2d40604895a43154e6586a4e4c.bindPopup(popup_87357aa7fd4f4053a074544ba5e38d56)
;
var circle_marker_3d9d6bf2e44c4c22b03fa97a1198c3bd = L.circleMarker(
[28.998600000000067, 77.70442000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_d97c03dc651842a193ec689c2e1ceddc = L.popup({"maxWidth": "100%"});
var html_fe130a27afa24de9aa142d1939e502d4 = $(`<div id="html_fe130a27afa24de9aa142d1939e502d4" style="width: 100.0%; height: 100.0%;">Meerut - Cluster 2</div>`)[0];
popup_d97c03dc651842a193ec689c2e1ceddc.setContent(html_fe130a27afa24de9aa142d1939e502d4);
circle_marker_3d9d6bf2e44c4c22b03fa97a1198c3bd.bindPopup(popup_d97c03dc651842a193ec689c2e1ceddc)
;
var circle_marker_8160904db8bd49a4a12bc9e0cf237ac9 = L.circleMarker(
[12.897850000000062, 74.84541000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_510f77c4786e46fd9e94a9f3fe1b4b83 = L.popup({"maxWidth": "100%"});
var html_23e7716f69c34ffc81254a640f8cc931 = $(`<div id="html_23e7716f69c34ffc81254a640f8cc931" style="width: 100.0%; height: 100.0%;">Mangalore - Cluster 2</div>`)[0];
popup_510f77c4786e46fd9e94a9f3fe1b4b83.setContent(html_23e7716f69c34ffc81254a640f8cc931);
circle_marker_8160904db8bd49a4a12bc9e0cf237ac9.bindPopup(popup_510f77c4786e46fd9e94a9f3fe1b4b83)
;
var circle_marker_138d5c21cdf74edfaef1d5af18b38ff0 = L.circleMarker(
[11.042850000000044, 76.08037000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_ec8e479152ba468a8615b8d3557c131a = L.popup({"maxWidth": "100%"});
var html_63adac31dfb342e6b009ce496a3f33f7 = $(`<div id="html_63adac31dfb342e6b009ce496a3f33f7" style="width: 100.0%; height: 100.0%;">Malappuram - Cluster 2</div>`)[0];
popup_ec8e479152ba468a8615b8d3557c131a.setContent(html_63adac31dfb342e6b009ce496a3f33f7);
circle_marker_138d5c21cdf74edfaef1d5af18b38ff0.bindPopup(popup_ec8e479152ba468a8615b8d3557c131a)
;
var circle_marker_0ed6e0c60f9c4abb9f555f9517ef0dbd = L.circleMarker(
[9.92417000000006, 78.12416000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_c1efbfca7bfb46fc9f519981f1ab1bab = L.popup({"maxWidth": "100%"});
var html_d837ba3ba6a44a8591deb7997f1b0002 = $(`<div id="html_d837ba3ba6a44a8591deb7997f1b0002" style="width: 100.0%; height: 100.0%;">Madurai - Cluster 2</div>`)[0];
popup_c1efbfca7bfb46fc9f519981f1ab1bab.setContent(html_d837ba3ba6a44a8591deb7997f1b0002);
circle_marker_0ed6e0c60f9c4abb9f555f9517ef0dbd.bindPopup(popup_c1efbfca7bfb46fc9f519981f1ab1bab)
;
var circle_marker_bc5add59f61e4cc89ffdd169f1ffbe35 = L.circleMarker(
[30.907250000000033, 75.84919000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_1112e8dc49754c089947a68206e8c2ac = L.popup({"maxWidth": "100%"});
var html_1e44625334ee4935b5d98f90dd7aeac9 = $(`<div id="html_1e44625334ee4935b5d98f90dd7aeac9" style="width: 100.0%; height: 100.0%;">Ludhiana - Cluster 2</div>`)[0];
popup_1112e8dc49754c089947a68206e8c2ac.setContent(html_1e44625334ee4935b5d98f90dd7aeac9);
circle_marker_bc5add59f61e4cc89ffdd169f1ffbe35.bindPopup(popup_1112e8dc49754c089947a68206e8c2ac)
;
var circle_marker_1ee2eb5a0e614686b4fe5148dd7a001d = L.circleMarker(
[21.157050000000027, 79.08217000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_f95daf5f68dd4dbe922f755e7960cfed = L.popup({"maxWidth": "100%"});
var html_879781df81c0402bb2dc710d5b3bedab = $(`<div id="html_879781df81c0402bb2dc710d5b3bedab" style="width: 100.0%; height: 100.0%;">Nagpur - Cluster 2</div>`)[0];
popup_f95daf5f68dd4dbe922f755e7960cfed.setContent(html_879781df81c0402bb2dc710d5b3bedab);
circle_marker_1ee2eb5a0e614686b4fe5148dd7a001d.bindPopup(popup_f95daf5f68dd4dbe922f755e7960cfed)
;
var circle_marker_18b25632c79e4e889ad3ba2170b5ccb8 = L.circleMarker(
[25.601290000000063, 85.13751000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_fa31b498943b4eb09860b1e30365a103 = L.popup({"maxWidth": "100%"});
var html_10cb556718694e569ed9871c459be343 = $(`<div id="html_10cb556718694e569ed9871c459be343" style="width: 100.0%; height: 100.0%;">Patna - Cluster 2</div>`)[0];
popup_fa31b498943b4eb09860b1e30365a103.setContent(html_10cb556718694e569ed9871c459be343);
circle_marker_18b25632c79e4e889ad3ba2170b5ccb8.bindPopup(popup_fa31b498943b4eb09860b1e30365a103)
;
var circle_marker_4a3de4f84f6d4824bc212b56f2499216 = L.circleMarker(
[29.965690000000052, 77.54605000000004],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_836e8b6b20154baaad5a26817887f353 = L.popup({"maxWidth": "100%"});
var html_c1025988d8a441838ca103b2fbe99b1a = $(`<div id="html_c1025988d8a441838ca103b2fbe99b1a" style="width: 100.0%; height: 100.0%;">Saharanpur - Cluster 2</div>`)[0];
popup_836e8b6b20154baaad5a26817887f353.setContent(html_c1025988d8a441838ca103b2fbe99b1a);
circle_marker_4a3de4f84f6d4824bc212b56f2499216.bindPopup(popup_836e8b6b20154baaad5a26817887f353)
;
var circle_marker_83c16634b34944b3a32c7ce323ac2308 = L.circleMarker(
[18.504220000000032, 73.85302000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_370dee598ee748e3aa137e4029d9b961 = L.popup({"maxWidth": "100%"});
var html_95f86bae63bb4ceea3b7035cd4f42c4c = $(`<div id="html_95f86bae63bb4ceea3b7035cd4f42c4c" style="width: 100.0%; height: 100.0%;">Pune - Cluster 2</div>`)[0];
popup_370dee598ee748e3aa137e4029d9b961.setContent(html_95f86bae63bb4ceea3b7035cd4f42c4c);
circle_marker_83c16634b34944b3a32c7ce323ac2308.bindPopup(popup_370dee598ee748e3aa137e4029d9b961)
;
var circle_marker_cb2cac4b1f7542abbdfdc7fb6ba8ea86 = L.circleMarker(
[16.502560000000074, 80.63977000000006],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_7235cb2dfc094f598f36dc837d0777b9 = L.popup({"maxWidth": "100%"});
var html_92b34a347dc840559dd5e023b987b695 = $(`<div id="html_92b34a347dc840559dd5e023b987b695" style="width: 100.0%; height: 100.0%;">Vijayawada - Cluster 2</div>`)[0];
popup_7235cb2dfc094f598f36dc837d0777b9.setContent(html_92b34a347dc840559dd5e023b987b695);
circle_marker_cb2cac4b1f7542abbdfdc7fb6ba8ea86.bindPopup(popup_7235cb2dfc094f598f36dc837d0777b9)
;
var circle_marker_933ff259bae2458a95d524b668c0200e = L.circleMarker(
[12.913560000000075, 79.13251000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_1ff3984541494745b8cc2356336f8817 = L.popup({"maxWidth": "100%"});
var html_1cb8714874e24a72a17b951abad94521 = $(`<div id="html_1cb8714874e24a72a17b951abad94521" style="width: 100.0%; height: 100.0%;">Vellore - Cluster 2</div>`)[0];
popup_1ff3984541494745b8cc2356336f8817.setContent(html_1cb8714874e24a72a17b951abad94521);
circle_marker_933ff259bae2458a95d524b668c0200e.bindPopup(popup_1ff3984541494745b8cc2356336f8817)
;
var circle_marker_6b704baef59d4e799d3b43d65b1c9962 = L.circleMarker(
[19.20505000000003, 72.95530000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_83c5c0e7a559458d8139084c54aca67b = L.popup({"maxWidth": "100%"});
var html_ea35f32fa74f48528336d01e43222255 = $(`<div id="html_ea35f32fa74f48528336d01e43222255" style="width: 100.0%; height: 100.0%;">Vasai-Virar - Cluster 2</div>`)[0];
popup_83c5c0e7a559458d8139084c54aca67b.setContent(html_ea35f32fa74f48528336d01e43222255);
circle_marker_6b704baef59d4e799d3b43d65b1c9962.bindPopup(popup_83c5c0e7a559458d8139084c54aca67b)
;
var circle_marker_75049b0e8c324eeb98b3215aa890883d = L.circleMarker(
[25.332890000000077, 82.99654000000004],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_927ee64505344fd78035fd451db3058d = L.popup({"maxWidth": "100%"});
var html_ce1877e5b0034151b707113a6e1a4659 = $(`<div id="html_ce1877e5b0034151b707113a6e1a4659" style="width: 100.0%; height: 100.0%;">Varanasi - Cluster 2</div>`)[0];
popup_927ee64505344fd78035fd451db3058d.setContent(html_ce1877e5b0034151b707113a6e1a4659);
circle_marker_75049b0e8c324eeb98b3215aa890883d.bindPopup(popup_927ee64505344fd78035fd451db3058d)
;
var circle_marker_3e06458a4cf8424d8152f54563c7fb4f = L.circleMarker(
[22.30946000000006, 73.17993000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_d2841dc116a945d79da96eb611938988 = L.popup({"maxWidth": "100%"});
var html_976973e2ca4340a4b53ee508352cb89e = $(`<div id="html_976973e2ca4340a4b53ee508352cb89e" style="width: 100.0%; height: 100.0%;">Vadodara - Cluster 2</div>`)[0];
popup_d2841dc116a945d79da96eb611938988.setContent(html_976973e2ca4340a4b53ee508352cb89e);
circle_marker_3e06458a4cf8424d8152f54563c7fb4f.bindPopup(popup_d2841dc116a945d79da96eb611938988)
;
var circle_marker_a3c32a911f2746c99bdbf4741d1ac38d = L.circleMarker(
[11.089410000000044, 77.36260000000004],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_51d889f94fc843219a9aa235aaa9dbcb = L.popup({"maxWidth": "100%"});
var html_dd729b1e22eb4221a629d3200472e326 = $(`<div id="html_dd729b1e22eb4221a629d3200472e326" style="width: 100.0%; height: 100.0%;">Tiruppur - Cluster 2</div>`)[0];
popup_51d889f94fc843219a9aa235aaa9dbcb.setContent(html_dd729b1e22eb4221a629d3200472e326);
circle_marker_a3c32a911f2746c99bdbf4741d1ac38d.bindPopup(popup_51d889f94fc843219a9aa235aaa9dbcb)
;
var circle_marker_a906a3f5b3aa4d76b2433ae9367c6977 = L.circleMarker(
[8.72640000000007, 77.73349000000007],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_a9d7d36d63ba476ab74e597e0ee00c54 = L.popup({"maxWidth": "100%"});
var html_5a6af360534c4ef6a0a372faaed0bdbf = $(`<div id="html_5a6af360534c4ef6a0a372faaed0bdbf" style="width: 100.0%; height: 100.0%;">Tirunelveli - Cluster 2</div>`)[0];
popup_a9d7d36d63ba476ab74e597e0ee00c54.setContent(html_5a6af360534c4ef6a0a372faaed0bdbf);
circle_marker_a906a3f5b3aa4d76b2433ae9367c6977.bindPopup(popup_a9d7d36d63ba476ab74e597e0ee00c54)
;
var circle_marker_7c35add41d0e4b9c99b96c0c2d20536d = L.circleMarker(
[10.805920000000071, 78.69474000000008],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_62347f12106744eebc70b92779faa2ce = L.popup({"maxWidth": "100%"});
var html_7b1741f0204e4a22921cbcbf46f12121 = $(`<div id="html_7b1741f0204e4a22921cbcbf46f12121" style="width: 100.0%; height: 100.0%;">Tiruchirappalli - Cluster 2</div>`)[0];
popup_62347f12106744eebc70b92779faa2ce.setContent(html_7b1741f0204e4a22921cbcbf46f12121);
circle_marker_7c35add41d0e4b9c99b96c0c2d20536d.bindPopup(popup_62347f12106744eebc70b92779faa2ce)
;
var circle_marker_31d0426847d3451e8fcc39ff8a71dc8f = L.circleMarker(
[11.92993000000007, 79.82470000000006],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_ca593a5cc29b478896a1d8cf29f0e504 = L.popup({"maxWidth": "100%"});
var html_b7c054bbf1e84e808f824d7d93a659c5 = $(`<div id="html_b7c054bbf1e84e808f824d7d93a659c5" style="width: 100.0%; height: 100.0%;">Puducherry - Cluster 2</div>`)[0];
popup_ca593a5cc29b478896a1d8cf29f0e504.setContent(html_b7c054bbf1e84e808f824d7d93a659c5);
circle_marker_31d0426847d3451e8fcc39ff8a71dc8f.bindPopup(popup_ca593a5cc29b478896a1d8cf29f0e504)
;
var circle_marker_e8f7d357addf4ecb80d7120afb893a17 = L.circleMarker(
[10.510820000000024, 76.21121000000005],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_2ecfd9cd183d49c8b29f838a3d26b722 = L.popup({"maxWidth": "100%"});
var html_2f854444e64044c5842c1aaa13ccb2ec = $(`<div id="html_2f854444e64044c5842c1aaa13ccb2ec" style="width: 100.0%; height: 100.0%;">Thrissur - Cluster 2</div>`)[0];
popup_2ecfd9cd183d49c8b29f838a3d26b722.setContent(html_2f854444e64044c5842c1aaa13ccb2ec);
circle_marker_e8f7d357addf4ecb80d7120afb893a17.bindPopup(popup_2ecfd9cd183d49c8b29f838a3d26b722)
;
var circle_marker_04109dbf7acd4636a2104692544cc7c9 = L.circleMarker(
[21.185780000000022, 72.83679000000006],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_2acf06ecf91749f5ad9e96e73bcfa565 = L.popup({"maxWidth": "100%"});
var html_27572ddf81564848930091dda6ea58d0 = $(`<div id="html_27572ddf81564848930091dda6ea58d0" style="width: 100.0%; height: 100.0%;">Surat - Cluster 2</div>`)[0];
popup_2acf06ecf91749f5ad9e96e73bcfa565.setContent(html_27572ddf81564848930091dda6ea58d0);
circle_marker_04109dbf7acd4636a2104692544cc7c9.bindPopup(popup_2acf06ecf91749f5ad9e96e73bcfa565)
;
var circle_marker_929a249e349a4b01bf22b5fe7b906900 = L.circleMarker(
[34.084430000000054, 74.79906000000005],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_db1d0bbdeafa4850989e4e6955bb838f = L.popup({"maxWidth": "100%"});
var html_13c89d2875454f349152a03ab1b8e4e6 = $(`<div id="html_13c89d2875454f349152a03ab1b8e4e6" style="width: 100.0%; height: 100.0%;">Srinagar - Cluster 2</div>`)[0];
popup_db1d0bbdeafa4850989e4e6955bb838f.setContent(html_13c89d2875454f349152a03ab1b8e4e6);
circle_marker_929a249e349a4b01bf22b5fe7b906900.bindPopup(popup_db1d0bbdeafa4850989e4e6955bb838f)
;
var circle_marker_1cee41cd3d07412ab8ca160e49c879e5 = L.circleMarker(
[26.732440000000054, 88.40871000000004],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);
var popup_b03ebb3dc0b84e1a8d1898073324981f = L.popup({"maxWidth": "100%"});
var html_5dae2d6169fb49bd881620a07df5a588 = $(`<div id="html_5dae2d6169fb49bd881620a07df5a588" style="width: 100.0%; height: 100.0%;">Siliguri - Cluster 2</div>`)[0];
popup_b03ebb3dc0b84e1a8d1898073324981f.setContent(html_5dae2d6169fb49bd881620a07df5a588);
circle_marker_1cee41cd3d07412ab8ca160e49c879e5.bindPopup(popup_b03ebb3dc0b84e1a8d1898073324981f)
;
var circle_marker_3fa425c2ab964e85aefa20493f0cc3c4 = L.circleMarker(
[16.85438000000005, 74.56417000000005],
{"bubblingMouseEvents": true, "color": "#80ffb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#80ffb4", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9daacca4582c4ef692fdb872607ea3e0);