-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
10505 lines (4525 loc) · 363 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>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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>
<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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_e0116c0f56bd1bc9eb60ad6a942ab305 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_e0116c0f56bd1bc9eb60ad6a942ab305" ></div>
</body>
<script>
var map_e0116c0f56bd1bc9eb60ad6a942ab305 = L.map(
"map_e0116c0f56bd1bc9eb60ad6a942ab305",
{
center: [21.03889110402414, 79.60549100985915],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_87cd3fab47e23e72145212d74f166414 = 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_e0116c0f56bd1bc9eb60ad6a942ab305);
var marker_2ca8a085448c9d364743e4f7aef7e5ec = L.marker(
[24.9374288, 75.622309],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_094b9128514a41fed9cab8b076e915fd = L.popup({"maxWidth": "100%"});
var html_ff93bcdb4e48ac96039c07b18aec3089 = $(`<div id="html_ff93bcdb4e48ac96039c07b18aec3089" style="width: 100.0%; height: 100.0%;">7JPQWJPC+XWF5</div>`)[0];
popup_094b9128514a41fed9cab8b076e915fd.setContent(html_ff93bcdb4e48ac96039c07b18aec3089);
marker_2ca8a085448c9d364743e4f7aef7e5ec.bindPopup(popup_094b9128514a41fed9cab8b076e915fd)
;
var marker_a33c4677df497b7b27ca5b9596b31d9c = L.marker(
[27.2298746, 88.4932513],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_6ec4a7ec1f2ff7fef78e40187c9d77c6 = L.popup({"maxWidth": "100%"});
var html_5e7e26eb86d9c37c2145a46759555200 = $(`<div id="html_5e7e26eb86d9c37c2145a46759555200" style="width: 100.0%; height: 100.0%;">7MVC6FHV+W8RR</div>`)[0];
popup_6ec4a7ec1f2ff7fef78e40187c9d77c6.setContent(html_5e7e26eb86d9c37c2145a46759555200);
marker_a33c4677df497b7b27ca5b9596b31d9c.bindPopup(popup_6ec4a7ec1f2ff7fef78e40187c9d77c6)
;
var marker_abbe51fb76de653767e60f59d46dd0bf = L.marker(
[22.5676514, 84.8111658],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_5ca5695e182ece7090c377f1be968708 = L.popup({"maxWidth": "100%"});
var html_aa912b9f6cdff24ed091a77323971547 = $(`<div id="html_aa912b9f6cdff24ed091a77323971547" style="width: 100.0%; height: 100.0%;">7MJ6HR96+3F73</div>`)[0];
popup_5ca5695e182ece7090c377f1be968708.setContent(html_aa912b9f6cdff24ed091a77323971547);
marker_abbe51fb76de653767e60f59d46dd0bf.bindPopup(popup_5ca5695e182ece7090c377f1be968708)
;
var marker_f108206061a2e3e6697134eaa7b3b6ad = L.marker(
[25.9948393, 84.2756722],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_a1d075b68f8dfa214fbd4378f62c1125 = L.popup({"maxWidth": "100%"});
var html_b4e6db759024c44f4fe1f7b8192862ae = $(`<div id="html_b4e6db759024c44f4fe1f7b8192862ae" style="width: 100.0%; height: 100.0%;">7MQ6X7VG+W7MG</div>`)[0];
popup_a1d075b68f8dfa214fbd4378f62c1125.setContent(html_b4e6db759024c44f4fe1f7b8192862ae);
marker_f108206061a2e3e6697134eaa7b3b6ad.bindPopup(popup_a1d075b68f8dfa214fbd4378f62c1125)
;
var marker_0bc804bb59aa525d53860cd883a82ebb = L.marker(
[21.2733966, 86.5602614],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_c1a57cd860e9c9a6f3507b90642a39a9 = L.popup({"maxWidth": "100%"});
var html_81731adbe02c1aef3f9356b6797efee8 = $(`<div id="html_81731adbe02c1aef3f9356b6797efee8" style="width: 100.0%; height: 100.0%;">7MH87HF6+942V</div>`)[0];
popup_c1a57cd860e9c9a6f3507b90642a39a9.setContent(html_81731adbe02c1aef3f9356b6797efee8);
marker_0bc804bb59aa525d53860cd883a82ebb.bindPopup(popup_c1a57cd860e9c9a6f3507b90642a39a9)
;
var marker_08cc922ef3273b1fdc4db7122340d356 = L.marker(
[24.7689339, 85.0035842],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_8af48d4180137df5bac592062a19277f = L.popup({"maxWidth": "100%"});
var html_fc39cfe36ed36ecb0d9858eb288cadfe = $(`<div id="html_fc39cfe36ed36ecb0d9858eb288cadfe" style="width: 100.0%; height: 100.0%;">7MP7Q293+HCG8</div>`)[0];
popup_8af48d4180137df5bac592062a19277f.setContent(html_fc39cfe36ed36ecb0d9858eb288cadfe);
marker_08cc922ef3273b1fdc4db7122340d356.bindPopup(popup_8af48d4180137df5bac592062a19277f)
;
var marker_965d31d69b13e8cde89974ea9defd5a8 = L.marker(
[24.0379801, 84.0784124],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_ebd14d6957ba31771ab7d9b0407dd7da = L.popup({"maxWidth": "100%"});
var html_be0d086ab60ed0fbcbc7e3615e5e383b = $(`<div id="html_be0d086ab60ed0fbcbc7e3615e5e383b" style="width: 100.0%; height: 100.0%;">7MP623QH+59V6</div>`)[0];
popup_ebd14d6957ba31771ab7d9b0407dd7da.setContent(html_be0d086ab60ed0fbcbc7e3615e5e383b);
marker_965d31d69b13e8cde89974ea9defd5a8.bindPopup(popup_ebd14d6957ba31771ab7d9b0407dd7da)
;
var marker_9173b61645c715aed1cf7a48db465bf5 = L.marker(
[25.2459667, 55.2949976],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_b0c1cc012033e34d4966b59eb5663a92 = L.popup({"maxWidth": "100%"});
var html_666987658b03c90cfe2b4e297a3ae0f3 = $(`<div id="html_666987658b03c90cfe2b4e297a3ae0f3" style="width: 100.0%; height: 100.0%;">7HQQ67WV+9XQQ</div>`)[0];
popup_b0c1cc012033e34d4966b59eb5663a92.setContent(html_666987658b03c90cfe2b4e297a3ae0f3);
marker_9173b61645c715aed1cf7a48db465bf5.bindPopup(popup_b0c1cc012033e34d4966b59eb5663a92)
;
var marker_05ec18b267fb5287d99cecc57544f229 = L.marker(
[26.3934008, 88.7614248],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_a3a8922e224d2129736dd79c1d44f020 = L.popup({"maxWidth": "100%"});
var html_a328b2dad3e380ad702bac5cd2af336e = $(`<div id="html_a328b2dad3e380ad702bac5cd2af336e" style="width: 100.0%; height: 100.0%;">7MRC9QV6+9H74</div>`)[0];
popup_a3a8922e224d2129736dd79c1d44f020.setContent(html_a328b2dad3e380ad702bac5cd2af336e);
marker_05ec18b267fb5287d99cecc57544f229.bindPopup(popup_a3a8922e224d2129736dd79c1d44f020)
;
var marker_84fce77eadeb84fd200df82548882d5d = L.marker(
[29.3612936, 76.3637285],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_33aa207a935545fe8a5eab1e65a8b964 = L.popup({"maxWidth": "100%"});
var html_8a2e638897b6346fcca9dd8a8125a32e = $(`<div id="html_8a2e638897b6346fcca9dd8a8125a32e" style="width: 100.0%; height: 100.0%;">7JXR9967+GF9M</div>`)[0];
popup_33aa207a935545fe8a5eab1e65a8b964.setContent(html_8a2e638897b6346fcca9dd8a8125a32e);
marker_84fce77eadeb84fd200df82548882d5d.bindPopup(popup_33aa207a935545fe8a5eab1e65a8b964)
;
var marker_2ce42d66f7fde130990127c0aef4f8f7 = L.marker(
[26.107903, 92.119544],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_3eb8ae0ce70bdaaacda8fb63d6672ea6 = L.popup({"maxWidth": "100%"});
var html_db32475a95c4bec0c4bba965fc2c9dda = $(`<div id="html_db32475a95c4bec0c4bba965fc2c9dda" style="width: 100.0%; height: 100.0%;">7MRJ4459+5R73</div>`)[0];
popup_3eb8ae0ce70bdaaacda8fb63d6672ea6.setContent(html_db32475a95c4bec0c4bba965fc2c9dda);
marker_2ce42d66f7fde130990127c0aef4f8f7.bindPopup(popup_3eb8ae0ce70bdaaacda8fb63d6672ea6)
;
var marker_4b6194150d0b40ac89d2a112faa8abd4 = L.marker(
[19.175216, 83.4043088],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_6ba2659f0aa0f9c96db8b99a5dd1ef6f = L.popup({"maxWidth": "100%"});
var html_c8bb8f7899ba106449f9f5953a3dd1f0 = $(`<div id="html_c8bb8f7899ba106449f9f5953a3dd1f0" style="width: 100.0%; height: 100.0%;">7MF55CG3+3PMQ</div>`)[0];
popup_6ba2659f0aa0f9c96db8b99a5dd1ef6f.setContent(html_c8bb8f7899ba106449f9f5953a3dd1f0);
marker_4b6194150d0b40ac89d2a112faa8abd4.bindPopup(popup_6ba2659f0aa0f9c96db8b99a5dd1ef6f)
;
var marker_3827fa39a8089d9ca12da1fd6c48ebf7 = L.marker(
[22.2366679, 75.0873956],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_63ad0a75767c9cf96ecfa08e2c9e0333 = L.popup({"maxWidth": "100%"});
var html_c2821adfb72e9cba72ace4bb169bd360 = $(`<div id="html_c2821adfb72e9cba72ace4bb169bd360" style="width: 100.0%; height: 100.0%;">7JJQ63PP+MX6P</div>`)[0];
popup_63ad0a75767c9cf96ecfa08e2c9e0333.setContent(html_c2821adfb72e9cba72ace4bb169bd360);
marker_3827fa39a8089d9ca12da1fd6c48ebf7.bindPopup(popup_63ad0a75767c9cf96ecfa08e2c9e0333)
;
var marker_e13616c9c30d5a59771dd531f109bbf6 = L.marker(
[20.9070593, 74.7917086],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_a4045f9f17d0bd21737ae8e9d2aee678 = L.popup({"maxWidth": "100%"});
var html_9b3e392abbb4678c0735fbe4e72a6cef = $(`<div id="html_9b3e392abbb4678c0735fbe4e72a6cef" style="width: 100.0%; height: 100.0%;">7JGPWQ4R+RMG8</div>`)[0];
popup_a4045f9f17d0bd21737ae8e9d2aee678.setContent(html_9b3e392abbb4678c0735fbe4e72a6cef);
marker_e13616c9c30d5a59771dd531f109bbf6.bindPopup(popup_a4045f9f17d0bd21737ae8e9d2aee678)
;
var marker_fd7f6e954b53dca3199d9efce855f926 = L.marker(
[18.3960372, 76.9729464],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_07efdd2cca6aa7de09637c54d946da91 = L.popup({"maxWidth": "100%"});
var html_a5c507f982772b55f39bbe67218f2787 = $(`<div id="html_a5c507f982772b55f39bbe67218f2787" style="width: 100.0%; height: 100.0%;">7JCR9XWF+C58F</div>`)[0];
popup_07efdd2cca6aa7de09637c54d946da91.setContent(html_a5c507f982772b55f39bbe67218f2787);
marker_fd7f6e954b53dca3199d9efce855f926.bindPopup(popup_07efdd2cca6aa7de09637c54d946da91)
;
var marker_a52ba8ffafefc7a0ff21b5b968ca20d9 = L.marker(
[26.4856787, 90.1647148],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_45358247775c7ce5f61a76bb45088e28 = L.popup({"maxWidth": "100%"});
var html_ba46e1956876a3d60ab1927c0c9eb23a = $(`<div id="html_ba46e1956876a3d60ab1927c0c9eb23a" style="width: 100.0%; height: 100.0%;">7MRGF5P7+7VG5</div>`)[0];
popup_45358247775c7ce5f61a76bb45088e28.setContent(html_ba46e1956876a3d60ab1927c0c9eb23a);
marker_a52ba8ffafefc7a0ff21b5b968ca20d9.bindPopup(popup_45358247775c7ce5f61a76bb45088e28)
;
var marker_10d93456e76b8fb991662750850faddf = L.marker(
[30.3173266, 78.0280036],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_aaa520ee19f4edaa461da38758519f2d = L.popup({"maxWidth": "100%"});
var html_fd513e8d34a1aa71d5cca610aea81111 = $(`<div id="html_fd513e8d34a1aa71d5cca610aea81111" style="width: 100.0%; height: 100.0%;">8J2W828H+W6J2</div>`)[0];
popup_aaa520ee19f4edaa461da38758519f2d.setContent(html_fd513e8d34a1aa71d5cca610aea81111);
marker_10d93456e76b8fb991662750850faddf.bindPopup(popup_aaa520ee19f4edaa461da38758519f2d)
;
var marker_64cb7708a695115108a681bd10c59f82 = L.marker(
[17.7281913, 83.3388617],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_6bdc52e7dbeb1605a3a1a51212a7e247 = L.popup({"maxWidth": "100%"});
var html_5fd0318e19582d360f28df10a80d1cc9 = $(`<div id="html_5fd0318e19582d360f28df10a80d1cc9" style="width: 100.0%; height: 100.0%;">7M95P8HQ+7GHP</div>`)[0];
popup_6bdc52e7dbeb1605a3a1a51212a7e247.setContent(html_5fd0318e19582d360f28df10a80d1cc9);
marker_64cb7708a695115108a681bd10c59f82.bindPopup(popup_6bdc52e7dbeb1605a3a1a51212a7e247)
;
var marker_4900c4b83132a521a71d70a3159f7058 = L.marker(
[20.9236375, 77.3234528],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_9f08fba0fac1f22aa930303e458de29e = L.popup({"maxWidth": "100%"});
var html_369e7bdf3ab6db4dfa1b84d1b9089343 = $(`<div id="html_369e7bdf3ab6db4dfa1b84d1b9089343" style="width: 100.0%; height: 100.0%;">7JGVW8FF+F94F</div>`)[0];
popup_9f08fba0fac1f22aa930303e458de29e.setContent(html_369e7bdf3ab6db4dfa1b84d1b9089343);
marker_4900c4b83132a521a71d70a3159f7058.bindPopup(popup_9f08fba0fac1f22aa930303e458de29e)
;
var marker_345c7b6dd89348024bf23a86724d3621 = L.marker(
[28.6860647, 77.1887793],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_5469095a4fc2de3036a84d7e52398e3b = L.popup({"maxWidth": "100%"});
var html_a1de15f48f13e4a0689953c0651af56e = $(`<div id="html_a1de15f48f13e4a0689953c0651af56e" style="width: 100.0%; height: 100.0%;">7JWVM5PQ+CGCH</div>`)[0];
popup_5469095a4fc2de3036a84d7e52398e3b.setContent(html_a1de15f48f13e4a0689953c0651af56e);
marker_345c7b6dd89348024bf23a86724d3621.bindPopup(popup_5469095a4fc2de3036a84d7e52398e3b)
;
var marker_97e1a1e57d9e0e67f2d0ef61494361d7 = L.marker(
[22.9376162, 88.43485],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_e6e94077cd42eca7d98c5aa745a5f0eb = L.popup({"maxWidth": "100%"});
var html_4442697641f8915f458fcc834d358624 = $(`<div id="html_4442697641f8915f458fcc834d358624" style="width: 100.0%; height: 100.0%;">7MJCWCQM+2WXJ</div>`)[0];
popup_e6e94077cd42eca7d98c5aa745a5f0eb.setContent(html_4442697641f8915f458fcc834d358624);
marker_97e1a1e57d9e0e67f2d0ef61494361d7.bindPopup(popup_e6e94077cd42eca7d98c5aa745a5f0eb)
;
var marker_710242241a14373b5ee6f946ef33e2b3 = L.marker(
[24.8328427, 92.8216168],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_dbc1eddbc7ed7a48a04c0ad06d139fd2 = L.popup({"maxWidth": "100%"});
var html_1ce65a592d7a884a0686e50cd01219fa = $(`<div id="html_1ce65a592d7a884a0686e50cd01219fa" style="width: 100.0%; height: 100.0%;">7MPJRRMC+4JQP</div>`)[0];
popup_dbc1eddbc7ed7a48a04c0ad06d139fd2.setContent(html_1ce65a592d7a884a0686e50cd01219fa);
marker_710242241a14373b5ee6f946ef33e2b3.bindPopup(popup_dbc1eddbc7ed7a48a04c0ad06d139fd2)
;
var marker_9dedc95e11e314a9e4eec623dd21d32e = L.marker(
[25.4388386, 81.8039868],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_c8cbfe2348af10664606478a09d2777c = L.popup({"maxWidth": "100%"});
var html_e69ded3c26e3aa94e5e69eff9962ee59 = $(`<div id="html_e69ded3c26e3aa94e5e69eff9962ee59" style="width: 100.0%; height: 100.0%;">7MQ3CRQ3+GHQG</div>`)[0];
popup_c8cbfe2348af10664606478a09d2777c.setContent(html_e69ded3c26e3aa94e5e69eff9962ee59);
marker_9dedc95e11e314a9e4eec623dd21d32e.bindPopup(popup_c8cbfe2348af10664606478a09d2777c)
;
var marker_97961c0a325fe237938e65396dcf80ca = L.marker(
[22.4184762, 87.3111266],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_d4144c901182cfb3dcb4ec41985d060d = L.popup({"maxWidth": "100%"});
var html_42cd0cb1a4b08f3b4511148a5adde2c2 = $(`<div id="html_42cd0cb1a4b08f3b4511148a5adde2c2" style="width: 100.0%; height: 100.0%;">7MJ9C896+9FR2</div>`)[0];
popup_d4144c901182cfb3dcb4ec41985d060d.setContent(html_42cd0cb1a4b08f3b4511148a5adde2c2);
marker_97961c0a325fe237938e65396dcf80ca.bindPopup(popup_d4144c901182cfb3dcb4ec41985d060d)
;
var marker_2f46e2014970445dcb1bdb3593169e5c = L.marker(
[20.4658753, 85.8768294],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_b6b21e8ab6f140e0418494e85f1736a4 = L.popup({"maxWidth": "100%"});
var html_75e77efdfaf4a02d7c2113e776175fa6 = $(`<div id="html_75e77efdfaf4a02d7c2113e776175fa6" style="width: 100.0%; height: 100.0%;">7MG7FV8G+9P44</div>`)[0];
popup_b6b21e8ab6f140e0418494e85f1736a4.setContent(html_75e77efdfaf4a02d7c2113e776175fa6);
marker_2f46e2014970445dcb1bdb3593169e5c.bindPopup(popup_b6b21e8ab6f140e0418494e85f1736a4)
;
var marker_cb0c0c358da643ae46faaf3875964f5b = L.marker(
[17.6717399, 75.9179667],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_f1482d67591f169d3d8f9d08ba111e06 = L.popup({"maxWidth": "100%"});
var html_cb57086094a048e630f509742e57e4fa = $(`<div id="html_cb57086094a048e630f509742e57e4fa" style="width: 100.0%; height: 100.0%;">7J9QMWC9+M5WH</div>`)[0];
popup_f1482d67591f169d3d8f9d08ba111e06.setContent(html_cb57086094a048e630f509742e57e4fa);
marker_cb0c0c358da643ae46faaf3875964f5b.bindPopup(popup_f1482d67591f169d3d8f9d08ba111e06)
;
var marker_a24d9f1eb71b3281efb3b384426e5ee8 = L.marker(
[27.4705449, 94.9124625],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_5c44cf607572d6cd2024ca8170347ee2 = L.popup({"maxWidth": "100%"});
var html_42165ace1446bdcb625c7cb99d60fb1c = $(`<div id="html_42165ace1446bdcb625c7cb99d60fb1c" style="width: 100.0%; height: 100.0%;">7MVPFWC6+6X8Q</div>`)[0];
popup_5c44cf607572d6cd2024ca8170347ee2.setContent(html_42165ace1446bdcb625c7cb99d60fb1c);
marker_a24d9f1eb71b3281efb3b384426e5ee8.bindPopup(popup_5c44cf607572d6cd2024ca8170347ee2)
;
var marker_a7c65cfba202dec1bc58dc1cc8a8ef5e = L.marker(
[30.3397809, 76.3868797],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_93fc8327b308bfe1dbc7fd3b8e98ca7d = L.popup({"maxWidth": "100%"});
var html_8c3f9ed39915c5a90463ba0cc6c38238 = $(`<div id="html_8c3f9ed39915c5a90463ba0cc6c38238" style="width: 100.0%; height: 100.0%;">8J2R89QP+WQ66</div>`)[0];
popup_93fc8327b308bfe1dbc7fd3b8e98ca7d.setContent(html_8c3f9ed39915c5a90463ba0cc6c38238);
marker_a7c65cfba202dec1bc58dc1cc8a8ef5e.bindPopup(popup_93fc8327b308bfe1dbc7fd3b8e98ca7d)
;
var marker_a25e80620aa1cc3e555609b1aaf86ace = L.marker(
[22.4945393, 88.3206187],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_655b407481682132189262def40f393e = L.popup({"maxWidth": "100%"});
var html_da25a5e928ec8f674424b8879b3ac5ee = $(`<div id="html_da25a5e928ec8f674424b8879b3ac5ee" style="width: 100.0%; height: 100.0%;">7MJCF8VC+R69H</div>`)[0];
popup_655b407481682132189262def40f393e.setContent(html_da25a5e928ec8f674424b8879b3ac5ee);
marker_a25e80620aa1cc3e555609b1aaf86ace.bindPopup(popup_655b407481682132189262def40f393e)
;
var marker_d39373ad225304e470ab73f90262432c = L.marker(
[26.9164616, 94.6889632],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_96435ab8414f99307d92208e4a552cfc = L.popup({"maxWidth": "100%"});
var html_f842cedaf7785e7dc7c2dd5010820820 = $(`<div id="html_f842cedaf7785e7dc7c2dd5010820820" style="width: 100.0%; height: 100.0%;">7MRPWM8Q+HHPH</div>`)[0];
popup_96435ab8414f99307d92208e4a552cfc.setContent(html_f842cedaf7785e7dc7c2dd5010820820);
marker_d39373ad225304e470ab73f90262432c.bindPopup(popup_96435ab8414f99307d92208e4a552cfc)
;
var marker_af1457f911f8bfde8a808bfcd39425bd = L.marker(
[26.9674592, 94.7885782],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_b14b4b7a5cf8e085b5137d7315898968 = L.popup({"maxWidth": "100%"});
var html_a7474ebb764753180645e11e529cac4a = $(`<div id="html_a7474ebb764753180645e11e529cac4a" style="width: 100.0%; height: 100.0%;">7MRPXQ8Q+XCP8</div>`)[0];
popup_b14b4b7a5cf8e085b5137d7315898968.setContent(html_a7474ebb764753180645e11e529cac4a);
marker_af1457f911f8bfde8a808bfcd39425bd.bindPopup(popup_b14b4b7a5cf8e085b5137d7315898968)
;
var marker_ce841605efd91658eea483995dbf5183 = L.marker(
[18.2976884, 79.4721683],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_7f1d8ab34d67830ef2048a5c461e3713 = L.popup({"maxWidth": "100%"});
var html_a7590ee1dee6f8124717baef203854a6 = $(`<div id="html_a7590ee1dee6f8124717baef203854a6" style="width: 100.0%; height: 100.0%;">7JCX7FXC+3VFF</div>`)[0];
popup_7f1d8ab34d67830ef2048a5c461e3713.setContent(html_a7590ee1dee6f8124717baef203854a6);
marker_ce841605efd91658eea483995dbf5183.bindPopup(popup_7f1d8ab34d67830ef2048a5c461e3713)
;
var marker_fe5f00a5e2b35e77682d04354cb8f4f5 = L.marker(
[25.9562583, 73.6687906],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_365aa47c3574c1d5b6f8601e3382cbb6 = L.popup({"maxWidth": "100%"});
var html_97ecaf6b0dcdc7561cd21ca03d610778 = $(`<div id="html_97ecaf6b0dcdc7561cd21ca03d610778" style="width: 100.0%; height: 100.0%;">7JQMXM49+GG37</div>`)[0];
popup_365aa47c3574c1d5b6f8601e3382cbb6.setContent(html_97ecaf6b0dcdc7561cd21ca03d610778);
marker_fe5f00a5e2b35e77682d04354cb8f4f5.bindPopup(popup_365aa47c3574c1d5b6f8601e3382cbb6)
;
var marker_8c8381c9e1edf707bb03c2074ca2a50e = L.marker(
[31.6572225, 74.6392649],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_045f37c055cc29d54cc226a9628c07a9 = L.popup({"maxWidth": "100%"});
var html_6358e4feab9883da227a33d2e7be7fdf = $(`<div id="html_6358e4feab9883da227a33d2e7be7fdf" style="width: 100.0%; height: 100.0%;">8J3PMJ4Q+VPJV</div>`)[0];
popup_045f37c055cc29d54cc226a9628c07a9.setContent(html_6358e4feab9883da227a33d2e7be7fdf);
marker_8c8381c9e1edf707bb03c2074ca2a50e.bindPopup(popup_045f37c055cc29d54cc226a9628c07a9)
;
var marker_de695620a7e237bb1cf138683f82709b = L.marker(
[30.78147, 76.75476],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_69a00929606f7f75f69d2be5ae7a0578 = L.popup({"maxWidth": "100%"});
var html_bf0a4845a1ce1ba56e606ee7cfe5f929 = $(`<div id="html_bf0a4845a1ce1ba56e606ee7cfe5f929" style="width: 100.0%; height: 100.0%;">8J2RQQJ3+HWJM</div>`)[0];
popup_69a00929606f7f75f69d2be5ae7a0578.setContent(html_bf0a4845a1ce1ba56e606ee7cfe5f929);
marker_de695620a7e237bb1cf138683f82709b.bindPopup(popup_69a00929606f7f75f69d2be5ae7a0578)
;
var marker_3e612355d7080b02cf2b1330f67281cd = L.marker(
[23.2485721, 87.864585],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_6c39ed6dd31f350d8a31e3599b784b89 = L.popup({"maxWidth": "100%"});
var html_f10881fed8c4fa7a84b2c74e6705ff83 = $(`<div id="html_f10881fed8c4fa7a84b2c74e6705ff83" style="width: 100.0%; height: 100.0%;">7MM96VX7+CRGW</div>`)[0];
popup_6c39ed6dd31f350d8a31e3599b784b89.setContent(html_f10881fed8c4fa7a84b2c74e6705ff83);
marker_3e612355d7080b02cf2b1330f67281cd.bindPopup(popup_6c39ed6dd31f350d8a31e3599b784b89)
;
var marker_faa5c70729f707cdbe928ce31d50b70c = L.marker(
[23.3535082, 85.3403521],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_001739c977459cdf8a36b76dc0d73323 = L.popup({"maxWidth": "100%"});
var html_b62cbfe12c33aa1011e28bfbe205c0f0 = $(`<div id="html_b62cbfe12c33aa1011e28bfbe205c0f0" style="width: 100.0%; height: 100.0%;">7MM7983R+C457</div>`)[0];
popup_001739c977459cdf8a36b76dc0d73323.setContent(html_b62cbfe12c33aa1011e28bfbe205c0f0);
marker_faa5c70729f707cdbe928ce31d50b70c.bindPopup(popup_001739c977459cdf8a36b76dc0d73323)
;
var marker_682b66201dc5d3b06e79f9ff5ae684a2 = L.marker(
[26.1302859, 91.7704618],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_1b0579abeb6ce9456172082466a82ace = L.popup({"maxWidth": "100%"});
var html_e381fd9b7573e627b65bc2495b364b35 = $(`<div id="html_e381fd9b7573e627b65bc2495b364b35" style="width: 100.0%; height: 100.0%;">7MRH4QJC+458H</div>`)[0];
popup_1b0579abeb6ce9456172082466a82ace.setContent(html_e381fd9b7573e627b65bc2495b364b35);
marker_682b66201dc5d3b06e79f9ff5ae684a2.bindPopup(popup_1b0579abeb6ce9456172082466a82ace)
;
var marker_ca9b2a91089bb1156c6b0775d426a7c6 = L.marker(
[17.329731, 76.8342957],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_94e1e20bff1ac84f565e1b87fbe6d679 = L.popup({"maxWidth": "100%"});
var html_2b4f98d3625130002b9666bfee5251f2 = $(`<div id="html_2b4f98d3625130002b9666bfee5251f2" style="width: 100.0%; height: 100.0%;">7J9R8RHM+VPV7</div>`)[0];
popup_94e1e20bff1ac84f565e1b87fbe6d679.setContent(html_2b4f98d3625130002b9666bfee5251f2);
marker_ca9b2a91089bb1156c6b0775d426a7c6.bindPopup(popup_94e1e20bff1ac84f565e1b87fbe6d679)
;
var marker_bb34dc8e6faa48351cef9f591acc6ae4 = L.marker(
[14.195213, 79.1583807],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_7b9c22b14ffec52c8b37601252dbbcb8 = L.popup({"maxWidth": "100%"});
var html_2f3a4f934a6013b30cc9834a2b20f48d = $(`<div id="html_2f3a4f934a6013b30cc9834a2b20f48d" style="width: 100.0%; height: 100.0%;">7J6X55W5+39JC</div>`)[0];
popup_7b9c22b14ffec52c8b37601252dbbcb8.setContent(html_2f3a4f934a6013b30cc9834a2b20f48d);
marker_bb34dc8e6faa48351cef9f591acc6ae4.bindPopup(popup_7b9c22b14ffec52c8b37601252dbbcb8)
;
var marker_1e3b1c55988be458583bc52a7ec7c6a1 = L.marker(
[25.5573141, 87.5579408],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_7218a90f7937040ae5b44cb331798901 = L.popup({"maxWidth": "100%"});
var html_e6dc46489790f048959ec615d57dfa03 = $(`<div id="html_e6dc46489790f048959ec615d57dfa03" style="width: 100.0%; height: 100.0%;">7MQ9HH45+W5GC</div>`)[0];
popup_7218a90f7937040ae5b44cb331798901.setContent(html_e6dc46489790f048959ec615d57dfa03);
marker_1e3b1c55988be458583bc52a7ec7c6a1.bindPopup(popup_7218a90f7937040ae5b44cb331798901)
;
var marker_d40fd78513cdf3cbd8b1bd658ebe8328 = L.marker(
[26.741836, 83.7517851],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_a1fefba3b29d81948288edb41c4a2c27 = L.popup({"maxWidth": "100%"});
var html_7640b8d27fe0d5450aad64068ef00d5f = $(`<div id="html_7640b8d27fe0d5450aad64068ef00d5f" style="width: 100.0%; height: 100.0%;">7MR5PQR2+PPMC</div>`)[0];
popup_a1fefba3b29d81948288edb41c4a2c27.setContent(html_7640b8d27fe0d5450aad64068ef00d5f);
marker_d40fd78513cdf3cbd8b1bd658ebe8328.bindPopup(popup_a1fefba3b29d81948288edb41c4a2c27)
;
var marker_e46f46abe5e82fa3e338b682c0fefc26 = L.marker(
[12.6421824, 78.5178981],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_04e0035a6744642471981b9ef84fab4f = L.popup({"maxWidth": "100%"});
var html_988eba4a14d0ddcee80fddd570a3b432 = $(`<div id="html_988eba4a14d0ddcee80fddd570a3b432" style="width: 100.0%; height: 100.0%;">7J4WJGR9+V5C8</div>`)[0];
popup_04e0035a6744642471981b9ef84fab4f.setContent(html_988eba4a14d0ddcee80fddd570a3b432);
marker_e46f46abe5e82fa3e338b682c0fefc26.bindPopup(popup_04e0035a6744642471981b9ef84fab4f)
;
var marker_6a2c7340b9c1662df9e7314b129fab6b = L.marker(
[22.94445, 88.419357],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_6fed0ca2033365afa1dd8d749b7563b1 = L.popup({"maxWidth": "100%"});
var html_84b56e957869af22d50e795730512e23 = $(`<div id="html_84b56e957869af22d50e795730512e23" style="width: 100.0%; height: 100.0%;">7MJCWCV9+QPQ3</div>`)[0];
popup_6fed0ca2033365afa1dd8d749b7563b1.setContent(html_84b56e957869af22d50e795730512e23);
marker_6a2c7340b9c1662df9e7314b129fab6b.bindPopup(popup_6fed0ca2033365afa1dd8d749b7563b1)
;
var marker_8c192e2ddab749bd1f115b994c94b198 = L.marker(
[27.4939511, 95.1949771],
{}
).addTo(map_e0116c0f56bd1bc9eb60ad6a942ab305);
var popup_223b40f0cfd1b3419ae18b52b9827fdc = L.popup({"maxWidth": "100%"});