-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmesomap.html
3298 lines (1913 loc) · 123 KB
/
mesomap.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/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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/leaflet@1.2.0/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://rawgit.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>
<style> #map_47cd0e7e7864422db311ebe28ffb2fa8 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_47cd0e7e7864422db311ebe28ffb2fa8" ></div>
</body>
<script>
var bounds = null;
var map_47cd0e7e7864422db311ebe28ffb2fa8 = L.map(
'map_47cd0e7e7864422db311ebe28ffb2fa8',
{center: [30.334694,-97.781949],
zoom: 10,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_8d5ff35fd9694d62823c84cebfaebed8 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var marker_584213a66df24e6b99f276ff9f8a3286 = L.marker(
[30.566111,-98.038889],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_007cc45029f644ef8773aaeabe9c7bb1 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_584213a66df24e6b99f276ff9f8a3286.setIcon(icon_007cc45029f644ef8773aaeabe9c7bb1);
var popup_658549f7bb9645049b2ab7321ee95943 = L.popup({maxWidth: '300'});
var html_bbf5b2a532a94411a124a56d19c9ef2f = $('<div id="html_bbf5b2a532a94411a124a56d19c9ef2f" style="width: 100.0%; height: 100.0%;">BALCONES</div>')[0];
popup_658549f7bb9645049b2ab7321ee95943.setContent(html_bbf5b2a532a94411a124a56d19c9ef2f);
marker_584213a66df24e6b99f276ff9f8a3286.bindPopup(popup_658549f7bb9645049b2ab7321ee95943);
var marker_e9b81ca79ada4bccadd06e7a4aefb0ab = L.marker(
[30.31667,-97.76667],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_b7691c8f44064d969dc80e2e4711aa5f = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_e9b81ca79ada4bccadd06e7a4aefb0ab.setIcon(icon_b7691c8f44064d969dc80e2e4711aa5f);
var popup_e86113e8caac48999f08af105b4524f8 = L.popup({maxWidth: '300'});
var html_4e8622c4fd2d44ff8fc53a7c69d228a9 = $('<div id="html_4e8622c4fd2d44ff8fc53a7c69d228a9" style="width: 100.0%; height: 100.0%;">Austin City, Austin Camp Mabry</div>')[0];
popup_e86113e8caac48999f08af105b4524f8.setContent(html_4e8622c4fd2d44ff8fc53a7c69d228a9);
marker_e9b81ca79ada4bccadd06e7a4aefb0ab.bindPopup(popup_e86113e8caac48999f08af105b4524f8);
var marker_3c6c996a81444570a900aabc484b0cad = L.marker(
[30.18304,-97.67987],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_ac34a3f1fed541989ce51b2d9d9fdd87 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3c6c996a81444570a900aabc484b0cad.setIcon(icon_ac34a3f1fed541989ce51b2d9d9fdd87);
var popup_897c91e6e2de4de7b787252b7e884647 = L.popup({maxWidth: '300'});
var html_6b255973f8784034a1ff5bc80a5cda15 = $('<div id="html_6b255973f8784034a1ff5bc80a5cda15" style="width: 100.0%; height: 100.0%;">Austin-Bergstrom International Airport</div>')[0];
popup_897c91e6e2de4de7b787252b7e884647.setContent(html_6b255973f8784034a1ff5bc80a5cda15);
marker_3c6c996a81444570a900aabc484b0cad.bindPopup(popup_897c91e6e2de4de7b787252b7e884647);
var marker_b97f47b4252d4a72bc2302d68a05882d = L.marker(
[30.2825,-98.06717],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_352e282f305747fea7845d3b8db5f68a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b97f47b4252d4a72bc2302d68a05882d.setIcon(icon_352e282f305747fea7845d3b8db5f68a);
var popup_8f5a3e10fa9e491186e5f33690597b65 = L.popup({maxWidth: '300'});
var html_479a9028da814218a0aa9327be031244 = $('<div id="html_479a9028da814218a0aa9327be031244" style="width: 100.0%; height: 100.0%;">CW1523 Dripping Springs</div>')[0];
popup_8f5a3e10fa9e491186e5f33690597b65.setContent(html_479a9028da814218a0aa9327be031244);
marker_b97f47b4252d4a72bc2302d68a05882d.bindPopup(popup_8f5a3e10fa9e491186e5f33690597b65);
var marker_d261a334009546bd939f77ccc7d63396 = L.marker(
[30.197,-97.9042],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_f68070b938f84e52863bb405209f40ac = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d261a334009546bd939f77ccc7d63396.setIcon(icon_f68070b938f84e52863bb405209f40ac);
var popup_d7f6c07d28e5445d96450d982286358b = L.popup({maxWidth: '300'});
var html_c8ac29564aee4f9b818059a13e6735ef = $('<div id="html_c8ac29564aee4f9b818059a13e6735ef" style="width: 100.0%; height: 100.0%;">CW3468 Austin</div>')[0];
popup_d7f6c07d28e5445d96450d982286358b.setContent(html_c8ac29564aee4f9b818059a13e6735ef);
marker_d261a334009546bd939f77ccc7d63396.bindPopup(popup_d7f6c07d28e5445d96450d982286358b);
var marker_06ab26b2d4694af784d7fd0bb97e94be = L.marker(
[30.56811,-97.94609],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_eb36ca806315491f86096c1d43ffb933 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_06ab26b2d4694af784d7fd0bb97e94be.setIcon(icon_eb36ca806315491f86096c1d43ffb933);
var popup_1924d7a6e98f4886ac34064c77a0a665 = L.popup({maxWidth: '300'});
var html_1c10761711974d9889e96efa950172e1 = $('<div id="html_1c10761711974d9889e96efa950172e1" style="width: 100.0%; height: 100.0%;">CW4490 Leander</div>')[0];
popup_1924d7a6e98f4886ac34064c77a0a665.setContent(html_1c10761711974d9889e96efa950172e1);
marker_06ab26b2d4694af784d7fd0bb97e94be.bindPopup(popup_1924d7a6e98f4886ac34064c77a0a665);
var marker_71598cecccb74eb1a2e613be6e70d79b = L.marker(
[30.18105,-97.86115],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_5e3a0c08ba4941c293f953c43640517b = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_71598cecccb74eb1a2e613be6e70d79b.setIcon(icon_5e3a0c08ba4941c293f953c43640517b);
var popup_2d4ddbc478154535aa2dc71a0d33dc32 = L.popup({maxWidth: '300'});
var html_3cfff232fa754b8eb65fb637e08293ae = $('<div id="html_3cfff232fa754b8eb65fb637e08293ae" style="width: 100.0%; height: 100.0%;">CW0133 Austin</div>')[0];
popup_2d4ddbc478154535aa2dc71a0d33dc32.setContent(html_3cfff232fa754b8eb65fb637e08293ae);
marker_71598cecccb74eb1a2e613be6e70d79b.bindPopup(popup_2d4ddbc478154535aa2dc71a0d33dc32);
var marker_11599041cda7405184a32eb20607aac1 = L.marker(
[30.23007,-97.77566],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_642bb9ef986840bfafa5eb8a7896359c = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_11599041cda7405184a32eb20607aac1.setIcon(icon_642bb9ef986840bfafa5eb8a7896359c);
var popup_e0b03c8c28d5403196313b3e0bdcd5b9 = L.popup({maxWidth: '300'});
var html_2f5652d373014b309f6df01e5fbfe310 = $('<div id="html_2f5652d373014b309f6df01e5fbfe310" style="width: 100.0%; height: 100.0%;">VINSON</div>')[0];
popup_e0b03c8c28d5403196313b3e0bdcd5b9.setContent(html_2f5652d373014b309f6df01e5fbfe310);
marker_11599041cda7405184a32eb20607aac1.bindPopup(popup_e0b03c8c28d5403196313b3e0bdcd5b9);
var marker_c772359ee94d43a5a9d3c08e7baffb54 = L.marker(
[30.3575,-97.72333],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_47b58dc225544512a903f8345bf605b8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c772359ee94d43a5a9d3c08e7baffb54.setIcon(icon_47b58dc225544512a903f8345bf605b8);
var popup_13f94d3629ee4e38b27a07eff43372d9 = L.popup({maxWidth: '300'});
var html_8942a939db6c42a2a58bbf2c3c638707 = $('<div id="html_8942a939db6c42a2a58bbf2c3c638707" style="width: 100.0%; height: 100.0%;">CW6155 Austin</div>')[0];
popup_13f94d3629ee4e38b27a07eff43372d9.setContent(html_8942a939db6c42a2a58bbf2c3c638707);
marker_c772359ee94d43a5a9d3c08e7baffb54.bindPopup(popup_13f94d3629ee4e38b27a07eff43372d9);
var marker_0ddfae2f529640b6935f141339b7d164 = L.marker(
[30.35583,-97.7125],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_417778404bea47c1aab9c40e6fc63a22 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0ddfae2f529640b6935f141339b7d164.setIcon(icon_417778404bea47c1aab9c40e6fc63a22);
var popup_2d58fcb5e4414312a3a09d3d1e0b29cd = L.popup({maxWidth: '300'});
var html_db31022987f94a1296c5feeeff434490 = $('<div id="html_db31022987f94a1296c5feeeff434490" style="width: 100.0%; height: 100.0%;">KC5MUJ-1 Austin</div>')[0];
popup_2d58fcb5e4414312a3a09d3d1e0b29cd.setContent(html_db31022987f94a1296c5feeeff434490);
marker_0ddfae2f529640b6935f141339b7d164.bindPopup(popup_2d58fcb5e4414312a3a09d3d1e0b29cd);
var marker_caa1d517c46842ca96af04de93c01e42 = L.marker(
[30.37105,-97.95766],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_c7d489e5327c49dc98c1d3e72761168a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_caa1d517c46842ca96af04de93c01e42.setIcon(icon_c7d489e5327c49dc98c1d3e72761168a);
var popup_114e76ef42db4e9ba19f02515a9412fe = L.popup({maxWidth: '300'});
var html_8638382e18bb42989bc84dc690a406b8 = $('<div id="html_8638382e18bb42989bc84dc690a406b8" style="width: 100.0%; height: 100.0%;">CW7869 Austin</div>')[0];
popup_114e76ef42db4e9ba19f02515a9412fe.setContent(html_8638382e18bb42989bc84dc690a406b8);
marker_caa1d517c46842ca96af04de93c01e42.bindPopup(popup_114e76ef42db4e9ba19f02515a9412fe);
var marker_8a92ba6284754ca38ac6c909a4811be1 = L.marker(
[30.41946,-98.01049],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_7225dedbe4d4454581a1fa54657bd546 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8a92ba6284754ca38ac6c909a4811be1.setIcon(icon_7225dedbe4d4454581a1fa54657bd546);
var popup_8d0ab6fb1ae64c7cae33bacb461c3c99 = L.popup({maxWidth: '300'});
var html_16430a02aa8541acac7c490773a521a9 = $('<div id="html_16430a02aa8541acac7c490773a521a9" style="width: 100.0%; height: 100.0%;">CW6339 Lago Vista</div>')[0];
popup_8d0ab6fb1ae64c7cae33bacb461c3c99.setContent(html_16430a02aa8541acac7c490773a521a9);
marker_8a92ba6284754ca38ac6c909a4811be1.bindPopup(popup_8d0ab6fb1ae64c7cae33bacb461c3c99);
var marker_6bac0be69c7847698a53a75b37e079d2 = L.marker(
[30.47,-97.865],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_c01418f536c84c39a0905f7e1e9bda24 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6bac0be69c7847698a53a75b37e079d2.setIcon(icon_c01418f536c84c39a0905f7e1e9bda24);
var popup_e7edf5b30fed45a0b0286cd9c81f1e49 = L.popup({maxWidth: '300'});
var html_6875633dab8d47e9b8944c6c6497da69 = $('<div id="html_6875633dab8d47e9b8944c6c6497da69" style="width: 100.0%; height: 100.0%;">DW1850 Cedar Park</div>')[0];
popup_e7edf5b30fed45a0b0286cd9c81f1e49.setContent(html_6875633dab8d47e9b8944c6c6497da69);
marker_6bac0be69c7847698a53a75b37e079d2.bindPopup(popup_e7edf5b30fed45a0b0286cd9c81f1e49);
var marker_fbd896bdd15e4feb8529419de71e1635 = L.marker(
[30.47583,-97.57167],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_d3fc22b4a0af47e99d3c818aa23abecd = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_fbd896bdd15e4feb8529419de71e1635.setIcon(icon_d3fc22b4a0af47e99d3c818aa23abecd);
var popup_425b3e9dac894b04aa3023dbce5e0a9d = L.popup({maxWidth: '300'});
var html_2c23b27e67a44bd7a8762fdb5d747c86 = $('<div id="html_2c23b27e67a44bd7a8762fdb5d747c86" style="width: 100.0%; height: 100.0%;">DW4521 Pflugerville</div>')[0];
popup_425b3e9dac894b04aa3023dbce5e0a9d.setContent(html_2c23b27e67a44bd7a8762fdb5d747c86);
marker_fbd896bdd15e4feb8529419de71e1635.bindPopup(popup_425b3e9dac894b04aa3023dbce5e0a9d);
var marker_556263d108544ea198017bc065ee78b1 = L.marker(
[30.4967,-97.9659],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_378ba78d9b454618b2889f7b5220b2e5 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_556263d108544ea198017bc065ee78b1.setIcon(icon_378ba78d9b454618b2889f7b5220b2e5);
var popup_e4ffd0bce30744009e52efbe6d2f07ea = L.popup({maxWidth: '300'});
var html_16cbb8a2ed5f4ace801d683032b9d719 = $('<div id="html_16cbb8a2ed5f4ace801d683032b9d719" style="width: 100.0%; height: 100.0%;">Lago Vista TX, Rusty Allen Airport</div>')[0];
popup_e4ffd0bce30744009e52efbe6d2f07ea.setContent(html_16cbb8a2ed5f4ace801d683032b9d719);
marker_556263d108544ea198017bc065ee78b1.bindPopup(popup_e4ffd0bce30744009e52efbe6d2f07ea);
var marker_667f5b0c2ebd496dacc6eb90b449fe66 = L.marker(
[30.3925,-97.5621],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_42dc9f78857c47349db829b871aebe7d = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_667f5b0c2ebd496dacc6eb90b449fe66.setIcon(icon_42dc9f78857c47349db829b871aebe7d);
var popup_2514fc55619b4755bfff76f107aa666a = L.popup({maxWidth: '300'});
var html_eb50297a235c42e69a84cc9135303428 = $('<div id="html_eb50297a235c42e69a84cc9135303428" style="width: 100.0%; height: 100.0%;">Austin Executive Airport</div>')[0];
popup_2514fc55619b4755bfff76f107aa666a.setContent(html_eb50297a235c42e69a84cc9135303428);
marker_667f5b0c2ebd496dacc6eb90b449fe66.bindPopup(popup_2514fc55619b4755bfff76f107aa666a);
var marker_74201dcd5c464ae6b6f567a550e4e758 = L.marker(
[30.3136,-97.7614],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_8b81845eb05244958131f8fde09a5caf = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_74201dcd5c464ae6b6f567a550e4e758.setIcon(icon_8b81845eb05244958131f8fde09a5caf);
var popup_2c80d7058ad6475a9b7de249303263a3 = L.popup({maxWidth: '300'});
var html_1b582a0ef06c4c1f90f49a0f0bc57427 = $('<div id="html_1b582a0ef06c4c1f90f49a0f0bc57427" style="width: 100.0%; height: 100.0%;">Camp Mabry KATT C5001</div>')[0];
popup_2c80d7058ad6475a9b7de249303263a3.setContent(html_1b582a0ef06c4c1f90f49a0f0bc57427);
marker_74201dcd5c464ae6b6f567a550e4e758.bindPopup(popup_2c80d7058ad6475a9b7de249303263a3);
var marker_34d428c5c3ec4349b77c253646289f28 = L.marker(
[30.3542,-97.76],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_a1de6350c03043c0ab4cdbf0d1012ef8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_34d428c5c3ec4349b77c253646289f28.setIcon(icon_a1de6350c03043c0ab4cdbf0d1012ef8);
var popup_59e60f2b35a54b7eb381fe5bed6ae85d = L.popup({maxWidth: '300'});
var html_8580edd174f349309469b67bcb0e0a66 = $('<div id="html_8580edd174f349309469b67bcb0e0a66" style="width: 100.0%; height: 100.0%;">Austin Northwest C3</div>')[0];
popup_59e60f2b35a54b7eb381fe5bed6ae85d.setContent(html_8580edd174f349309469b67bcb0e0a66);
marker_34d428c5c3ec4349b77c253646289f28.bindPopup(popup_59e60f2b35a54b7eb381fe5bed6ae85d);
var marker_bd00d486565649749c0f122c44014fa3 = L.marker(
[30.2633,-97.7131],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_c5265def1dd442e4b6f0fc1a50cbc75c = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bd00d486565649749c0f122c44014fa3.setIcon(icon_c5265def1dd442e4b6f0fc1a50cbc75c);
var popup_d153355fa31948a6bd34404709d20fbb = L.popup({maxWidth: '300'});
var html_5f543b22a3ee41dea94818091eb34f90 = $('<div id="html_5f543b22a3ee41dea94818091eb34f90" style="width: 100.0%; height: 100.0%;">Austin Webberville Road C171</div>')[0];
popup_d153355fa31948a6bd34404709d20fbb.setContent(html_5f543b22a3ee41dea94818091eb34f90);
marker_bd00d486565649749c0f122c44014fa3.bindPopup(popup_d153355fa31948a6bd34404709d20fbb);
var marker_4e6b3882037745b3b63a17f8a605b388 = L.marker(
[30.4832,-97.8722],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_af8b317093d64c16ae84779d75b5b4a9 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_4e6b3882037745b3b63a17f8a605b388.setIcon(icon_af8b317093d64c16ae84779d75b5b4a9);
var popup_1249271b10a64327873edee0e5b23e50 = L.popup({maxWidth: '300'});
var html_430785060b5d42a08a96fa201e68fd54 = $('<div id="html_430785060b5d42a08a96fa201e68fd54" style="width: 100.0%; height: 100.0%;">Audubon C38</div>')[0];
popup_1249271b10a64327873edee0e5b23e50.setContent(html_430785060b5d42a08a96fa201e68fd54);
marker_4e6b3882037745b3b63a17f8a605b388.bindPopup(popup_1249271b10a64327873edee0e5b23e50);
var marker_7e4361bb0e784838b54625f9a657299c = L.marker(
[30.425,-97.86167],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_bc375249fc0446f6a161cb7c9d7f3216 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_7e4361bb0e784838b54625f9a657299c.setIcon(icon_bc375249fc0446f6a161cb7c9d7f3216);
var popup_de29a1c97ef5492d99e0241869136866 = L.popup({maxWidth: '300'});
var html_9ad161cc62eb48d49bf94530d10f94fc = $('<div id="html_9ad161cc62eb48d49bf94530d10f94fc" style="width: 100.0%; height: 100.0%;">DW6780 Austin</div>')[0];
popup_de29a1c97ef5492d99e0241869136866.setContent(html_9ad161cc62eb48d49bf94530d10f94fc);
marker_7e4361bb0e784838b54625f9a657299c.bindPopup(popup_de29a1c97ef5492d99e0241869136866);
var marker_5c72290f5d204ce8a8bf991c87e147fe = L.marker(
[30.2245,-97.837],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_4a02d72da11c43bdbbde85be8d0375e4 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5c72290f5d204ce8a8bf991c87e147fe.setIcon(icon_4a02d72da11c43bdbbde85be8d0375e4);
var popup_25c8b811349b4dc9b3f855a2ca387ad4 = L.popup({maxWidth: '300'});
var html_a6e744c35c7d46cbb1ffc168bd71931f = $('<div id="html_a6e744c35c7d46cbb1ffc168bd71931f" style="width: 100.0%; height: 100.0%;">DW7423 Austin</div>')[0];
popup_25c8b811349b4dc9b3f855a2ca387ad4.setContent(html_a6e744c35c7d46cbb1ffc168bd71931f);
marker_5c72290f5d204ce8a8bf991c87e147fe.bindPopup(popup_25c8b811349b4dc9b3f855a2ca387ad4);
var marker_a6b0dc2c60e240e1906493fe807b2cef = L.marker(
[30.42427,-97.73343],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_066fd063acb245a69b6daba306aa2544 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a6b0dc2c60e240e1906493fe807b2cef.setIcon(icon_066fd063acb245a69b6daba306aa2544);
var popup_a08757d2d0da49719f1f66ddaa727720 = L.popup({maxWidth: '300'});
var html_c28b359bafbb4e57afd1d210686b3eae = $('<div id="html_c28b359bafbb4e57afd1d210686b3eae" style="width: 100.0%; height: 100.0%;">KF5JLK Austin</div>')[0];
popup_a08757d2d0da49719f1f66ddaa727720.setContent(html_c28b359bafbb4e57afd1d210686b3eae);
marker_a6b0dc2c60e240e1906493fe807b2cef.bindPopup(popup_a08757d2d0da49719f1f66ddaa727720);
var marker_f416c3ccac954de58da6e9e1b8a41be0 = L.marker(
[30.31883,-97.72117],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_85629417e2324bfb90b50fee05a7234a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f416c3ccac954de58da6e9e1b8a41be0.setIcon(icon_85629417e2324bfb90b50fee05a7234a);
var popup_fed3406dd6484c919cb6a87f77defe70 = L.popup({maxWidth: '300'});
var html_adf34686a2344edf8f74f213f6dcda77 = $('<div id="html_adf34686a2344edf8f74f213f6dcda77" style="width: 100.0%; height: 100.0%;">KB5PRZ Austin</div>')[0];
popup_fed3406dd6484c919cb6a87f77defe70.setContent(html_adf34686a2344edf8f74f213f6dcda77);
marker_f416c3ccac954de58da6e9e1b8a41be0.bindPopup(popup_fed3406dd6484c919cb6a87f77defe70);
var marker_4bb504ba52064b768a475ff8cc930f26 = L.marker(
[30.23333,-97.76467],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_0650ad832e7447f9aa827e38656c4871 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_4bb504ba52064b768a475ff8cc930f26.setIcon(icon_0650ad832e7447f9aa827e38656c4871);
var popup_dc404a5aff42468ca1574c74f37cb44a = L.popup({maxWidth: '300'});
var html_4b77b7bcdcef4ad28bd7515b6ab08565 = $('<div id="html_4b77b7bcdcef4ad28bd7515b6ab08565" style="width: 100.0%; height: 100.0%;">DW9418 Austin</div>')[0];
popup_dc404a5aff42468ca1574c74f37cb44a.setContent(html_4b77b7bcdcef4ad28bd7515b6ab08565);
marker_4bb504ba52064b768a475ff8cc930f26.bindPopup(popup_dc404a5aff42468ca1574c74f37cb44a);
var marker_d1ca4cf2c9e64b089b749b93bcfede8b = L.marker(
[30.4172,-97.77824],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_0a66326cce954005bb3ed85403809fc6 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d1ca4cf2c9e64b089b749b93bcfede8b.setIcon(icon_0a66326cce954005bb3ed85403809fc6);
var popup_f74ddd5384124ba5800fe2aa21930475 = L.popup({maxWidth: '300'});
var html_38f37596177f4e26a9e209e313bba448 = $('<div id="html_38f37596177f4e26a9e209e313bba448" style="width: 100.0%; height: 100.0%;">DW9484 Austin</div>')[0];
popup_f74ddd5384124ba5800fe2aa21930475.setContent(html_38f37596177f4e26a9e209e313bba448);
marker_d1ca4cf2c9e64b089b749b93bcfede8b.bindPopup(popup_f74ddd5384124ba5800fe2aa21930475);
var marker_b24dd00693e444188e0af927abd89b04 = L.marker(
[30.27671,-97.83725],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_46f4c36a6f7f4eb0b630b06f85d64a86 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b24dd00693e444188e0af927abd89b04.setIcon(icon_46f4c36a6f7f4eb0b630b06f85d64a86);
var popup_67704408d5e7487883cb99814d9092af = L.popup({maxWidth: '300'});
var html_79248bd83a8c48e2ae58e34c6e1fb26f = $('<div id="html_79248bd83a8c48e2ae58e34c6e1fb26f" style="width: 100.0%; height: 100.0%;">EW0214 Austin</div>')[0];
popup_67704408d5e7487883cb99814d9092af.setContent(html_79248bd83a8c48e2ae58e34c6e1fb26f);
marker_b24dd00693e444188e0af927abd89b04.bindPopup(popup_67704408d5e7487883cb99814d9092af);
var marker_55bb60b6daa948daa400b20497e37dab = L.marker(
[30.33,-97.77],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_c9c689cb09d54fe58a73120cf98f57ea = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_55bb60b6daa948daa400b20497e37dab.setIcon(icon_c9c689cb09d54fe58a73120cf98f57ea);
var popup_3e3ebbb5c84d460f8eb8215968467bc3 = L.popup({maxWidth: '300'});
var html_18fdb006c1c64ec1bbb5a82f8239cff2 = $('<div id="html_18fdb006c1c64ec1bbb5a82f8239cff2" style="width: 100.0%; height: 100.0%;">EW0335 Austin</div>')[0];
popup_3e3ebbb5c84d460f8eb8215968467bc3.setContent(html_18fdb006c1c64ec1bbb5a82f8239cff2);
marker_55bb60b6daa948daa400b20497e37dab.bindPopup(popup_3e3ebbb5c84d460f8eb8215968467bc3);
var marker_2603a6ed91b84c6a93b26529e4f5bf5b = L.marker(
[30.1944,-97.67],
{
icon: new L.Icon.Default()
}
)
.addTo(map_47cd0e7e7864422db311ebe28ffb2fa8);
var icon_9017d42c45214d5aa2433f9e8700d972 = L.AwesomeMarkers.icon({