-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcitation_map.html
15516 lines (7490 loc) · 629 KB
/
citation_map.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/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.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/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.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_eb0893ebc88795465fa4349445c71490 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_eb0893ebc88795465fa4349445c71490" ></div>
</body>
<script>
var map_eb0893ebc88795465fa4349445c71490 = L.map(
"map_eb0893ebc88795465fa4349445c71490",
{
center: [20.0, 0.0],
crs: L.CRS.EPSG3857,
zoom: 2,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_6b8357dcc6fad5ea09410b387bfa5d15 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_6b8357dcc6fad5ea09410b387bfa5d15.addTo(map_eb0893ebc88795465fa4349445c71490);
var marker_3a0e7520e0ed33f9e0ba7f9c26bf056c = L.marker(
[37.1641544, -120.7678602],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_76a2974fad979b555f429033143d0f3f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkblue", "prefix": "glyphicon"}
);
marker_3a0e7520e0ed33f9e0ba7f9c26bf056c.setIcon(icon_76a2974fad979b555f429033143d0f3f);
var popup_34ffc667596a54530208701fd5946e26 = L.popup({"maxWidth": "100%"});
var html_45591e52c9d86ea7645e727ddf7fc302 = $(`<div id="html_45591e52c9d86ea7645e727ddf7fc302" style="width: 100.0%; height: 100.0%;">Merced (Ming-Hsuan Yang)</div>`)[0];
popup_34ffc667596a54530208701fd5946e26.setContent(html_45591e52c9d86ea7645e727ddf7fc302);
marker_3a0e7520e0ed33f9e0ba7f9c26bf056c.bindPopup(popup_34ffc667596a54530208701fd5946e26)
;
var marker_0fe160883fa2c5cff330b7eb3b028b32 = L.marker(
[34.070877749999994, -118.44685070595054],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_4d11c923dcb9e74f89402fb0fa908165 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_0fe160883fa2c5cff330b7eb3b028b32.setIcon(icon_4d11c923dcb9e74f89402fb0fa908165);
var popup_792ddabc79881253eb61a4a0fc200ca3 = L.popup({"maxWidth": "100%"});
var html_e232a2d1907abb90dfcdb6e9618fff9d = $(`<div id="html_e232a2d1907abb90dfcdb6e9618fff9d" style="width: 100.0%; height: 100.0%;">University of California (Jiaqi Ma)</div>`)[0];
popup_792ddabc79881253eb61a4a0fc200ca3.setContent(html_e232a2d1907abb90dfcdb6e9618fff9d);
marker_0fe160883fa2c5cff330b7eb3b028b32.bindPopup(popup_792ddabc79881253eb61a4a0fc200ca3)
;
var marker_901b24ddda0cae1ad5c05f9428e7574d = L.marker(
[1.3484104000000001, 103.68293320728537],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_cbe1c1027f83296ddc9193c3e580daa4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_901b24ddda0cae1ad5c05f9428e7574d.setIcon(icon_cbe1c1027f83296ddc9193c3e580daa4);
var popup_dea876e2a358482004e38257ee78ad5f = L.popup({"maxWidth": "100%"});
var html_28911e431d2a27dae8149a4638f947bc = $(`<div id="html_28911e431d2a27dae8149a4638f947bc" style="width: 100.0%; height: 100.0%;">Nanyang Technological University (Liang Liao)</div>`)[0];
popup_dea876e2a358482004e38257ee78ad5f.setContent(html_28911e431d2a27dae8149a4638f947bc);
marker_901b24ddda0cae1ad5c05f9428e7574d.bindPopup(popup_dea876e2a358482004e38257ee78ad5f)
;
var marker_8fb7e703c0e7f2c5067ad43c1bfc6db5 = L.marker(
[39.90933665, 116.32971461228999],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_c724a0c1976f9ac05c785c77fa383975 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightblue", "prefix": "glyphicon"}
);
marker_8fb7e703c0e7f2c5067ad43c1bfc6db5.setIcon(icon_c724a0c1976f9ac05c785c77fa383975);
var popup_c4c7b2f8f430d566f563ea642f811ae2 = L.popup({"maxWidth": "100%"});
var html_ea624928285cd414ff33e613fa466432 = $(`<div id="html_ea624928285cd414ff33e613fa466432" style="width: 100.0%; height: 100.0%;">Chinese Academy of Sciences (Yonglin Tian)</div>`)[0];
popup_c4c7b2f8f430d566f563ea642f811ae2.setContent(html_ea624928285cd414ff33e613fa466432);
marker_8fb7e703c0e7f2c5067ad43c1bfc6db5.bindPopup(popup_c4c7b2f8f430d566f563ea642f811ae2)
;
var marker_dc57f2785260b82b83ee5bdb96e7850f = L.marker(
[3.16129015, 101.56813112882818],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_15a2fa8446eced7c119fa54919be16b5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon"}
);
marker_dc57f2785260b82b83ee5bdb96e7850f.setIcon(icon_15a2fa8446eced7c119fa54919be16b5);
var popup_329b150b91a58922874f98f6069bdbc9 = L.popup({"maxWidth": "100%"});
var html_84b62bc0381809c4f8d3fed50ebdc07a = $(`<div id="html_84b62bc0381809c4f8d3fed50ebdc07a" style="width: 100.0%; height: 100.0%;">Technology (Vishnu Pandi Chellapandi)</div>`)[0];
popup_329b150b91a58922874f98f6069bdbc9.setContent(html_84b62bc0381809c4f8d3fed50ebdc07a);
marker_dc57f2785260b82b83ee5bdb96e7850f.bindPopup(popup_329b150b91a58922874f98f6069bdbc9)
;
var marker_52db4a492d33fde77c9b4978a86be2df = L.marker(
[30.2851494, -97.73393515146053],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_9b2705afa227d181a1357fd8f6856fb7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkblue", "prefix": "glyphicon"}
);
marker_52db4a492d33fde77c9b4978a86be2df.setIcon(icon_9b2705afa227d181a1357fd8f6856fb7);
var popup_5d70dd212962553e9edb3bea41d1cf2c = L.popup({"maxWidth": "100%"});
var html_83c0ed6fed3d45618e35581f2b262d7b = $(`<div id="html_83c0ed6fed3d45618e35581f2b262d7b" style="width: 100.0%; height: 100.0%;">University of Texas at Austin (Sandeep Mishra)</div>`)[0];
popup_5d70dd212962553e9edb3bea41d1cf2c.setContent(html_83c0ed6fed3d45618e35581f2b262d7b);
marker_52db4a492d33fde77c9b4978a86be2df.bindPopup(popup_5d70dd212962553e9edb3bea41d1cf2c)
;
var marker_af79cbbd3f1312b8169ecc9716ade4b4 = L.marker(
[54.7391503, 55.9709483],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_c6e08cbb971c30584020bf6b4869e3c0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_af79cbbd3f1312b8169ecc9716ade4b4.setIcon(icon_c6e08cbb971c30584020bf6b4869e3c0);
var popup_b325491e80a943b018bee0125d855562 = L.popup({"maxWidth": "100%"});
var html_58864ad8c586a5711c4351f7b08f82f0 = $(`<div id="html_58864ad8c586a5711c4351f7b08f82f0" style="width: 100.0%; height: 100.0%;">S-Lab (Chaofeng Chen)</div>`)[0];
popup_b325491e80a943b018bee0125d855562.setContent(html_58864ad8c586a5711c4351f7b08f82f0);
marker_af79cbbd3f1312b8169ecc9716ade4b4.bindPopup(popup_b325491e80a943b018bee0125d855562)
;
var marker_b10222b9ba10dd15c36dfed6aed09d64 = L.marker(
[31.30116485, 121.49808756382322],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_b6bd6b5c8b34d1b213f9d6a3c821f731 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_b10222b9ba10dd15c36dfed6aed09d64.setIcon(icon_b6bd6b5c8b34d1b213f9d6a3c821f731);
var popup_3ae45c5b088cd0099ed76475cc526f0a = L.popup({"maxWidth": "100%"});
var html_ffcf87f323e691c909bec9ec8d1c46d0 = $(`<div id="html_ffcf87f323e691c909bec9ec8d1c46d0" style="width: 100.0%; height: 100.0%;">Fudan University (Qi Zheng)</div>`)[0];
popup_3ae45c5b088cd0099ed76475cc526f0a.setContent(html_ffcf87f323e691c909bec9ec8d1c46d0);
marker_b10222b9ba10dd15c36dfed6aed09d64.bindPopup(popup_3ae45c5b088cd0099ed76475cc526f0a)
;
var marker_f9f58fca5100d6917cea849c025c8df9 = L.marker(
[49.93216245, 8.684753081266553],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_5d77a42a126d0243fb346109d6437a65 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkpurple", "prefix": "glyphicon"}
);
marker_f9f58fca5100d6917cea849c025c8df9.setIcon(icon_5d77a42a126d0243fb346109d6437a65);
var popup_c99f3a6e5e12379513cbbf6d43715998 = L.popup({"maxWidth": "100%"});
var html_9024d559d4dd4322d71ad5343accca13 = $(`<div id="html_9024d559d4dd4322d71ad5343accca13" style="width: 100.0%; height: 100.0%;">FAIR (Xinlei Chen)</div>`)[0];
popup_c99f3a6e5e12379513cbbf6d43715998.setContent(html_9024d559d4dd4322d71ad5343accca13);
marker_f9f58fca5100d6917cea849c025c8df9.bindPopup(popup_c99f3a6e5e12379513cbbf6d43715998)
;
var marker_ed3e47cb47d5a3664c2f6daa9c50d768 = L.marker(
[1.3484104000000001, 103.68293320728537],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_d511f2768e9ecfcd9af0185468cde671 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightgray", "prefix": "glyphicon"}
);
marker_ed3e47cb47d5a3664c2f6daa9c50d768.setIcon(icon_d511f2768e9ecfcd9af0185468cde671);
var popup_6da6f11bf974b6f53707428ddab338d2 = L.popup({"maxWidth": "100%"});
var html_0732315276417318ec948cbdd4f83efd = $(`<div id="html_0732315276417318ec948cbdd4f83efd" style="width: 100.0%; height: 100.0%;">Nanyang Technological University (Haoning Wu)</div>`)[0];
popup_6da6f11bf974b6f53707428ddab338d2.setContent(html_0732315276417318ec948cbdd4f83efd);
marker_ed3e47cb47d5a3664c2f6daa9c50d768.bindPopup(popup_6da6f11bf974b6f53707428ddab338d2)
;
var marker_7b4d02b59a2534e2686841b30a7e7970 = L.marker(
[39.907697049999996, 116.24405770367915],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_b1e3efe0bc366cf9319522833ebd4175 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_7b4d02b59a2534e2686841b30a7e7970.setIcon(icon_b1e3efe0bc366cf9319522833ebd4175);
var popup_0d294beb6e1e8cb86c98b5e25dee5f6c = L.popup({"maxWidth": "100%"});
var html_9b053cf8d235ba9c4f0a83c941e8d37a = $(`<div id="html_9b053cf8d235ba9c4f0a83c941e8d37a" style="width: 100.0%; height: 100.0%;">University of Chinese Academy of Sciences (Bonan Li)</div>`)[0];
popup_0d294beb6e1e8cb86c98b5e25dee5f6c.setContent(html_9b053cf8d235ba9c4f0a83c941e8d37a);
marker_7b4d02b59a2534e2686841b30a7e7970.bindPopup(popup_0d294beb6e1e8cb86c98b5e25dee5f6c)
;
var marker_49a35ca90ad0dba3af45ac3f74d17c8d = L.marker(
[34.0536909, -118.242766],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_2b349ea6fbbe17fe5b842e84173d2661 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightred", "prefix": "glyphicon"}
);
marker_49a35ca90ad0dba3af45ac3f74d17c8d.setIcon(icon_2b349ea6fbbe17fe5b842e84173d2661);
var popup_253f775cbe24d33bf7c78e1fbb4a4352 = L.popup({"maxWidth": "100%"});
var html_58c79629f462f7f7c0bf54e8137db1e0 = $(`<div id="html_58c79629f462f7f7c0bf54e8137db1e0" style="width: 100.0%; height: 100.0%;">Los Angeles (Jiaqi Ma)</div>`)[0];
popup_253f775cbe24d33bf7c78e1fbb4a4352.setContent(html_58c79629f462f7f7c0bf54e8137db1e0);
marker_49a35ca90ad0dba3af45ac3f74d17c8d.bindPopup(popup_253f775cbe24d33bf7c78e1fbb4a4352)
;
var marker_43a5eeae62ddc96a6e7f7921e4a3f4b9 = L.marker(
[31.30116485, 121.49808756382322],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_a4d9a68fbd5db72146eba13787753006 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightgray", "prefix": "glyphicon"}
);
marker_43a5eeae62ddc96a6e7f7921e4a3f4b9.setIcon(icon_a4d9a68fbd5db72146eba13787753006);
var popup_4b21eca3f33344cbebf0ad2301a037e3 = L.popup({"maxWidth": "100%"});
var html_fd427d10fde232a9e11c9150ac14704e = $(`<div id="html_fd427d10fde232a9e11c9150ac14704e" style="width: 100.0%; height: 100.0%;">Fudan University (Qi Zheng)</div>`)[0];
popup_4b21eca3f33344cbebf0ad2301a037e3.setContent(html_fd427d10fde232a9e11c9150ac14704e);
marker_43a5eeae62ddc96a6e7f7921e4a3f4b9.bindPopup(popup_4b21eca3f33344cbebf0ad2301a037e3)
;
var marker_d55d8641869fa14f0be27dba3e2a6fcd = L.marker(
[22.3386304, 114.2620337],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_8762bc35898ec25c4bdb1a72c49f1fe3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightred", "prefix": "glyphicon"}
);
marker_d55d8641869fa14f0be27dba3e2a6fcd.setIcon(icon_8762bc35898ec25c4bdb1a72c49f1fe3);
var popup_6d25869d047fea7ef2d0be6e1949af00 = L.popup({"maxWidth": "100%"});
var html_d24cb819196cfd059939da02c9202c70 = $(`<div id="html_d24cb819196cfd059939da02c9202c70" style="width: 100.0%; height: 100.0%;">Hong Kong University of Science and Technology (Wei Dai)</div>`)[0];
popup_6d25869d047fea7ef2d0be6e1949af00.setContent(html_d24cb819196cfd059939da02c9202c70);
marker_d55d8641869fa14f0be27dba3e2a6fcd.bindPopup(popup_6d25869d047fea7ef2d0be6e1949af00)
;
var marker_11bd76bf566af3ef664adabe5723328d = L.marker(
[34.070877749999994, -118.44685070595054],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_2b2603ee4040fa7aa9a67d8b36523b61 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkred", "prefix": "glyphicon"}
);
marker_11bd76bf566af3ef664adabe5723328d.setIcon(icon_2b2603ee4040fa7aa9a67d8b36523b61);
var popup_7f7b365ffde2a61b93140ce86e494f70 = L.popup({"maxWidth": "100%"});
var html_aa77fdd19e503f04f8f70c79485c03e5 = $(`<div id="html_aa77fdd19e503f04f8f70c79485c03e5" style="width: 100.0%; height: 100.0%;">University of California (Jiaqi Ma)</div>`)[0];
popup_7f7b365ffde2a61b93140ce86e494f70.setContent(html_aa77fdd19e503f04f8f70c79485c03e5);
marker_11bd76bf566af3ef664adabe5723328d.bindPopup(popup_7f7b365ffde2a61b93140ce86e494f70)
;
var marker_f22b468aa8eaa3301a871b63ec3f3049 = L.marker(
[52.194951450000005, 0.13501083507603753],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_01b5c88768aceff535adb790c25c88c0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkpurple", "prefix": "glyphicon"}
);
marker_f22b468aa8eaa3301a871b63ec3f3049.setIcon(icon_01b5c88768aceff535adb790c25c88c0);
var popup_e1f3bda07f966a731b05f1cff0f7ced6 = L.popup({"maxWidth": "100%"});
var html_fe3b6252a67bb6e5b161be5700bf9d98 = $(`<div id="html_fe3b6252a67bb6e5b161be5700bf9d98" style="width: 100.0%; height: 100.0%;">Microsoft Research (Wenhui Wang)</div>`)[0];
popup_e1f3bda07f966a731b05f1cff0f7ced6.setContent(html_fe3b6252a67bb6e5b161be5700bf9d98);
marker_f22b468aa8eaa3301a871b63ec3f3049.bindPopup(popup_e1f3bda07f966a731b05f1cff0f7ced6)
;
var marker_d623da07723f3fb09958398dcfa5edd7 = L.marker(
[51.4905582, -2.6304824978595356],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_32f942fab193d6ee0fd432b8d960c46c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkgreen", "prefix": "glyphicon"}
);
marker_d623da07723f3fb09958398dcfa5edd7.setIcon(icon_32f942fab193d6ee0fd432b8d960c46c);
var popup_dd94da93d17d5da5383a98f0499efb55 = L.popup({"maxWidth": "100%"});
var html_20430478ef0c31a54f2e16cb804dbad3 = $(`<div id="html_20430478ef0c31a54f2e16cb804dbad3" style="width: 100.0%; height: 100.0%;">University of Bristol (David Bull)</div>`)[0];
popup_dd94da93d17d5da5383a98f0499efb55.setContent(html_20430478ef0c31a54f2e16cb804dbad3);
marker_d623da07723f3fb09958398dcfa5edd7.bindPopup(popup_dd94da93d17d5da5383a98f0499efb55)
;
var marker_45d0f5dbc28c137bacc817320dab0597 = L.marker(
[12.9822892, 77.5962827],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_3360f7029b2b4d8385463a33958aef9f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon"}
);
marker_45d0f5dbc28c137bacc817320dab0597.setIcon(icon_3360f7029b2b4d8385463a33958aef9f);
var popup_f40a8a6eb2fa22b6628ade7ada9d7c7d = L.popup({"maxWidth": "100%"});
var html_2b6d5e08e20d67675eee708c330ae85c = $(`<div id="html_2b6d5e08e20d67675eee708c330ae85c" style="width: 100.0%; height: 100.0%;">Apple (Xiaojie Chu)</div>`)[0];
popup_f40a8a6eb2fa22b6628ade7ada9d7c7d.setContent(html_2b6d5e08e20d67675eee708c330ae85c);
marker_45d0f5dbc28c137bacc817320dab0597.bindPopup(popup_f40a8a6eb2fa22b6628ade7ada9d7c7d)
;
var marker_c4ef82ae4b11df1b3429eb20c66b9075 = L.marker(
[31.30116485, 121.49808756382322],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_920ed956bd1275ea230da99788cce6d6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_c4ef82ae4b11df1b3429eb20c66b9075.setIcon(icon_920ed956bd1275ea230da99788cce6d6);
var popup_664caa50b49a1c3868b2d59be76274cc = L.popup({"maxWidth": "100%"});
var html_d3e7a13be0527a009db512fe71db4160 = $(`<div id="html_d3e7a13be0527a009db512fe71db4160" style="width: 100.0%; height: 100.0%;">Fudan University (Dingkang Yang)</div>`)[0];
popup_664caa50b49a1c3868b2d59be76274cc.setContent(html_d3e7a13be0527a009db512fe71db4160);
marker_c4ef82ae4b11df1b3429eb20c66b9075.bindPopup(popup_664caa50b49a1c3868b2d59be76274cc)
;
var marker_57b30480e0db994becaf5e9a4191ab48 = L.marker(
[31.30116485, 121.49808756382322],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_cc454faa4d9c6144706fabd14bb042dc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_57b30480e0db994becaf5e9a4191ab48.setIcon(icon_cc454faa4d9c6144706fabd14bb042dc);
var popup_6e458f88a80c1772c270d917154dbe37 = L.popup({"maxWidth": "100%"});
var html_16e117cdcec38b13fc644e56e000bb13 = $(`<div id="html_16e117cdcec38b13fc644e56e000bb13" style="width: 100.0%; height: 100.0%;">Fudan University (Yuzheng Wang)</div>`)[0];
popup_6e458f88a80c1772c270d917154dbe37.setContent(html_16e117cdcec38b13fc644e56e000bb13);
marker_57b30480e0db994becaf5e9a4191ab48.bindPopup(popup_6e458f88a80c1772c270d917154dbe37)
;
var marker_e60c0be77f8481450a1872b15a436009 = L.marker(
[34.0536909, -118.242766],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_997e76cf9ab7ff492e8da649abc40e3f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_e60c0be77f8481450a1872b15a436009.setIcon(icon_997e76cf9ab7ff492e8da649abc40e3f);
var popup_9ac212ac4eb407e01a4c7d075020e500 = L.popup({"maxWidth": "100%"});
var html_3b2e08cb1cb98b94689df5215acac309 = $(`<div id="html_3b2e08cb1cb98b94689df5215acac309" style="width: 100.0%; height: 100.0%;">Los Angeles (Meng Zonglin)</div>`)[0];
popup_9ac212ac4eb407e01a4c7d075020e500.setContent(html_3b2e08cb1cb98b94689df5215acac309);
marker_e60c0be77f8481450a1872b15a436009.bindPopup(popup_9ac212ac4eb407e01a4c7d075020e500)
;
var marker_03dc3d4643254746ea001d069ec50c00 = L.marker(
[1.3484104000000001, 103.68293320728537],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_0ef482efa6ca184fbd3f06367ecd3495 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkgreen", "prefix": "glyphicon"}
);
marker_03dc3d4643254746ea001d069ec50c00.setIcon(icon_0ef482efa6ca184fbd3f06367ecd3495);
var popup_e46614aad62ebec528f474d43dadbd0a = L.popup({"maxWidth": "100%"});
var html_70a7c965f978d2f6a2b093aca0cdfce0 = $(`<div id="html_70a7c965f978d2f6a2b093aca0cdfce0" style="width: 100.0%; height: 100.0%;">Nanyang Technological University (Qiming Ai)</div>`)[0];
popup_e46614aad62ebec528f474d43dadbd0a.setContent(html_70a7c965f978d2f6a2b093aca0cdfce0);
marker_03dc3d4643254746ea001d069ec50c00.bindPopup(popup_e46614aad62ebec528f474d43dadbd0a)
;
var marker_82c9ba9ee46d396bea14a021ea18fc87 = L.marker(
[54.7391503, 55.9709483],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_d8cc96c072806f5d87c5820c915dca67 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_82c9ba9ee46d396bea14a021ea18fc87.setIcon(icon_d8cc96c072806f5d87c5820c915dca67);
var popup_81bb04547d23a549da6daec4ac547cc7 = L.popup({"maxWidth": "100%"});
var html_4bcd9ce209764b3424979637fcb03978 = $(`<div id="html_4bcd9ce209764b3424979637fcb03978" style="width: 100.0%; height: 100.0%;">S-Lab (Chaofeng Chen)</div>`)[0];
popup_81bb04547d23a549da6daec4ac547cc7.setContent(html_4bcd9ce209764b3424979637fcb03978);
marker_82c9ba9ee46d396bea14a021ea18fc87.bindPopup(popup_81bb04547d23a549da6daec4ac547cc7)
;
var marker_e5af256dafddfa6c763277e1de50744a = L.marker(
[34.070877749999994, -118.44685070595054],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_f70f07eedd0d8ccfe50645f3280eda42 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "cadetblue", "prefix": "glyphicon"}
);
marker_e5af256dafddfa6c763277e1de50744a.setIcon(icon_f70f07eedd0d8ccfe50645f3280eda42);
var popup_c33c4a42d166b4453dcd4f79b557fea1 = L.popup({"maxWidth": "100%"});
var html_7b850c2136c2a18da77b3f22db90b924 = $(`<div id="html_7b850c2136c2a18da77b3f22db90b924" style="width: 100.0%; height: 100.0%;">UCLA (Runsheng Xu)</div>`)[0];
popup_c33c4a42d166b4453dcd4f79b557fea1.setContent(html_7b850c2136c2a18da77b3f22db90b924);
marker_e5af256dafddfa6c763277e1de50744a.bindPopup(popup_c33c4a42d166b4453dcd4f79b557fea1)
;
var marker_785de9b84ffe208cd6471d43d8a71fd5 = L.marker(
[40.002290450000004, 116.3209629696906],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_fcb84fe2b70651bbf314c2a65331a86c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_785de9b84ffe208cd6471d43d8a71fd5.setIcon(icon_fcb84fe2b70651bbf314c2a65331a86c);
var popup_830c07912da3d65d3ae94d3d292ba4f2 = L.popup({"maxWidth": "100%"});
var html_67112afe38b7abfa41d51d4ff8c86bf7 = $(`<div id="html_67112afe38b7abfa41d51d4ff8c86bf7" style="width: 100.0%; height: 100.0%;">Tsinghua University (Li Wang)</div>`)[0];
popup_830c07912da3d65d3ae94d3d292ba4f2.setContent(html_67112afe38b7abfa41d51d4ff8c86bf7);
marker_785de9b84ffe208cd6471d43d8a71fd5.bindPopup(popup_830c07912da3d65d3ae94d3d292ba4f2)
;
var marker_188ae723eb891b8ca3ee3d24b3376370 = L.marker(
[31.200891149999997, 121.4283949471511],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_0effbb91214e5a26e9063825663d77d2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightgray", "prefix": "glyphicon"}
);
marker_188ae723eb891b8ca3ee3d24b3376370.setIcon(icon_0effbb91214e5a26e9063825663d77d2);
var popup_aae9a06898d608004979d41e2c0fcd09 = L.popup({"maxWidth": "100%"});
var html_7cca450161eb8ef5115ab91aa74fd08a = $(`<div id="html_7cca450161eb8ef5115ab91aa74fd08a" style="width: 100.0%; height: 100.0%;">Shanghai Jiao Tong University (Yue Hu)</div>`)[0];
popup_aae9a06898d608004979d41e2c0fcd09.setContent(html_7cca450161eb8ef5115ab91aa74fd08a);
marker_188ae723eb891b8ca3ee3d24b3376370.bindPopup(popup_aae9a06898d608004979d41e2c0fcd09)
;
var marker_6cd1de3aa812dcecf3251597009a6097 = L.marker(
[38.64724015, -90.30840174694748],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_d6ca0b91b29fcf216dff630f3980cd5a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "pink", "prefix": "glyphicon"}
);
marker_6cd1de3aa812dcecf3251597009a6097.setIcon(icon_d6ca0b91b29fcf216dff630f3980cd5a);
var popup_bf2cdef1fd8acf015fe61aa460ce1265 = L.popup({"maxWidth": "100%"});
var html_ff6f12a0cb06fae5c0efad261d46d9a3 = $(`<div id="html_ff6f12a0cb06fae5c0efad261d46d9a3" style="width: 100.0%; height: 100.0%;">Washington University in St. Louis (Xiangxu YU)</div>`)[0];
popup_bf2cdef1fd8acf015fe61aa460ce1265.setContent(html_ff6f12a0cb06fae5c0efad261d46d9a3);
marker_6cd1de3aa812dcecf3251597009a6097.bindPopup(popup_bf2cdef1fd8acf015fe61aa460ce1265)
;
var marker_1ad48bc1a1d572680dcd13050ea4ac3b = L.marker(
[31.30116485, 121.49808756382322],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_bd4d91afe0f53b9c3e73bd91d1c8a74c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightred", "prefix": "glyphicon"}
);
marker_1ad48bc1a1d572680dcd13050ea4ac3b.setIcon(icon_bd4d91afe0f53b9c3e73bd91d1c8a74c);
var popup_c9dd9d1d6c431f98c6e4d56717442506 = L.popup({"maxWidth": "100%"});
var html_cdcf636ed34e32ead54f9e91e69fa736 = $(`<div id="html_cdcf636ed34e32ead54f9e91e69fa736" style="width: 100.0%; height: 100.0%;">Fudan University (Shunli Wang)</div>`)[0];
popup_c9dd9d1d6c431f98c6e4d56717442506.setContent(html_cdcf636ed34e32ead54f9e91e69fa736);
marker_1ad48bc1a1d572680dcd13050ea4ac3b.bindPopup(popup_c9dd9d1d6c431f98c6e4d56717442506)
;
var marker_c78ddf6c309bd397d136a8b6803d811a = L.marker(
[31.200891149999997, 121.4283949471511],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_f3987a858ef9f646a3cd9394a66b8b82 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "beige", "prefix": "glyphicon"}
);
marker_c78ddf6c309bd397d136a8b6803d811a.setIcon(icon_f3987a858ef9f646a3cd9394a66b8b82);
var popup_9f6ddf422f75902a88b9fae104dc4b6d = L.popup({"maxWidth": "100%"});
var html_7c4036e8ee0e78516a738ad4b5ea4b76 = $(`<div id="html_7c4036e8ee0e78516a738ad4b5ea4b76" style="width: 100.0%; height: 100.0%;">Shanghai Jiao Tong University (Xiongkuo Min (闵雄阔))</div>`)[0];
popup_9f6ddf422f75902a88b9fae104dc4b6d.setContent(html_7c4036e8ee0e78516a738ad4b5ea4b76);
marker_c78ddf6c309bd397d136a8b6803d811a.bindPopup(popup_9f6ddf422f75902a88b9fae104dc4b6d)
;
var marker_64e3b3f1f78c0a6cfdd2aa93096656f0 = L.marker(
[34.070877749999994, -118.44685070595054],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_2ca3c5a593cf57ed8a3a2b1f4dd289dd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightblue", "prefix": "glyphicon"}
);
marker_64e3b3f1f78c0a6cfdd2aa93096656f0.setIcon(icon_2ca3c5a593cf57ed8a3a2b1f4dd289dd);
var popup_e0ada12869a1721259d5b08c3656d58a = L.popup({"maxWidth": "100%"});
var html_f9a8a843f0a570dc1e5fb4bc7f85e9db = $(`<div id="html_f9a8a843f0a570dc1e5fb4bc7f85e9db" style="width: 100.0%; height: 100.0%;">UCLA (Runsheng Xu)</div>`)[0];
popup_e0ada12869a1721259d5b08c3656d58a.setContent(html_f9a8a843f0a570dc1e5fb4bc7f85e9db);
marker_64e3b3f1f78c0a6cfdd2aa93096656f0.bindPopup(popup_e0ada12869a1721259d5b08c3656d58a)
;
var marker_6e30ce2159419c40fcb5e4ad3229e2b1 = L.marker(
[51.403073899999995, -0.3032181426130893],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_2400bd35cbd53efd637ab43cbdee2cbd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_6e30ce2159419c40fcb5e4ad3229e2b1.setIcon(icon_2400bd35cbd53efd637ab43cbdee2cbd);
var popup_d956d69ebc1d3287129de89d8a62dda4 = L.popup({"maxWidth": "100%"});
var html_259f290085daa8fd555793de69dc87b2 = $(`<div id="html_259f290085daa8fd555793de69dc87b2" style="width: 100.0%; height: 100.0%;">Kingston University (Dr Nabajeet Barman)</div>`)[0];
popup_d956d69ebc1d3287129de89d8a62dda4.setContent(html_259f290085daa8fd555793de69dc87b2);
marker_6e30ce2159419c40fcb5e4ad3229e2b1.bindPopup(popup_d956d69ebc1d3287129de89d8a62dda4)
;
var marker_24bc479138991940a867ed2befc58b21 = L.marker(
[31.2323437, 121.4691024],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_969c9f12f5f8c9174a21832bcbb3a196 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "beige", "prefix": "glyphicon"}
);
marker_24bc479138991940a867ed2befc58b21.setIcon(icon_969c9f12f5f8c9174a21832bcbb3a196);
var popup_91742bc25772889d624a5a4ae049cd6e = L.popup({"maxWidth": "100%"});
var html_f14a6c03a034ee56c54632dc8d605816 = $(`<div id="html_f14a6c03a034ee56c54632dc8d605816" style="width: 100.0%; height: 100.0%;">Shanghai (Qi Zheng)</div>`)[0];
popup_91742bc25772889d624a5a4ae049cd6e.setContent(html_f14a6c03a034ee56c54632dc8d605816);
marker_24bc479138991940a867ed2befc58b21.bindPopup(popup_91742bc25772889d624a5a4ae049cd6e)
;
var marker_b2af00458af3a463b8998435ec044f00 = L.marker(
[34.0891581, -118.333448],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_8b330cc15251ec06a1ddd975d62acd36 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkpurple", "prefix": "glyphicon"}
);
marker_b2af00458af3a463b8998435ec044f00.setIcon(icon_8b330cc15251ec06a1ddd975d62acd36);
var popup_3be72537d359e152b72bc8a0887c9996 = L.popup({"maxWidth": "100%"});
var html_d6b6ea08a5faa3be3bfad7fa8fe7e937 = $(`<div id="html_d6b6ea08a5faa3be3bfad7fa8fe7e937" style="width: 100.0%; height: 100.0%;">Netflix Inc. (Christos G. Bampis)</div>`)[0];
popup_3be72537d359e152b72bc8a0887c9996.setContent(html_d6b6ea08a5faa3be3bfad7fa8fe7e937);
marker_b2af00458af3a463b8998435ec044f00.bindPopup(popup_3be72537d359e152b72bc8a0887c9996)
;
var marker_72c33c6431fc28b4771145d446ec9811 = L.marker(
[40.430028, -86.92642114650494],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_9336c2482b9bd610dec3ecdc8bcc57ba = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "darkblue", "prefix": "glyphicon"}
);
marker_72c33c6431fc28b4771145d446ec9811.setIcon(icon_9336c2482b9bd610dec3ecdc8bcc57ba);
var popup_c834157974c80ddf75c9f349a319662b = L.popup({"maxWidth": "100%"});
var html_742b290c3cac516edc196f91072ebd28 = $(`<div id="html_742b290c3cac516edc196f91072ebd28" style="width: 100.0%; height: 100.0%;">Purdue University (Yunsheng Ma)</div>`)[0];
popup_c834157974c80ddf75c9f349a319662b.setContent(html_742b290c3cac516edc196f91072ebd28);
marker_72c33c6431fc28b4771145d446ec9811.bindPopup(popup_c834157974c80ddf75c9f349a319662b)
;
var marker_38cf4f1a6886165af2090e4c0cda6929 = L.marker(
[30.6108618, -96.35206061388457],
{}
).addTo(map_eb0893ebc88795465fa4349445c71490);
var icon_4a1c54f768d4441deacb31ce98ace0df = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "lightred", "prefix": "glyphicon"}
);
marker_38cf4f1a6886165af2090e4c0cda6929.setIcon(icon_4a1c54f768d4441deacb31ce98ace0df);