-
Notifications
You must be signed in to change notification settings - Fork 6
/
map_india.html
1963 lines (950 loc) · 101 KB
/
map_india.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_5f8b74a016cc4cf29c2a26f3eea1c608 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_5f8b74a016cc4cf29c2a26f3eea1c608" ></div>
</body>
<script>
var map_5f8b74a016cc4cf29c2a26f3eea1c608 = L.map(
"map_5f8b74a016cc4cf29c2a26f3eea1c608",
{
center: [22.3511148, 78.6677428],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_3c15233d9c3f44378c80e2247ddfc9a6 = 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_5f8b74a016cc4cf29c2a26f3eea1c608);
var circle_marker_f5e379ab18ca4bfea9ab05890c61d63d = L.circleMarker(
[18.940170000000023, 72.83483000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_9cbe8b6770ac4b1aa5ce9e58ed225cfe = L.popup({"maxWidth": "100%"});
var html_4f961fa225534bd18234b9ac21227bf9 = $(`<div id="html_4f961fa225534bd18234b9ac21227bf9" style="width: 100.0%; height: 100.0%;">Mumbai</div>`)[0];
popup_9cbe8b6770ac4b1aa5ce9e58ed225cfe.setContent(html_4f961fa225534bd18234b9ac21227bf9);
circle_marker_f5e379ab18ca4bfea9ab05890c61d63d.bindPopup(popup_9cbe8b6770ac4b1aa5ce9e58ed225cfe)
;
var circle_marker_43de3cd734ad4941ac6cc7fbd77badf6 = L.circleMarker(
[28.634100000000046, 77.21689000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_aa41212743be481f843a0a9146ef40a0 = L.popup({"maxWidth": "100%"});
var html_5cabbc8bdcb042fd9d3f64f9de8ae76d = $(`<div id="html_5cabbc8bdcb042fd9d3f64f9de8ae76d" style="width: 100.0%; height: 100.0%;">Delhi</div>`)[0];
popup_aa41212743be481f843a0a9146ef40a0.setContent(html_5cabbc8bdcb042fd9d3f64f9de8ae76d);
circle_marker_43de3cd734ad4941ac6cc7fbd77badf6.bindPopup(popup_aa41212743be481f843a0a9146ef40a0)
;
var circle_marker_e29858ed992b4f0b87764bdce88dc042 = L.circleMarker(
[22.570530000000076, 88.37124000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_1773a6dd43c9464fa830db99ff105204 = L.popup({"maxWidth": "100%"});
var html_36d9714c53504fb39c4aa45a1d25d6ac = $(`<div id="html_36d9714c53504fb39c4aa45a1d25d6ac" style="width: 100.0%; height: 100.0%;">Kolkata</div>`)[0];
popup_1773a6dd43c9464fa830db99ff105204.setContent(html_36d9714c53504fb39c4aa45a1d25d6ac);
circle_marker_e29858ed992b4f0b87764bdce88dc042.bindPopup(popup_1773a6dd43c9464fa830db99ff105204)
;
var circle_marker_320c82768cd74dddb6e56dc5f1d4745a = L.circleMarker(
[13.083620000000053, 80.28252000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_cc4f7c6ee01f4cf29f5b6cedcc9d1fca = L.popup({"maxWidth": "100%"});
var html_02e9c388081a4b02a49af81ac54a412b = $(`<div id="html_02e9c388081a4b02a49af81ac54a412b" style="width: 100.0%; height: 100.0%;">Chennai</div>`)[0];
popup_cc4f7c6ee01f4cf29f5b6cedcc9d1fca.setContent(html_02e9c388081a4b02a49af81ac54a412b);
circle_marker_320c82768cd74dddb6e56dc5f1d4745a.bindPopup(popup_cc4f7c6ee01f4cf29f5b6cedcc9d1fca)
;
var circle_marker_3e65c31cb8764361a804eaa2ef966d20 = L.circleMarker(
[12.966180000000065, 77.58690000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_8d89e104597348ad975da186b36d5cbd = L.popup({"maxWidth": "100%"});
var html_69db178b4444453288608834d18beb15 = $(`<div id="html_69db178b4444453288608834d18beb15" style="width: 100.0%; height: 100.0%;">Bangalore</div>`)[0];
popup_8d89e104597348ad975da186b36d5cbd.setContent(html_69db178b4444453288608834d18beb15);
circle_marker_3e65c31cb8764361a804eaa2ef966d20.bindPopup(popup_8d89e104597348ad975da186b36d5cbd)
;
var circle_marker_b1b7c8e6f1004faca056cd0d3c950cc2 = L.circleMarker(
[17.394870000000026, 78.47076000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_860f882c2a2c4a028b164b3b3398b146 = L.popup({"maxWidth": "100%"});
var html_276a738866414f80863d4601fdd3bb6b = $(`<div id="html_276a738866414f80863d4601fdd3bb6b" style="width: 100.0%; height: 100.0%;">Hyderabad</div>`)[0];
popup_860f882c2a2c4a028b164b3b3398b146.setContent(html_276a738866414f80863d4601fdd3bb6b);
circle_marker_b1b7c8e6f1004faca056cd0d3c950cc2.bindPopup(popup_860f882c2a2c4a028b164b3b3398b146)
;
var circle_marker_a5a7ab3721a34c01a712601ab078a2b4 = L.circleMarker(
[23.027760000000058, 72.60027000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_45d9e2ac61914181bc208a292b900a2a = L.popup({"maxWidth": "100%"});
var html_61bfde2199e84e909b5296379c8bcc83 = $(`<div id="html_61bfde2199e84e909b5296379c8bcc83" style="width: 100.0%; height: 100.0%;">Ahmedabad</div>`)[0];
popup_45d9e2ac61914181bc208a292b900a2a.setContent(html_61bfde2199e84e909b5296379c8bcc83);
circle_marker_a5a7ab3721a34c01a712601ab078a2b4.bindPopup(popup_45d9e2ac61914181bc208a292b900a2a)
;
var circle_marker_cf6c414a2d344f47b603400f0651452c = L.circleMarker(
[18.504220000000032, 73.85302000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_32cbc4831eca43908376cf54fd602d99 = L.popup({"maxWidth": "100%"});
var html_b3894f4212024ffe9cd56fd613ccaa97 = $(`<div id="html_b3894f4212024ffe9cd56fd613ccaa97" style="width: 100.0%; height: 100.0%;">Pune</div>`)[0];
popup_32cbc4831eca43908376cf54fd602d99.setContent(html_b3894f4212024ffe9cd56fd613ccaa97);
circle_marker_cf6c414a2d344f47b603400f0651452c.bindPopup(popup_32cbc4831eca43908376cf54fd602d99)
;
var circle_marker_1a6be5f7104848f3a6446831edc63936 = L.circleMarker(
[21.185780000000022, 72.83679000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_cc08e732ac0e41d0bedc90edcd9e27a4 = L.popup({"maxWidth": "100%"});
var html_40a3c0e045374aed882dee9a4cd43b65 = $(`<div id="html_40a3c0e045374aed882dee9a4cd43b65" style="width: 100.0%; height: 100.0%;">Surat</div>`)[0];
popup_cc08e732ac0e41d0bedc90edcd9e27a4.setContent(html_40a3c0e045374aed882dee9a4cd43b65);
circle_marker_1a6be5f7104848f3a6446831edc63936.bindPopup(popup_cc08e732ac0e41d0bedc90edcd9e27a4)
;
var circle_marker_dc772e4c09674a4fb4df8a2cdb9a88e3 = L.circleMarker(
[26.925730000000044, 75.80659000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d525b7c8b6774184baffff2422816874 = L.popup({"maxWidth": "100%"});
var html_0fe8eeac1c8e4716981c4f761f764819 = $(`<div id="html_0fe8eeac1c8e4716981c4f761f764819" style="width: 100.0%; height: 100.0%;">Jaipur</div>`)[0];
popup_d525b7c8b6774184baffff2422816874.setContent(html_0fe8eeac1c8e4716981c4f761f764819);
circle_marker_dc772e4c09674a4fb4df8a2cdb9a88e3.bindPopup(popup_d525b7c8b6774184baffff2422816874)
;
var circle_marker_f5d8e39503ea40c8914df2a1019d6bf6 = L.circleMarker(
[26.43562000000003, 80.32986000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_7f7caeb6f7c54c699b8983cba9b1ea8b = L.popup({"maxWidth": "100%"});
var html_964c7ddc39bd4cdbb6b3a7814249de9d = $(`<div id="html_964c7ddc39bd4cdbb6b3a7814249de9d" style="width: 100.0%; height: 100.0%;">Kanpur</div>`)[0];
popup_7f7caeb6f7c54c699b8983cba9b1ea8b.setContent(html_964c7ddc39bd4cdbb6b3a7814249de9d);
circle_marker_f5d8e39503ea40c8914df2a1019d6bf6.bindPopup(popup_7f7caeb6f7c54c699b8983cba9b1ea8b)
;
var circle_marker_dfca62f7e51745deb3d8cb865abfd8ad = L.circleMarker(
[26.85471000000007, 80.92135000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_c7afc10519aa482a977a5b309e2aacff = L.popup({"maxWidth": "100%"});
var html_51b91baaa87f4ac594edc72bb3e1a351 = $(`<div id="html_51b91baaa87f4ac594edc72bb3e1a351" style="width: 100.0%; height: 100.0%;">Lucknow</div>`)[0];
popup_c7afc10519aa482a977a5b309e2aacff.setContent(html_51b91baaa87f4ac594edc72bb3e1a351);
circle_marker_dfca62f7e51745deb3d8cb865abfd8ad.bindPopup(popup_c7afc10519aa482a977a5b309e2aacff)
;
var circle_marker_67dfcf37e5954c0cae499b68fc038f44 = L.circleMarker(
[21.157050000000027, 79.08217000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d5864fe99b1a459aa7c781a2518b056b = L.popup({"maxWidth": "100%"});
var html_609734b1a9664edd910fabfa94b38b67 = $(`<div id="html_609734b1a9664edd910fabfa94b38b67" style="width: 100.0%; height: 100.0%;">Nagpur</div>`)[0];
popup_d5864fe99b1a459aa7c781a2518b056b.setContent(html_609734b1a9664edd910fabfa94b38b67);
circle_marker_67dfcf37e5954c0cae499b68fc038f44.bindPopup(popup_d5864fe99b1a459aa7c781a2518b056b)
;
var circle_marker_b6b48fae144e4fa1919e04f9bfbc8515 = L.circleMarker(
[28.662490000000048, 77.43777000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_be0141f6a3044a628d09457c301b63f2 = L.popup({"maxWidth": "100%"});
var html_b3ceceea20864254a981efb57d244442 = $(`<div id="html_b3ceceea20864254a981efb57d244442" style="width: 100.0%; height: 100.0%;">Ghaziabad</div>`)[0];
popup_be0141f6a3044a628d09457c301b63f2.setContent(html_b3ceceea20864254a981efb57d244442);
circle_marker_b6b48fae144e4fa1919e04f9bfbc8515.bindPopup(popup_be0141f6a3044a628d09457c301b63f2)
;
var circle_marker_6dbaeaf1f4be43cb8225e0c5a3f5b003 = L.circleMarker(
[22.716220000000078, 75.86512000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_8804976c77ca4c0ea18d14fadf92c60e = L.popup({"maxWidth": "100%"});
var html_8c47409e95334a96b271f11a75fdbb1e = $(`<div id="html_8c47409e95334a96b271f11a75fdbb1e" style="width: 100.0%; height: 100.0%;">Indore</div>`)[0];
popup_8804976c77ca4c0ea18d14fadf92c60e.setContent(html_8c47409e95334a96b271f11a75fdbb1e);
circle_marker_6dbaeaf1f4be43cb8225e0c5a3f5b003.bindPopup(popup_8804976c77ca4c0ea18d14fadf92c60e)
;
var circle_marker_8a2d3a0088224848a757d1d18ee6e98a = L.circleMarker(
[10.994160000000022, 76.96629000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_ac9f98d0949f47dc95747bd9b3e8670f = L.popup({"maxWidth": "100%"});
var html_777586426def473a8510d166bed23be2 = $(`<div id="html_777586426def473a8510d166bed23be2" style="width: 100.0%; height: 100.0%;">Coimbatore</div>`)[0];
popup_ac9f98d0949f47dc95747bd9b3e8670f.setContent(html_777586426def473a8510d166bed23be2);
circle_marker_8a2d3a0088224848a757d1d18ee6e98a.bindPopup(popup_ac9f98d0949f47dc95747bd9b3e8670f)
;
var circle_marker_4046bc29254240adb700d5fbd17395c2 = L.circleMarker(
[9.936010000000067, 76.26142000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_ad8f744df3c54fae8279b977dd7fd6d6 = L.popup({"maxWidth": "100%"});
var html_27a56022d4d648b78772ff8c175ecd16 = $(`<div id="html_27a56022d4d648b78772ff8c175ecd16" style="width: 100.0%; height: 100.0%;">Kochi</div>`)[0];
popup_ad8f744df3c54fae8279b977dd7fd6d6.setContent(html_27a56022d4d648b78772ff8c175ecd16);
circle_marker_4046bc29254240adb700d5fbd17395c2.bindPopup(popup_ad8f744df3c54fae8279b977dd7fd6d6)
;
var circle_marker_fd2de4e27f9544639c90b9f9a98f8f05 = L.circleMarker(
[25.601290000000063, 85.13751000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_96384fa9916a4d818052cfbf73ba2395 = L.popup({"maxWidth": "100%"});
var html_9834c4e7aede428fa01316170c20eee1 = $(`<div id="html_9834c4e7aede428fa01316170c20eee1" style="width: 100.0%; height: 100.0%;">Patna</div>`)[0];
popup_96384fa9916a4d818052cfbf73ba2395.setContent(html_9834c4e7aede428fa01316170c20eee1);
circle_marker_fd2de4e27f9544639c90b9f9a98f8f05.bindPopup(popup_96384fa9916a4d818052cfbf73ba2395)
;
var circle_marker_10c73515328446c2b8f546ff7b2d9f2d = L.circleMarker(
[11.25881000000004, 75.78084000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_79c9c625ca504442be2f92f5fd7e9dd3 = L.popup({"maxWidth": "100%"});
var html_40d49e5dbe424923a935dd7b0f6432d4 = $(`<div id="html_40d49e5dbe424923a935dd7b0f6432d4" style="width: 100.0%; height: 100.0%;">Kozhikode</div>`)[0];
popup_79c9c625ca504442be2f92f5fd7e9dd3.setContent(html_40d49e5dbe424923a935dd7b0f6432d4);
circle_marker_10c73515328446c2b8f546ff7b2d9f2d.bindPopup(popup_79c9c625ca504442be2f92f5fd7e9dd3)
;
var circle_marker_ce97aacbac424b40b8672343bf999ff7 = L.circleMarker(
[23.26466000000005, 77.40518000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_f6d954ed88034e9ab0224ede24e72c56 = L.popup({"maxWidth": "100%"});
var html_32999e74c71f4f6cb764d9ee009f3af5 = $(`<div id="html_32999e74c71f4f6cb764d9ee009f3af5" style="width: 100.0%; height: 100.0%;">Bhopal</div>`)[0];
popup_f6d954ed88034e9ab0224ede24e72c56.setContent(html_32999e74c71f4f6cb764d9ee009f3af5);
circle_marker_ce97aacbac424b40b8672343bf999ff7.bindPopup(popup_f6d954ed88034e9ab0224ede24e72c56)
;
var circle_marker_e195f52957674791b02c595ad48233ba = L.circleMarker(
[10.510820000000024, 76.21121000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d11f80ad207e4ccca604c60ec6cfa347 = L.popup({"maxWidth": "100%"});
var html_aee622c428a6474c951fb1f3abf1ebde = $(`<div id="html_aee622c428a6474c951fb1f3abf1ebde" style="width: 100.0%; height: 100.0%;">Thrissur</div>`)[0];
popup_d11f80ad207e4ccca604c60ec6cfa347.setContent(html_aee622c428a6474c951fb1f3abf1ebde);
circle_marker_e195f52957674791b02c595ad48233ba.bindPopup(popup_d11f80ad207e4ccca604c60ec6cfa347)
;
var circle_marker_29d272a2842d45ec9c47a228ed9a4000 = L.circleMarker(
[22.30946000000006, 73.17993000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_16da3e8605e94b65ab800854ae40745a = L.popup({"maxWidth": "100%"});
var html_1ffe640325684d01953315d963c2ed46 = $(`<div id="html_1ffe640325684d01953315d963c2ed46" style="width: 100.0%; height: 100.0%;">Vadodara</div>`)[0];
popup_16da3e8605e94b65ab800854ae40745a.setContent(html_1ffe640325684d01953315d963c2ed46);
circle_marker_29d272a2842d45ec9c47a228ed9a4000.bindPopup(popup_16da3e8605e94b65ab800854ae40745a)
;
var circle_marker_0fee5aeac7cc41188a19e64048f0fb78 = L.circleMarker(
[27.192170000000033, 78.00007000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d5a8ab5ea6e34de8bd89cab641d1a21d = L.popup({"maxWidth": "100%"});
var html_edd361fb19bd42b89ba4d6c670efe94f = $(`<div id="html_edd361fb19bd42b89ba4d6c670efe94f" style="width: 100.0%; height: 100.0%;">Agra</div>`)[0];
popup_d5a8ab5ea6e34de8bd89cab641d1a21d.setContent(html_edd361fb19bd42b89ba4d6c670efe94f);
circle_marker_0fee5aeac7cc41188a19e64048f0fb78.bindPopup(popup_d5a8ab5ea6e34de8bd89cab641d1a21d)
;
var circle_marker_57ae3414369b4dc09204969478cb5015 = L.circleMarker(
[17.719840000000033, 83.26278000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_7a8dc8bee7cc4ba48427a83bb3fa2361 = L.popup({"maxWidth": "100%"});
var html_1b2c329ef1db42e790b306b3112e944f = $(`<div id="html_1b2c329ef1db42e790b306b3112e944f" style="width: 100.0%; height: 100.0%;">Visakhapatnam</div>`)[0];
popup_7a8dc8bee7cc4ba48427a83bb3fa2361.setContent(html_1b2c329ef1db42e790b306b3112e944f);
circle_marker_57ae3414369b4dc09204969478cb5015.bindPopup(popup_7a8dc8bee7cc4ba48427a83bb3fa2361)
;
var circle_marker_fc64ad3906f640698b2474d9e44dea2e = L.circleMarker(
[11.042850000000044, 76.08037000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_fb907f949e7a48039a4d3f130f34f2cc = L.popup({"maxWidth": "100%"});
var html_75644f1b91074d73b145179f99da0cb5 = $(`<div id="html_75644f1b91074d73b145179f99da0cb5" style="width: 100.0%; height: 100.0%;">Malappuram</div>`)[0];
popup_fb907f949e7a48039a4d3f130f34f2cc.setContent(html_75644f1b91074d73b145179f99da0cb5);
circle_marker_fc64ad3906f640698b2474d9e44dea2e.bindPopup(popup_fb907f949e7a48039a4d3f130f34f2cc)
;
var circle_marker_89df9d5f5adb4f6a99597650bad0b28e = L.circleMarker(
[8.505190000000027, 76.95139000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_ab4c05d792af46b7aefb3b638acf0cee = L.popup({"maxWidth": "100%"});
var html_158a5b6eaaa842499b7f9813cea8a243 = $(`<div id="html_158a5b6eaaa842499b7f9813cea8a243" style="width: 100.0%; height: 100.0%;">Thiruvananthapuram</div>`)[0];
popup_ab4c05d792af46b7aefb3b638acf0cee.setContent(html_158a5b6eaaa842499b7f9813cea8a243);
circle_marker_89df9d5f5adb4f6a99597650bad0b28e.bindPopup(popup_ab4c05d792af46b7aefb3b638acf0cee)
;
var circle_marker_5adde10a8dbf4025adb8deec716b5f50 = L.circleMarker(
[11.874720000000025, 75.37518000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_5bd360afaaae4887be1c001c8b170c51 = L.popup({"maxWidth": "100%"});
var html_ebd6dee6827146b1ab16672618875add = $(`<div id="html_ebd6dee6827146b1ab16672618875add" style="width: 100.0%; height: 100.0%;">Kannur</div>`)[0];
popup_5bd360afaaae4887be1c001c8b170c51.setContent(html_ebd6dee6827146b1ab16672618875add);
circle_marker_5adde10a8dbf4025adb8deec716b5f50.bindPopup(popup_5bd360afaaae4887be1c001c8b170c51)
;
var circle_marker_3d455561ad1a491892a2327aa611572f = L.circleMarker(
[30.907250000000033, 75.84919000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_b11f948362144981b0a4d32b027711b6 = L.popup({"maxWidth": "100%"});
var html_26088aa95c6c4257b5e8e298870eb72e = $(`<div id="html_26088aa95c6c4257b5e8e298870eb72e" style="width: 100.0%; height: 100.0%;">Ludhiana</div>`)[0];
popup_b11f948362144981b0a4d32b027711b6.setContent(html_26088aa95c6c4257b5e8e298870eb72e);
circle_marker_3d455561ad1a491892a2327aa611572f.bindPopup(popup_b11f948362144981b0a4d32b027711b6)
;
var circle_marker_2c5478ac25744a12833c43ab15949b10 = L.circleMarker(
[19.995030000000042, 73.79647000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_0a4361977ef2459e8857f646706a6add = L.popup({"maxWidth": "100%"});
var html_9a764e1b082346f88cb305d8e865cf86 = $(`<div id="html_9a764e1b082346f88cb305d8e865cf86" style="width: 100.0%; height: 100.0%;">Nashik</div>`)[0];
popup_0a4361977ef2459e8857f646706a6add.setContent(html_9a764e1b082346f88cb305d8e865cf86);
circle_marker_2c5478ac25744a12833c43ab15949b10.bindPopup(popup_0a4361977ef2459e8857f646706a6add)
;
var circle_marker_2e7898644f85414ba49f8d689b55128c = L.circleMarker(
[16.502560000000074, 80.63977000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_a2be9d0558e34f7bbfe0a11068539d9b = L.popup({"maxWidth": "100%"});
var html_25a0f1f9eb4d4b509d6a728d85eda8a2 = $(`<div id="html_25a0f1f9eb4d4b509d6a728d85eda8a2" style="width: 100.0%; height: 100.0%;">Vijayawada</div>`)[0];
popup_a2be9d0558e34f7bbfe0a11068539d9b.setContent(html_25a0f1f9eb4d4b509d6a728d85eda8a2);
circle_marker_2e7898644f85414ba49f8d689b55128c.bindPopup(popup_a2be9d0558e34f7bbfe0a11068539d9b)
;
var circle_marker_701eae3b40824d2193d373778aa6c51b = L.circleMarker(
[9.92417000000006, 78.12416000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_6c1f974dd4c04afebb37af763a0a4e4c = L.popup({"maxWidth": "100%"});
var html_eb09fae7baf04d94b6eede657eb234f2 = $(`<div id="html_eb09fae7baf04d94b6eede657eb234f2" style="width: 100.0%; height: 100.0%;">Madurai</div>`)[0];
popup_6c1f974dd4c04afebb37af763a0a4e4c.setContent(html_eb09fae7baf04d94b6eede657eb234f2);
circle_marker_701eae3b40824d2193d373778aa6c51b.bindPopup(popup_6c1f974dd4c04afebb37af763a0a4e4c)
;
var circle_marker_1d87c85a21434a639df325362830b634 = L.circleMarker(
[25.332890000000077, 82.99654000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_bba9269846bb4cc3b0c5c21f213baa00 = L.popup({"maxWidth": "100%"});
var html_d53710a52df041e5a5158cedab36267a = $(`<div id="html_d53710a52df041e5a5158cedab36267a" style="width: 100.0%; height: 100.0%;">Varanasi</div>`)[0];
popup_bba9269846bb4cc3b0c5c21f213baa00.setContent(html_d53710a52df041e5a5158cedab36267a);
circle_marker_1d87c85a21434a639df325362830b634.bindPopup(popup_bba9269846bb4cc3b0c5c21f213baa00)
;
var circle_marker_55cf7c4fba6e414b86e3c9a40cc061c0 = L.circleMarker(
[28.998600000000067, 77.70442000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_c03d7f26ad1f40d9993fb354810f054c = L.popup({"maxWidth": "100%"});
var html_0d6c666e60bb4241941e33427dd46fd9 = $(`<div id="html_0d6c666e60bb4241941e33427dd46fd9" style="width: 100.0%; height: 100.0%;">Meerut</div>`)[0];
popup_c03d7f26ad1f40d9993fb354810f054c.setContent(html_0d6c666e60bb4241941e33427dd46fd9);
circle_marker_55cf7c4fba6e414b86e3c9a40cc061c0.bindPopup(popup_c03d7f26ad1f40d9993fb354810f054c)
;
var circle_marker_031f9becbf9c4661b1fa508d66fec78c = L.circleMarker(
[28.39247000000006, 77.31276000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d4347397df5e47a1b4e3dfe33cb4fd56 = L.popup({"maxWidth": "100%"});
var html_dead609939f84eaeb70e6c73f12af828 = $(`<div id="html_dead609939f84eaeb70e6c73f12af828" style="width: 100.0%; height: 100.0%;">Faridabad</div>`)[0];
popup_d4347397df5e47a1b4e3dfe33cb4fd56.setContent(html_dead609939f84eaeb70e6c73f12af828);
circle_marker_031f9becbf9c4661b1fa508d66fec78c.bindPopup(popup_d4347397df5e47a1b4e3dfe33cb4fd56)
;
var circle_marker_bfc291d6d35248faa2be3b8530e2a5b7 = L.circleMarker(
[22.300000000000068, 70.78333000000003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_bb7202e880b842cdb99eec87d6164128 = L.popup({"maxWidth": "100%"});
var html_c4d17fcfb8684d60acd84ee441733844 = $(`<div id="html_c4d17fcfb8684d60acd84ee441733844" style="width: 100.0%; height: 100.0%;">Rajkot</div>`)[0];
popup_bb7202e880b842cdb99eec87d6164128.setContent(html_c4d17fcfb8684d60acd84ee441733844);
circle_marker_bfc291d6d35248faa2be3b8530e2a5b7.bindPopup(popup_bb7202e880b842cdb99eec87d6164128)
;
var circle_marker_67d6744a3cdb413fa30cbd61dcd97c70 = L.circleMarker(
[22.78150000000005, 86.21215000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_e99860a177d9429d851884cf82c81ffb = L.popup({"maxWidth": "100%"});
var html_51ec05ab922540ad95a8e59de573d125 = $(`<div id="html_51ec05ab922540ad95a8e59de573d125" style="width: 100.0%; height: 100.0%;">Jamshedpur</div>`)[0];
popup_e99860a177d9429d851884cf82c81ffb.setContent(html_51ec05ab922540ad95a8e59de573d125);
circle_marker_67d6744a3cdb413fa30cbd61dcd97c70.bindPopup(popup_e99860a177d9429d851884cf82c81ffb)
;
var circle_marker_e94e63416fa24fe5ae67362e2a78194e = L.circleMarker(
[34.084430000000054, 74.79906000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_4165dca9d04d4793bcd5a5017e57db0b = L.popup({"maxWidth": "100%"});
var html_bcd5a514336847ebb19e71dad1f55b2c = $(`<div id="html_bcd5a514336847ebb19e71dad1f55b2c" style="width: 100.0%; height: 100.0%;">Srinagar</div>`)[0];
popup_4165dca9d04d4793bcd5a5017e57db0b.setContent(html_bcd5a514336847ebb19e71dad1f55b2c);
circle_marker_e94e63416fa24fe5ae67362e2a78194e.bindPopup(popup_4165dca9d04d4793bcd5a5017e57db0b)
;
var circle_marker_d73626702c95421894df7171a4279d9f = L.circleMarker(
[23.174180000000035, 79.93136000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_0771bbde7da7478e86a0709fed686ec4 = L.popup({"maxWidth": "100%"});
var html_9b78afdcda8b471997382c585a6960c0 = $(`<div id="html_9b78afdcda8b471997382c585a6960c0" style="width: 100.0%; height: 100.0%;">Jabalpur</div>`)[0];
popup_0771bbde7da7478e86a0709fed686ec4.setContent(html_9b78afdcda8b471997382c585a6960c0);
circle_marker_d73626702c95421894df7171a4279d9f.bindPopup(popup_0771bbde7da7478e86a0709fed686ec4)
;
var circle_marker_cf55e6cd8ccf40c28e8d22a7992d7bc9 = L.circleMarker(
[23.68432000000007, 86.97938000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_ee913277ce8c491f8c5a0eb828b54f03 = L.popup({"maxWidth": "100%"});
var html_1d9fa423efd44a51ba1697efcaca2aae = $(`<div id="html_1d9fa423efd44a51ba1697efcaca2aae" style="width: 100.0%; height: 100.0%;">Asansol</div>`)[0];
popup_ee913277ce8c491f8c5a0eb828b54f03.setContent(html_1d9fa423efd44a51ba1697efcaca2aae);
circle_marker_cf55e6cd8ccf40c28e8d22a7992d7bc9.bindPopup(popup_ee913277ce8c491f8c5a0eb828b54f03)
;
var circle_marker_f6df06b712344248b966ecc3f16fd754 = L.circleMarker(
[19.20505000000003, 72.95530000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_5b2bffea0c5e4b35bd381023e4ce613e = L.popup({"maxWidth": "100%"});
var html_e187ab8bc7c44925baf184634226003b = $(`<div id="html_e187ab8bc7c44925baf184634226003b" style="width: 100.0%; height: 100.0%;">Vasai-Virar</div>`)[0];
popup_5b2bffea0c5e4b35bd381023e4ce613e.setContent(html_e187ab8bc7c44925baf184634226003b);
circle_marker_f6df06b712344248b966ecc3f16fd754.bindPopup(popup_5b2bffea0c5e4b35bd381023e4ce613e)
;
var circle_marker_3ad779d2f6fb4dafbcf3c5b267ba94db = L.circleMarker(
[25.436090000000036, 81.84718000000004],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_b758092b839c480990583808d1a0da15 = L.popup({"maxWidth": "100%"});
var html_c53f357adbd4431ea37c89d4ef6c63d7 = $(`<div id="html_c53f357adbd4431ea37c89d4ef6c63d7" style="width: 100.0%; height: 100.0%;">Allahabad</div>`)[0];
popup_b758092b839c480990583808d1a0da15.setContent(html_c53f357adbd4431ea37c89d4ef6c63d7);
circle_marker_3ad779d2f6fb4dafbcf3c5b267ba94db.bindPopup(popup_b758092b839c480990583808d1a0da15)
;
var circle_marker_2bd0fce0e35548bd9ded239ab61140b2 = L.circleMarker(
[23.795930000000055, 86.43060000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_3a0ecf317758486799f56f6da4043771 = L.popup({"maxWidth": "100%"});
var html_1dbbdbdbde204775b095b2a168d6db4c = $(`<div id="html_1dbbdbdbde204775b095b2a168d6db4c" style="width: 100.0%; height: 100.0%;">Dhanbad</div>`)[0];
popup_3a0ecf317758486799f56f6da4043771.setContent(html_1dbbdbdbde204775b095b2a168d6db4c);
circle_marker_2bd0fce0e35548bd9ded239ab61140b2.bindPopup(popup_3a0ecf317758486799f56f6da4043771)
;
var circle_marker_6374dd0c8e874c909988569449504a76 = L.circleMarker(
[19.870100000000036, 75.34602000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_7b4f86c625e04dbba098f64c93aabb6f = L.popup({"maxWidth": "100%"});
var html_7ecacdde7bd04ea5bd70cabc2913eff7 = $(`<div id="html_7ecacdde7bd04ea5bd70cabc2913eff7" style="width: 100.0%; height: 100.0%;">Aurangabad</div>`)[0];
popup_7b4f86c625e04dbba098f64c93aabb6f.setContent(html_7ecacdde7bd04ea5bd70cabc2913eff7);
circle_marker_6374dd0c8e874c909988569449504a76.bindPopup(popup_7b4f86c625e04dbba098f64c93aabb6f)
;
var circle_marker_a1b8106e160f41a98b03c5caa4a126c7 = L.circleMarker(
[31.633470000000045, 74.87507000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_61f15260ce19437791f80ae6ac8d25a5 = L.popup({"maxWidth": "100%"});
var html_8f0e0850c576432bacc0c00a324816fb = $(`<div id="html_8f0e0850c576432bacc0c00a324816fb" style="width: 100.0%; height: 100.0%;">Amritsar</div>`)[0];
popup_61f15260ce19437791f80ae6ac8d25a5.setContent(html_8f0e0850c576432bacc0c00a324816fb);
circle_marker_a1b8106e160f41a98b03c5caa4a126c7.bindPopup(popup_61f15260ce19437791f80ae6ac8d25a5)
;
var circle_marker_b9f1180b38314b1e9e1998e76d8adf6a = L.circleMarker(
[26.266910000000053, 73.03052000000008],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_a44feb3c60db4d138402c029e57e4ce0 = L.popup({"maxWidth": "100%"});
var html_f6bcc5a0427748cc881c08fdf3dc410f = $(`<div id="html_f6bcc5a0427748cc881c08fdf3dc410f" style="width: 100.0%; height: 100.0%;">Jodhpur</div>`)[0];
popup_a44feb3c60db4d138402c029e57e4ce0.setContent(html_f6bcc5a0427748cc881c08fdf3dc410f);
circle_marker_b9f1180b38314b1e9e1998e76d8adf6a.bindPopup(popup_a44feb3c60db4d138402c029e57e4ce0)
;
var circle_marker_a2675c8386ff478d8b7161c639e051b6 = L.circleMarker(
[23.350600000000043, 85.31378000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_4d59343dc1f04317a6f362ae2702406b = L.popup({"maxWidth": "100%"});
var html_ae93d45741ab452b9afbb3b52d17839b = $(`<div id="html_ae93d45741ab452b9afbb3b52d17839b" style="width: 100.0%; height: 100.0%;">Ranchi</div>`)[0];
popup_4d59343dc1f04317a6f362ae2702406b.setContent(html_ae93d45741ab452b9afbb3b52d17839b);
circle_marker_a2675c8386ff478d8b7161c639e051b6.bindPopup(popup_4d59343dc1f04317a6f362ae2702406b)
;
var circle_marker_d40e6b9ff0c84812b0c45d3c2dbb979f = L.circleMarker(
[21.244020000000035, 81.63477000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_8c5f562b1c684159a5169a864ca2ef84 = L.popup({"maxWidth": "100%"});
var html_01a04bc0584c4297aeb0105a3c980057 = $(`<div id="html_01a04bc0584c4297aeb0105a3c980057" style="width: 100.0%; height: 100.0%;">Raipur</div>`)[0];
popup_8c5f562b1c684159a5169a864ca2ef84.setContent(html_01a04bc0584c4297aeb0105a3c980057);
circle_marker_d40e6b9ff0c84812b0c45d3c2dbb979f.bindPopup(popup_8c5f562b1c684159a5169a864ca2ef84)
;
var circle_marker_f2c031d76db744d49826431a9211b6a9 = L.circleMarker(
[8.88689000000005, 76.59228000000007],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_d08985f864114929ad6e4e05c913cd57 = L.popup({"maxWidth": "100%"});
var html_5d09ca71d4f348e6bf85925916b88622 = $(`<div id="html_5d09ca71d4f348e6bf85925916b88622" style="width: 100.0%; height: 100.0%;">Kollam</div>`)[0];
popup_d08985f864114929ad6e4e05c913cd57.setContent(html_5d09ca71d4f348e6bf85925916b88622);
circle_marker_f2c031d76db744d49826431a9211b6a9.bindPopup(popup_d08985f864114929ad6e4e05c913cd57)
;
var circle_marker_ccea35f7ec614ad5b7c8ae6eb6597b97 = L.circleMarker(
[26.220110000000034, 78.17620000000005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);
var popup_a73d6f8a42134b358bb57510c06392d7 = L.popup({"maxWidth": "100%"});
var html_140bf5b34ea44e689b05fa9ac254cf97 = $(`<div id="html_140bf5b34ea44e689b05fa9ac254cf97" style="width: 100.0%; height: 100.0%;">Gwalior</div>`)[0];
popup_a73d6f8a42134b358bb57510c06392d7.setContent(html_140bf5b34ea44e689b05fa9ac254cf97);
circle_marker_ccea35f7ec614ad5b7c8ae6eb6597b97.bindPopup(popup_a73d6f8a42134b358bb57510c06392d7)
;
var circle_marker_36bb83fe09754040a9e44fc6abffa901 = L.circleMarker(
[21.220270000000028, 81.38004000000006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3186cc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5f8b74a016cc4cf29c2a26f3eea1c608);