-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1401 lines (970 loc) · 41.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://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_2dbbde7a4ac24225affe95cc4751f4bb {
position: relative;
width: 743.0px;
height: 722.0px;
left: 3.0%;
top: 4.0%;
}
</style>
</head>
<body>
<h2 align="center" style="font-size:20px"><b>Coronavirus Total Confirmed Cases in India</b></h2>
<h4 align="center" style="font-size:16px"><i>Created by</i> NIKHIL</h4>
<h4 align="center" style="font-size:16px"><i>Powered by</i>
<a href="https://www.whitehatjr.com/">WhiteHat Jr</a>
</h4>
<div class="folium-map" id="map_2dbbde7a4ac24225affe95cc4751f4bb" ></div>
</body>
<script>
var bounds = null;
var map_2dbbde7a4ac24225affe95cc4751f4bb = L.map(
'map_2dbbde7a4ac24225affe95cc4751f4bb', {
center: [22.3511148, 78.6677428],
zoom: 4,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_61ae1883759b420a8a208a279ce0f4b8 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var circle_f3347d30e9c34e0193ae554fdb7cafb2 = L.circle(
[12.61123865, 92.83165406414926],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 294.52,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_aa1e1fc5e20b4ce39c5bce8030068a82 = L.popup({maxWidth: '100%'
});
var html_2d0c19347a5b411796f36452eee73f18 = $(`<div id="html_2d0c19347a5b411796f36452eee73f18" style="width: 100.0%; height: 100.0%;">Andaman and Nicobar Islands 7363 on 18/06/2021 21:22:30</div>`)[0];
popup_aa1e1fc5e20b4ce39c5bce8030068a82.setContent(html_2d0c19347a5b411796f36452eee73f18);
circle_f3347d30e9c34e0193ae554fdb7cafb2.bindPopup(popup_aa1e1fc5e20b4ce39c5bce8030068a82)
;
var circle_69588668030343e9936f4e4cf1fe99dd = L.circle(
[15.9240905, 80.1863809],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 73569.72,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_38254ff5153a4b0382f59f413450ec90 = L.popup({maxWidth: '100%'
});
var html_289dbfef57f94e49a3ef9585faf6ab5b = $(`<div id="html_289dbfef57f94e49a3ef9585faf6ab5b" style="width: 100.0%; height: 100.0%;">Andhra Pradesh 1839243 on 18/06/2021 18:21:30</div>`)[0];
popup_38254ff5153a4b0382f59f413450ec90.setContent(html_289dbfef57f94e49a3ef9585faf6ab5b);
circle_69588668030343e9936f4e4cf1fe99dd.bindPopup(popup_38254ff5153a4b0382f59f413450ec90)
;
var circle_0b98e83843a04b51ba57772a5dd9ec33 = L.circle(
[28.0937702, 94.5921326],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 1307.68,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_5533caf2f7464cb6b27ff1b47293bc80 = L.popup({maxWidth: '100%'
});
var html_5df3c38f6c4c483ab42fe26614260d69 = $(`<div id="html_5df3c38f6c4c483ab42fe26614260d69" style="width: 100.0%; height: 100.0%;">Arunachal Pradesh 32692 on 19/06/2021 02:15:32</div>`)[0];
popup_5533caf2f7464cb6b27ff1b47293bc80.setContent(html_5df3c38f6c4c483ab42fe26614260d69);
circle_0b98e83843a04b51ba57772a5dd9ec33.bindPopup(popup_5533caf2f7464cb6b27ff1b47293bc80)
;
var circle_f0afd9cdce2442b8bfe88b2aa90f7908 = L.circle(
[26.4073841, 93.2551303],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 19086.36,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_5f330df3148a4f828092ef420c0b4a97 = L.popup({maxWidth: '100%'
});
var html_6e65df6d590345e3a5bf9dd6369d041e = $(`<div id="html_6e65df6d590345e3a5bf9dd6369d041e" style="width: 100.0%; height: 100.0%;">Assam 477159 on 18/06/2021 21:22:31</div>`)[0];
popup_5f330df3148a4f828092ef420c0b4a97.setContent(html_6e65df6d590345e3a5bf9dd6369d041e);
circle_f0afd9cdce2442b8bfe88b2aa90f7908.bindPopup(popup_5f330df3148a4f828092ef420c0b4a97)
;
var circle_65255feae8df41bd995d33796338e638 = L.circle(
[25.6440845, 85.906508],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 28762.04,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_d31cda0bc4e54a5eb9bd7fcd6f073ff8 = L.popup({maxWidth: '100%'
});
var html_cf5066cabd89496f9ef287bd0859953b = $(`<div id="html_cf5066cabd89496f9ef287bd0859953b" style="width: 100.0%; height: 100.0%;">Bihar 719051 on 18/06/2021 20:39:31</div>`)[0];
popup_d31cda0bc4e54a5eb9bd7fcd6f073ff8.setContent(html_cf5066cabd89496f9ef287bd0859953b);
circle_65255feae8df41bd995d33796338e638.bindPopup(popup_d31cda0bc4e54a5eb9bd7fcd6f073ff8)
;
var circle_b70c807710234fb88d69d7e3f7c77ab4 = L.circle(
[30.7334421, 76.7797143],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 2454.32,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_dee750540ea346239b4809a26b308144 = L.popup({maxWidth: '100%'
});
var html_a7006f72d7044dbfb89fadcc4c41dbf6 = $(`<div id="html_a7006f72d7044dbfb89fadcc4c41dbf6" style="width: 100.0%; height: 100.0%;">Chandigarh 61358 on 18/06/2021 20:11:28</div>`)[0];
popup_dee750540ea346239b4809a26b308144.setContent(html_a7006f72d7044dbfb89fadcc4c41dbf6);
circle_b70c807710234fb88d69d7e3f7c77ab4.bindPopup(popup_dee750540ea346239b4809a26b308144)
;
var circle_3c6742a23d124c40b4ac56a70fd6791c = L.circle(
[21.6637359, 81.8406351],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 39593.76,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_ec97d540f97542d1b5f6fe5947384eba = L.popup({maxWidth: '100%'
});
var html_3c3b2f87a4bb403cb9ce1d5988b2fc94 = $(`<div id="html_3c3b2f87a4bb403cb9ce1d5988b2fc94" style="width: 100.0%; height: 100.0%;">Chhattisgarh 989844 on 18/06/2021 21:53:31</div>`)[0];
popup_ec97d540f97542d1b5f6fe5947384eba.setContent(html_3c3b2f87a4bb403cb9ce1d5988b2fc94);
circle_3c6742a23d124c40b4ac56a70fd6791c.bindPopup(popup_ec97d540f97542d1b5f6fe5947384eba)
;
var circle_7b7b92927068471188d5dc551b01044c = L.circle(
[20.718174949999998, 70.93238341010638],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 420.08,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_3215aff05b864256876454cfd7d2b980 = L.popup({maxWidth: '100%'
});
var html_9a0b4dfa667e457db87645d3783f8d1d = $(`<div id="html_9a0b4dfa667e457db87645d3783f8d1d" style="width: 100.0%; height: 100.0%;">Dadra and Nagar Haveli and Daman and Diu 10502 on 19/06/2021 00:54:34</div>`)[0];
popup_3215aff05b864256876454cfd7d2b980.setContent(html_9a0b4dfa667e457db87645d3783f8d1d);
circle_7b7b92927068471188d5dc551b01044c.bindPopup(popup_3215aff05b864256876454cfd7d2b980)
;
var circle_63e6a2a5c8fc4714830ac071fd63133b = L.circle(
[28.6517178, 77.2219388],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 57281.32,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_30ce970fb9d743fbab2dbb1e394eab2d = L.popup({maxWidth: '100%'
});
var html_9f52242111224d939b41d4ab7e022f23 = $(`<div id="html_9f52242111224d939b41d4ab7e022f23" style="width: 100.0%; height: 100.0%;">Delhi 1432033 on 18/06/2021 18:21:32</div>`)[0];
popup_30ce970fb9d743fbab2dbb1e394eab2d.setContent(html_9f52242111224d939b41d4ab7e022f23);
circle_63e6a2a5c8fc4714830ac071fd63133b.bindPopup(popup_30ce970fb9d743fbab2dbb1e394eab2d)
;
var circle_cffc479166ee4fb09c95f96c6345e0c8 = L.circle(
[15.3004543, 74.0855134],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6557.08,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_886e458e15c54c549cf10e12478a20e3 = L.popup({maxWidth: '100%'
});
var html_84b22e6d09184b4c930850600c498b4e = $(`<div id="html_84b22e6d09184b4c930850600c498b4e" style="width: 100.0%; height: 100.0%;">Goa 163927 on 18/06/2021 18:01:28</div>`)[0];
popup_886e458e15c54c549cf10e12478a20e3.setContent(html_84b22e6d09184b4c930850600c498b4e);
circle_cffc479166ee4fb09c95f96c6345e0c8.bindPopup(popup_886e458e15c54c549cf10e12478a20e3)
;
var circle_bee7054e4893419f885c0072d71f6415 = L.circle(
[22.41540825, 72.03149703699282],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 32876.84,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_ab7a3be042884bb2ab2fc113e69f7b18 = L.popup({maxWidth: '100%'
});
var html_a92e7fa737514073a83010db073d15fd = $(`<div id="html_a92e7fa737514073a83010db073d15fd" style="width: 100.0%; height: 100.0%;">Gujarat 821921 on 18/06/2021 21:51:32</div>`)[0];
popup_ab7a3be042884bb2ab2fc113e69f7b18.setContent(html_a92e7fa737514073a83010db073d15fd);
circle_bee7054e4893419f885c0072d71f6415.bindPopup(popup_ab7a3be042884bb2ab2fc113e69f7b18)
;
var circle_502e8b7d1b214784afca44b1cb298e6f = L.circle(
[29.0, 76.0],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 30681.88,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_8b2e188cef6f494c9f8eb62969e74793 = L.popup({maxWidth: '100%'
});
var html_c9549d0a3f9940288fded3fe255dbdc5 = $(`<div id="html_c9549d0a3f9940288fded3fe255dbdc5" style="width: 100.0%; height: 100.0%;">Haryana 767047 on 18/06/2021 21:22:33</div>`)[0];
popup_8b2e188cef6f494c9f8eb62969e74793.setContent(html_c9549d0a3f9940288fded3fe255dbdc5);
circle_502e8b7d1b214784afca44b1cb298e6f.bindPopup(popup_8b2e188cef6f494c9f8eb62969e74793)
;
var circle_9d04b445839f4c8bb362ffd883a28a2b = L.circle(
[31.81676015, 77.34932051968858],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 8001.72,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_c9c5229dac5c426ea0d672693e0b67cc = L.popup({maxWidth: '100%'
});
var html_cd3949659e354be29bdf085b2cb1d84f = $(`<div id="html_cd3949659e354be29bdf085b2cb1d84f" style="width: 100.0%; height: 100.0%;">Himachal Pradesh 200043 on 18/06/2021 19:41:32</div>`)[0];
popup_c9c5229dac5c426ea0d672693e0b67cc.setContent(html_cd3949659e354be29bdf085b2cb1d84f);
circle_9d04b445839f4c8bb362ffd883a28a2b.bindPopup(popup_c9c5229dac5c426ea0d672693e0b67cc)
;
var circle_bd8fc88c6bbc45a99c09e283332b314f = L.circle(
[33.6649297, 75.1629584],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 12427.52,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_b7827ff786f54369b2f045d9f79e2052 = L.popup({maxWidth: '100%'
});
var html_9fad8640d88e46169dd9fb3b2e3418b4 = $(`<div id="html_9fad8640d88e46169dd9fb3b2e3418b4" style="width: 100.0%; height: 100.0%;">Jammu and Kashmir 310688 on 18/06/2021 19:41:33</div>`)[0];
popup_b7827ff786f54369b2f045d9f79e2052.setContent(html_9fad8640d88e46169dd9fb3b2e3418b4);
circle_bd8fc88c6bbc45a99c09e283332b314f.bindPopup(popup_b7827ff786f54369b2f045d9f79e2052)
;
var circle_344f6321399542c2a922ede4e1681ad3 = L.circle(
[23.4559809, 85.2557301],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 13770.8,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_78b48ede0f9341deb096158e81eca8a4 = L.popup({maxWidth: '100%'
});
var html_1a668acb93c3436e9e1bedad72cabc36 = $(`<div id="html_1a668acb93c3436e9e1bedad72cabc36" style="width: 100.0%; height: 100.0%;">Jharkhand 344270 on 19/06/2021 01:11:32</div>`)[0];
popup_78b48ede0f9341deb096158e81eca8a4.setContent(html_1a668acb93c3436e9e1bedad72cabc36);
circle_344f6321399542c2a922ede4e1681ad3.bindPopup(popup_78b48ede0f9341deb096158e81eca8a4)
;
var circle_94584d27594c484b888c58b7bbe0110b = L.circle(
[14.5203896, 75.7223521],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 111844.84,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_50f1bbbf582a49f0bdbc43e9a4cb2926 = L.popup({maxWidth: '100%'
});
var html_fa6f5684e0a34c0db7af2a4779c07379 = $(`<div id="html_fa6f5684e0a34c0db7af2a4779c07379" style="width: 100.0%; height: 100.0%;">Karnataka 2796121 on 18/06/2021 20:11:29</div>`)[0];
popup_50f1bbbf582a49f0bdbc43e9a4cb2926.setContent(html_fa6f5684e0a34c0db7af2a4779c07379);
circle_94584d27594c484b888c58b7bbe0110b.bindPopup(popup_50f1bbbf582a49f0bdbc43e9a4cb2926)
;
var circle_986bf23d31414617b1e74cc9dd944c24 = L.circle(
[10.3528744, 76.5120396],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 111412.2,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_47d4b6d4239846338eef64a7610e67dc = L.popup({maxWidth: '100%'
});
var html_84dba55a855e43a6915cb1c51d377feb = $(`<div id="html_84dba55a855e43a6915cb1c51d377feb" style="width: 100.0%; height: 100.0%;">Kerala 2785305 on 18/06/2021 20:56:31</div>`)[0];
popup_47d4b6d4239846338eef64a7610e67dc.setContent(html_84dba55a855e43a6915cb1c51d377feb);
circle_986bf23d31414617b1e74cc9dd944c24.bindPopup(popup_47d4b6d4239846338eef64a7610e67dc)
;
var circle_d5afd077229848c7bc146899b1c93d44 = L.circle(
[33.9456407, 77.6568576],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 789.2,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_2575ded8d1224026b183316cd849f00e = L.popup({maxWidth: '100%'
});
var html_cc11380fe21642a39b348236a2c2524d = $(`<div id="html_cc11380fe21642a39b348236a2c2524d" style="width: 100.0%; height: 100.0%;">Ladakh 19730 on 19/06/2021 10:11:47</div>`)[0];
popup_2575ded8d1224026b183316cd849f00e.setContent(html_cc11380fe21642a39b348236a2c2524d);
circle_d5afd077229848c7bc146899b1c93d44.bindPopup(popup_2575ded8d1224026b183316cd849f00e)
;
var circle_d820ac12f017449288795ddc7a46cdb0 = L.circle(
[10.8132489, 73.6804620941119],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 375.68,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_27db88cc8c394b30a9cc6efd937db960 = L.popup({maxWidth: '100%'
});
var html_1b7b7cd5d1324dd599cb41ac2b32f303 = $(`<div id="html_1b7b7cd5d1324dd599cb41ac2b32f303" style="width: 100.0%; height: 100.0%;">Lakshadweep 9392 on 18/06/2021 21:22:34</div>`)[0];
popup_27db88cc8c394b30a9cc6efd937db960.setContent(html_1b7b7cd5d1324dd599cb41ac2b32f303);
circle_d820ac12f017449288795ddc7a46cdb0.bindPopup(popup_27db88cc8c394b30a9cc6efd937db960)
;
var circle_ff1ec81426d14ec0befdd9abc5f8b808 = L.circle(
[23.8143419, 77.5340719],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 31562.56,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_fba04c312085449a85209ba1c1a94641 = L.popup({maxWidth: '100%'
});
var html_3bfe759aa5b94199b463554fd4f53d9c = $(`<div id="html_3bfe759aa5b94199b463554fd4f53d9c" style="width: 100.0%; height: 100.0%;">Madhya Pradesh 789064 on 18/06/2021 20:18:34</div>`)[0];
popup_fba04c312085449a85209ba1c1a94641.setContent(html_3bfe759aa5b94199b463554fd4f53d9c);
circle_ff1ec81426d14ec0befdd9abc5f8b808.bindPopup(popup_fba04c312085449a85209ba1c1a94641)
;
var circle_661381f1efeb4cb9b7286b86674337c6 = L.circle(
[18.9068356, 75.6741579],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 238180.32,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_843e04148fb14ca0b38c150f85fa8d38 = L.popup({maxWidth: '100%'
});
var html_a0dec7390dfb4528960e29c193040175 = $(`<div id="html_a0dec7390dfb4528960e29c193040175" style="width: 100.0%; height: 100.0%;">Maharashtra 5954508 on 18/06/2021 20:39:33</div>`)[0];
popup_843e04148fb14ca0b38c150f85fa8d38.setContent(html_a0dec7390dfb4528960e29c193040175);
circle_661381f1efeb4cb9b7286b86674337c6.bindPopup(popup_843e04148fb14ca0b38c150f85fa8d38)
;
var circle_0f5719f7aab4423ebc3962ffa0272983 = L.circle(
[24.7208818, 93.9229386],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 2517.84,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_16efe058ce06461cbf05ec840d4db175 = L.popup({maxWidth: '100%'
});
var html_d62a0396ad964ea2817cf1a8a737de80 = $(`<div id="html_d62a0396ad964ea2817cf1a8a737de80" style="width: 100.0%; height: 100.0%;">Manipur 62946 on 18/06/2021 19:13:33</div>`)[0];
popup_16efe058ce06461cbf05ec840d4db175.setContent(html_d62a0396ad964ea2817cf1a8a737de80);
circle_0f5719f7aab4423ebc3962ffa0272983.bindPopup(popup_16efe058ce06461cbf05ec840d4db175)
;
var circle_1f2fcc771f9b4a17bc19e4bf057fbe31 = L.circle(
[25.5379432, 91.2999102],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 1775.28,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_4880d1d1367f4d3b8865a35438b40b14 = L.popup({maxWidth: '100%'
});
var html_7e881794d201485b999d8510cc1df9c8 = $(`<div id="html_7e881794d201485b999d8510cc1df9c8" style="width: 100.0%; height: 100.0%;">Meghalaya 44382 on 18/06/2021 17:50:29</div>`)[0];
popup_4880d1d1367f4d3b8865a35438b40b14.setContent(html_7e881794d201485b999d8510cc1df9c8);
circle_1f2fcc771f9b4a17bc19e4bf057fbe31.bindPopup(popup_4880d1d1367f4d3b8865a35438b40b14)
;
var circle_97f0ccc6ee1f43af9ab913c40e4b4771 = L.circle(
[23.2146169, 92.8687612],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 657.48,
"stroke": true,
"weight": 3
}
)
.addTo(map_2dbbde7a4ac24225affe95cc4751f4bb);
var popup_5b0ed6ec6a1e4c7f939b3a9bacfe38f0 = L.popup({maxWidth: '100%'
});
var html_5a83efb572af47da8f27893dc406f09d = $(`<div id="html_5a83efb572af47da8f27893dc406f09d" style="width: 100.0%; height: 100.0%;">Mizoram 16437 on 19/06/2021 02:24:30</div>`)[0];
popup_5b0ed6ec6a1e4c7f939b3a9bacfe38f0.setContent(html_5a83efb572af47da8f27893dc406f09d);
circle_97f0ccc6ee1f43af9ab913c40e4b4771.bindPopup(popup_5b0ed6ec6a1e4c7f939b3a9bacfe38f0)
;
var circle_c9cdc7aa22144630bf8248258fe79853 = L.circle(
[26.1630556, 94.5884911],
{
"bubblingMouseEvents": true,
"color": "green",
"dashArray": null,
"dashOffset": null,
"fill": true,
"fillColor": "green",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 963.88,