-
Notifications
You must be signed in to change notification settings - Fork 0
/
district7.html
8879 lines (4226 loc) · 467 KB
/
district7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_0b09c8cd2bd242e1a2a1cbc39b17747d {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_0b09c8cd2bd242e1a2a1cbc39b17747d" ></div>
</body>
<script>
var map_0b09c8cd2bd242e1a2a1cbc39b17747d = L.map(
"map_0b09c8cd2bd242e1a2a1cbc39b17747d",
{
center: [30.268954, -97.75422],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_4c0d6f7c82e147728d9409ad097e4a16 = 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_0b09c8cd2bd242e1a2a1cbc39b17747d);
var circle_marker_1e394d5d26734cb695013f9f08bf8bdb = L.circleMarker(
[30.3324947, -97.7432422],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_bd98c50b34e2464bb9a3bb0fbc8a4d0d = L.popup({"maxWidth": "100%"});
var html_a174f963815340c6aec150c0188c2832 = $(`<div id="html_a174f963815340c6aec150c0188c2832" style="width: 100.0%; height: 100.0%;">5610 SHOALWOOD AVE <br></br> 2013-057868 BP</div>`)[0];
popup_bd98c50b34e2464bb9a3bb0fbc8a4d0d.setContent(html_a174f963815340c6aec150c0188c2832);
circle_marker_1e394d5d26734cb695013f9f08bf8bdb.bindPopup(popup_bd98c50b34e2464bb9a3bb0fbc8a4d0d)
;
var circle_marker_8c4dad40b791407d8121965fc296d4ed = L.circleMarker(
[30.33024039, -97.74165719],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_a0c4beda40694f9dba9a8329348d7043 = L.popup({"maxWidth": "100%"});
var html_3bdfc4656dd1433ebcc01ba92d63404e = $(`<div id="html_3bdfc4656dd1433ebcc01ba92d63404e" style="width: 100.0%; height: 100.0%;">5500 MONTVIEW ST <br></br> 2014-010645 BP</div>`)[0];
popup_a0c4beda40694f9dba9a8329348d7043.setContent(html_3bdfc4656dd1433ebcc01ba92d63404e);
circle_marker_8c4dad40b791407d8121965fc296d4ed.bindPopup(popup_a0c4beda40694f9dba9a8329348d7043)
;
var circle_marker_000aaff0f50c44c3abe1dc7ec1f801a1 = L.circleMarker(
[30.37160945, -97.7284033],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_4c0e7fac91df459dab964f5a389c7dd8 = L.popup({"maxWidth": "100%"});
var html_d518eae5924c44648e52d35590afe819 = $(`<div id="html_d518eae5924c44648e52d35590afe819" style="width: 100.0%; height: 100.0%;">8715 PRIMROSE LN <br></br> 2014-081215 BP</div>`)[0];
popup_4c0e7fac91df459dab964f5a389c7dd8.setContent(html_d518eae5924c44648e52d35590afe819);
circle_marker_000aaff0f50c44c3abe1dc7ec1f801a1.bindPopup(popup_4c0e7fac91df459dab964f5a389c7dd8)
;
var circle_marker_8940832c7fcf45978559d80ea6485cd8 = L.circleMarker(
[30.3461503, -97.71898768],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_7bab6fea9d68434b9cc25eb58da3c965 = L.popup({"maxWidth": "100%"});
var html_04c16f6e75994d7a841870d6affe6494 = $(`<div id="html_04c16f6e75994d7a841870d6affe6494" style="width: 100.0%; height: 100.0%;">1106 MORROW ST BLDG 1 <br></br> 2016-121666 BP</div>`)[0];
popup_7bab6fea9d68434b9cc25eb58da3c965.setContent(html_04c16f6e75994d7a841870d6affe6494);
circle_marker_8940832c7fcf45978559d80ea6485cd8.bindPopup(popup_7bab6fea9d68434b9cc25eb58da3c965)
;
var circle_marker_4df814d0a36f48a7bae2a5285bae96d2 = L.circleMarker(
[30.3970051, -97.72428422],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_3107236905504c97af36148acf86479d = L.popup({"maxWidth": "100%"});
var html_dc39c938ef0541dbb5231f67982b285e = $(`<div id="html_dc39c938ef0541dbb5231f67982b285e" style="width: 100.0%; height: 100.0%;">3100 KRAMER LN <br></br> 2016-145543 BP</div>`)[0];
popup_3107236905504c97af36148acf86479d.setContent(html_dc39c938ef0541dbb5231f67982b285e);
circle_marker_4df814d0a36f48a7bae2a5285bae96d2.bindPopup(popup_3107236905504c97af36148acf86479d)
;
var circle_marker_4b6e71e4b3a148f9a9e7414cb552ae1e = L.circleMarker(
[30.31932663, -97.73864697],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_5c5fd9fd4f404527a47f7ea2db0c593c = L.popup({"maxWidth": "100%"});
var html_2b3f2c9789fa45ab9db9563e418d81e4 = $(`<div id="html_2b3f2c9789fa45ab9db9563e418d81e4" style="width: 100.0%; height: 100.0%;">4811 WOODROW AVE <br></br> 2017-069549 BP</div>`)[0];
popup_5c5fd9fd4f404527a47f7ea2db0c593c.setContent(html_2b3f2c9789fa45ab9db9563e418d81e4);
circle_marker_4b6e71e4b3a148f9a9e7414cb552ae1e.bindPopup(popup_5c5fd9fd4f404527a47f7ea2db0c593c)
;
var circle_marker_14357bcef7a64e6eb74e6486d347a54c = L.circleMarker(
[30.31932663, -97.73864697],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_115fe6acfec148e0a98498ba126f61cc = L.popup({"maxWidth": "100%"});
var html_86fc21ccf0e3497eac74d3e63c3aa136 = $(`<div id="html_86fc21ccf0e3497eac74d3e63c3aa136" style="width: 100.0%; height: 100.0%;">4811 WOODROW AVE <br></br> 2017-069551 BP</div>`)[0];
popup_115fe6acfec148e0a98498ba126f61cc.setContent(html_86fc21ccf0e3497eac74d3e63c3aa136);
circle_marker_14357bcef7a64e6eb74e6486d347a54c.bindPopup(popup_115fe6acfec148e0a98498ba126f61cc)
;
var circle_marker_f823e3a16993429c938af6d8ed7b9741 = L.circleMarker(
[30.32700761, -97.74377946],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_0ff9d910ac1949e586744b72efab71c6 = L.popup({"maxWidth": "100%"});
var html_922c8b53612549ae8d75d5caec7ad89a = $(`<div id="html_922c8b53612549ae8d75d5caec7ad89a" style="width: 100.0%; height: 100.0%;">5211 WOODVIEW AVE <br></br> 2017-089040 BP</div>`)[0];
popup_0ff9d910ac1949e586744b72efab71c6.setContent(html_922c8b53612549ae8d75d5caec7ad89a);
circle_marker_f823e3a16993429c938af6d8ed7b9741.bindPopup(popup_0ff9d910ac1949e586744b72efab71c6)
;
var circle_marker_cd842c20e74747b8b1d2f4ce0f8fc861 = L.circleMarker(
[30.39589706, -97.72511373],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_041983c9d49d4f7d90faa326862293a2 = L.popup({"maxWidth": "100%"});
var html_1563e2b6e14a40589ce734f7441c565c = $(`<div id="html_1563e2b6e14a40589ce734f7441c565c" style="width: 100.0%; height: 100.0%;">11001 AUSTIN LN <br></br> 2017-106752 BP</div>`)[0];
popup_041983c9d49d4f7d90faa326862293a2.setContent(html_1563e2b6e14a40589ce734f7441c565c);
circle_marker_cd842c20e74747b8b1d2f4ce0f8fc861.bindPopup(popup_041983c9d49d4f7d90faa326862293a2)
;
var circle_marker_b6d12d3ffdf2431d9ad2488ad36fa593 = L.circleMarker(
[30.32286661, -97.73811744],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_2d9f78c57681414e8892cf205fd27555 = L.popup({"maxWidth": "100%"});
var html_e539c5dfb81e4f7b8a1bf8297b5f5ef1 = $(`<div id="html_e539c5dfb81e4f7b8a1bf8297b5f5ef1" style="width: 100.0%; height: 100.0%;">1415 NORTH ST <br></br> 2017-111191 BP</div>`)[0];
popup_2d9f78c57681414e8892cf205fd27555.setContent(html_e539c5dfb81e4f7b8a1bf8297b5f5ef1);
circle_marker_b6d12d3ffdf2431d9ad2488ad36fa593.bindPopup(popup_2d9f78c57681414e8892cf205fd27555)
;
var circle_marker_1080213ffa9d4f1f9f2a3f4855048e4c = L.circleMarker(
[30.39725993, -97.67918239],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_074f8a7b19104b4ba9ab738318b5f916 = L.popup({"maxWidth": "100%"});
var html_5c6eb47613474a31a2dbe0876043e0cf = $(`<div id="html_5c6eb47613474a31a2dbe0876043e0cf" style="width: 100.0%; height: 100.0%;">12516 WALNUT PARK XING <br></br> 2017-134012 BP</div>`)[0];
popup_074f8a7b19104b4ba9ab738318b5f916.setContent(html_5c6eb47613474a31a2dbe0876043e0cf);
circle_marker_1080213ffa9d4f1f9f2a3f4855048e4c.bindPopup(popup_074f8a7b19104b4ba9ab738318b5f916)
;
var circle_marker_aed5b874db01463eb82721b68afa50d7 = L.circleMarker(
[30.3537162, -97.71708277],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_0ed4196bd2e6496b8cdc6a24aa174077 = L.popup({"maxWidth": "100%"});
var html_4280005edf4847629f5904f1535c55d6 = $(`<div id="html_4280005edf4847629f5904f1535c55d6" style="width: 100.0%; height: 100.0%;">8017 TISDALE DR <br></br> 2017-160228 BP</div>`)[0];
popup_0ed4196bd2e6496b8cdc6a24aa174077.setContent(html_4280005edf4847629f5904f1535c55d6);
circle_marker_aed5b874db01463eb82721b68afa50d7.bindPopup(popup_0ed4196bd2e6496b8cdc6a24aa174077)
;
var circle_marker_bb42db2d7d0a48eda77e092caa1ad77a = L.circleMarker(
[30.42988563, -97.69856501],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_3722a659a15d411fb436f316618a8194 = L.popup({"maxWidth": "100%"});
var html_3fc4a1c796ae4f299c7883c765b4bb1d = $(`<div id="html_3fc4a1c796ae4f299c7883c765b4bb1d" style="width: 100.0%; height: 100.0%;">3001 SCOFIELD RIDGE PKWY BLDG 1 <br></br> 2018-010375 BP</div>`)[0];
popup_3722a659a15d411fb436f316618a8194.setContent(html_3fc4a1c796ae4f299c7883c765b4bb1d);
circle_marker_bb42db2d7d0a48eda77e092caa1ad77a.bindPopup(popup_3722a659a15d411fb436f316618a8194)
;
var circle_marker_bbc9b5ac486d42aaa1b439fcecd170e5 = L.circleMarker(
[30.42988563, -97.69856501],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_6f5c992f471e4fcd845edc476043d91c = L.popup({"maxWidth": "100%"});
var html_5c9fa80f7cbe43e3a214fc21679bf2cf = $(`<div id="html_5c9fa80f7cbe43e3a214fc21679bf2cf" style="width: 100.0%; height: 100.0%;">3001 SCOFIELD RIDGE PKWY <br></br> 2018-016139 BP</div>`)[0];
popup_6f5c992f471e4fcd845edc476043d91c.setContent(html_5c9fa80f7cbe43e3a214fc21679bf2cf);
circle_marker_bbc9b5ac486d42aaa1b439fcecd170e5.bindPopup(popup_6f5c992f471e4fcd845edc476043d91c)
;
var circle_marker_3e8341b50a6e48eaaf3cf7196d002554 = L.circleMarker(
[30.39589706, -97.72511373],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_c5dd5113f8b74622b0a9d392defae3d0 = L.popup({"maxWidth": "100%"});
var html_01a26cc7472b435f895c3c99bce4e8a8 = $(`<div id="html_01a26cc7472b435f895c3c99bce4e8a8" style="width: 100.0%; height: 100.0%;">11001 AUSTIN LN BLDG 1 <br></br> 2018-019335 BP</div>`)[0];
popup_c5dd5113f8b74622b0a9d392defae3d0.setContent(html_01a26cc7472b435f895c3c99bce4e8a8);
circle_marker_3e8341b50a6e48eaaf3cf7196d002554.bindPopup(popup_c5dd5113f8b74622b0a9d392defae3d0)
;
var circle_marker_5dec5b39b2a34db4b5a7de4c5838ab86 = L.circleMarker(
[30.39589706, -97.72511373],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_3e61364a140e417db027ce56bea43bd7 = L.popup({"maxWidth": "100%"});
var html_7d25cbc095014850ba011473420c2b3f = $(`<div id="html_7d25cbc095014850ba011473420c2b3f" style="width: 100.0%; height: 100.0%;">11001 AUSTIN LN BLDG 2 <br></br> 2018-019336 BP</div>`)[0];
popup_3e61364a140e417db027ce56bea43bd7.setContent(html_7d25cbc095014850ba011473420c2b3f);
circle_marker_5dec5b39b2a34db4b5a7de4c5838ab86.bindPopup(popup_3e61364a140e417db027ce56bea43bd7)
;
var circle_marker_a47cb47d09c240349073fb7aabbbb43e = L.circleMarker(
[30.39589706, -97.72511373],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_afe5045038ce4181a647159b7a155954 = L.popup({"maxWidth": "100%"});
var html_e13f1e90748f4d3bbdba72d57f5a94e8 = $(`<div id="html_e13f1e90748f4d3bbdba72d57f5a94e8" style="width: 100.0%; height: 100.0%;">11001 AUSTIN LN BLDG 3 <br></br> 2018-019337 BP</div>`)[0];
popup_afe5045038ce4181a647159b7a155954.setContent(html_e13f1e90748f4d3bbdba72d57f5a94e8);
circle_marker_a47cb47d09c240349073fb7aabbbb43e.bindPopup(popup_afe5045038ce4181a647159b7a155954)
;
var circle_marker_03ea38b9e56f4caba7d5a2a9fee02044 = L.circleMarker(
[30.34776525, -97.72157597],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_3381e255128a47cda7f344e63c570ff2 = L.popup({"maxWidth": "100%"});
var html_4b2c8838b75641e8a5c2dcf36ff0055a = $(`<div id="html_4b2c8838b75641e8a5c2dcf36ff0055a" style="width: 100.0%; height: 100.0%;">7602 TISDALE DR <br></br> 2018-073495 BP</div>`)[0];
popup_3381e255128a47cda7f344e63c570ff2.setContent(html_4b2c8838b75641e8a5c2dcf36ff0055a);
circle_marker_03ea38b9e56f4caba7d5a2a9fee02044.bindPopup(popup_3381e255128a47cda7f344e63c570ff2)
;
var circle_marker_af8a144a964540948fc1f4cda90f1d87 = L.circleMarker(
[30.39789572, -97.66845657],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_59635399a36a41f095b372648b34cfd6 = L.popup({"maxWidth": "100%"});
var html_f2271080b1164c4ca806e0edf294d0e7 = $(`<div id="html_f2271080b1164c4ca806e0edf294d0e7" style="width: 100.0%; height: 100.0%;">106 CANYON RIDGE DR <br></br> 2018-097115 BP</div>`)[0];
popup_59635399a36a41f095b372648b34cfd6.setContent(html_f2271080b1164c4ca806e0edf294d0e7);
circle_marker_af8a144a964540948fc1f4cda90f1d87.bindPopup(popup_59635399a36a41f095b372648b34cfd6)
;
var circle_marker_59387effadc74b1caeee2831c45ad0c9 = L.circleMarker(
[30.32227352, -97.74210896],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_987d99520d734985a0fe566132b30208 = L.popup({"maxWidth": "100%"});
var html_b0976d719b7d44ceb02f14dc1d36e8c4 = $(`<div id="html_b0976d719b7d44ceb02f14dc1d36e8c4" style="width: 100.0%; height: 100.0%;">4907 SHADY GLADE CT <br></br> 2018-136198 BP</div>`)[0];
popup_987d99520d734985a0fe566132b30208.setContent(html_b0976d719b7d44ceb02f14dc1d36e8c4);
circle_marker_59387effadc74b1caeee2831c45ad0c9.bindPopup(popup_987d99520d734985a0fe566132b30208)
;
var circle_marker_39db82a98f1d49109c1dc9243707dbae = L.circleMarker(
[30.32227352, -97.74210896],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_cf4bd94009f14a20907ae01ffa40c0e0 = L.popup({"maxWidth": "100%"});
var html_db4532d6604c4be0a84bb3fb6355c386 = $(`<div id="html_db4532d6604c4be0a84bb3fb6355c386" style="width: 100.0%; height: 100.0%;">4907 SHADY GLADE CT <br></br> 2018-136199 BP</div>`)[0];
popup_cf4bd94009f14a20907ae01ffa40c0e0.setContent(html_db4532d6604c4be0a84bb3fb6355c386);
circle_marker_39db82a98f1d49109c1dc9243707dbae.bindPopup(popup_cf4bd94009f14a20907ae01ffa40c0e0)
;
var circle_marker_68625767d6754420aef3f180b52b42fb = L.circleMarker(
[30.3296382, -97.73080156],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_e9fada5d61d84dd086f99daaeed05599 = L.popup({"maxWidth": "100%"});
var html_b5110533737342319938fc888bc9d743 = $(`<div id="html_b5110533737342319938fc888bc9d743" style="width: 100.0%; height: 100.0%;">1301 W KOENIG LN BLDG A <br></br> 2018-163268 BP</div>`)[0];
popup_e9fada5d61d84dd086f99daaeed05599.setContent(html_b5110533737342319938fc888bc9d743);
circle_marker_68625767d6754420aef3f180b52b42fb.bindPopup(popup_e9fada5d61d84dd086f99daaeed05599)
;
var circle_marker_ce5898149b2a4fba84891972813a8242 = L.circleMarker(
[30.3296382, -97.73080156],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_6ed50835d358455fb77645eae7c3cd72 = L.popup({"maxWidth": "100%"});
var html_a0dc9eba937b4936849b617b97085e9c = $(`<div id="html_a0dc9eba937b4936849b617b97085e9c" style="width: 100.0%; height: 100.0%;">1301 W KOENIG LN BLDG B <br></br> 2018-163269 BP</div>`)[0];
popup_6ed50835d358455fb77645eae7c3cd72.setContent(html_a0dc9eba937b4936849b617b97085e9c);
circle_marker_ce5898149b2a4fba84891972813a8242.bindPopup(popup_6ed50835d358455fb77645eae7c3cd72)
;
var circle_marker_c8aef937c45d4c1996c3ca5f1b9b1274 = L.circleMarker(
[30.3296382, -97.73080156],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_69d79175805a4b32ba5e58f1a9f6a614 = L.popup({"maxWidth": "100%"});
var html_d7a193ad94af479cbb26d2a90b9739c0 = $(`<div id="html_d7a193ad94af479cbb26d2a90b9739c0" style="width: 100.0%; height: 100.0%;">1301 W KOENIG LN BLDG C <br></br> 2018-163270 BP</div>`)[0];
popup_69d79175805a4b32ba5e58f1a9f6a614.setContent(html_d7a193ad94af479cbb26d2a90b9739c0);
circle_marker_c8aef937c45d4c1996c3ca5f1b9b1274.bindPopup(popup_69d79175805a4b32ba5e58f1a9f6a614)
;
var circle_marker_bf85a06e2db44600a4aa8aeffbae004a = L.circleMarker(
[30.3296382, -97.73080156],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_4b710f2b7f3e4fa1a83685f204e961be = L.popup({"maxWidth": "100%"});
var html_f39015a7dac04365b8d269b01ede39d9 = $(`<div id="html_f39015a7dac04365b8d269b01ede39d9" style="width: 100.0%; height: 100.0%;">1301 W KOENIG LN BLDG D <br></br> 2018-163271 BP</div>`)[0];
popup_4b710f2b7f3e4fa1a83685f204e961be.setContent(html_f39015a7dac04365b8d269b01ede39d9);
circle_marker_bf85a06e2db44600a4aa8aeffbae004a.bindPopup(popup_4b710f2b7f3e4fa1a83685f204e961be)
;
var circle_marker_1543b76638db4d2c94ae2526f499e4d3 = L.circleMarker(
[30.33977782, -97.73536678],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_b72f99d2bc16483c87f85300d86f1e3e = L.popup({"maxWidth": "100%"});
var html_d109757a547240db81fe69f5d71c5a8a = $(`<div id="html_d109757a547240db81fe69f5d71c5a8a" style="width: 100.0%; height: 100.0%;">2002 KAREN AVE <br></br> 2018-187155 BP</div>`)[0];
popup_b72f99d2bc16483c87f85300d86f1e3e.setContent(html_d109757a547240db81fe69f5d71c5a8a);
circle_marker_1543b76638db4d2c94ae2526f499e4d3.bindPopup(popup_b72f99d2bc16483c87f85300d86f1e3e)
;
var circle_marker_c29bb07d25d8439eaaf2affd330f0904 = L.circleMarker(
[30.32020386, -97.74340093],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_bacc879f8d794950b00949e8b4670cda = L.popup({"maxWidth": "100%"});
var html_7a4c0f4fb8e04cdfa460df729fae2cac = $(`<div id="html_7a4c0f4fb8e04cdfa460df729fae2cac" style="width: 100.0%; height: 100.0%;">4704 SHOALWOOD AVE <br></br> 2018-202528 BP</div>`)[0];
popup_bacc879f8d794950b00949e8b4670cda.setContent(html_7a4c0f4fb8e04cdfa460df729fae2cac);
circle_marker_c29bb07d25d8439eaaf2affd330f0904.bindPopup(popup_bacc879f8d794950b00949e8b4670cda)
;
var circle_marker_6993bee2feee4b29b3058b38176a0017 = L.circleMarker(
[30.42752937, -97.70504365],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_035e20087ae249a7b2194395efd9b8fa = L.popup({"maxWidth": "100%"});
var html_dd5ed60dc650435684fca613c9391a39 = $(`<div id="html_dd5ed60dc650435684fca613c9391a39" style="width: 100.0%; height: 100.0%;">3300 OAK CREEK DR BLDG 1 <br></br> 2019-005832 BP</div>`)[0];
popup_035e20087ae249a7b2194395efd9b8fa.setContent(html_dd5ed60dc650435684fca613c9391a39);
circle_marker_6993bee2feee4b29b3058b38176a0017.bindPopup(popup_035e20087ae249a7b2194395efd9b8fa)
;
var circle_marker_b83c09f8aed44ed78027f1edc8f0120c = L.circleMarker(
[30.42752937, -97.70504365],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_c8661b49c870421f98b7d2d8e725bc19 = L.popup({"maxWidth": "100%"});
var html_aa276251a5cd4b38bf5b760a1de58e93 = $(`<div id="html_aa276251a5cd4b38bf5b760a1de58e93" style="width: 100.0%; height: 100.0%;">3300 OAK CREEK DR BLDG 2 <br></br> 2019-005833 BP</div>`)[0];
popup_c8661b49c870421f98b7d2d8e725bc19.setContent(html_aa276251a5cd4b38bf5b760a1de58e93);
circle_marker_b83c09f8aed44ed78027f1edc8f0120c.bindPopup(popup_c8661b49c870421f98b7d2d8e725bc19)
;
var circle_marker_92f38987ca1346efafcab650b9f4667c = L.circleMarker(
[30.42752937, -97.70504365],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_d2286f999ba14e64bbd28657b7ef53d8 = L.popup({"maxWidth": "100%"});
var html_8a053aa9fabd45da922ccb43e6eda7e4 = $(`<div id="html_8a053aa9fabd45da922ccb43e6eda7e4" style="width: 100.0%; height: 100.0%;">3300 OAK CREEK DR BLDG 3 <br></br> 2019-005834 BP</div>`)[0];
popup_d2286f999ba14e64bbd28657b7ef53d8.setContent(html_8a053aa9fabd45da922ccb43e6eda7e4);
circle_marker_92f38987ca1346efafcab650b9f4667c.bindPopup(popup_d2286f999ba14e64bbd28657b7ef53d8)
;
var circle_marker_3a8345cb48a940f69fd233f7d7dfb904 = L.circleMarker(
[30.42752937, -97.70504365],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_ef9619ad4dfb4f53bf7a6dd51a116d5e = L.popup({"maxWidth": "100%"});
var html_05b922bb8bc245f0a35568e82dfd8a97 = $(`<div id="html_05b922bb8bc245f0a35568e82dfd8a97" style="width: 100.0%; height: 100.0%;">3300 OAK CREEK DR BLDG 4 <br></br> 2019-005835 BP</div>`)[0];
popup_ef9619ad4dfb4f53bf7a6dd51a116d5e.setContent(html_05b922bb8bc245f0a35568e82dfd8a97);
circle_marker_3a8345cb48a940f69fd233f7d7dfb904.bindPopup(popup_ef9619ad4dfb4f53bf7a6dd51a116d5e)
;
var circle_marker_3096c620a8ce4ec2bec30207dfb7cdeb = L.circleMarker(
[30.33228596, -97.74638989],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_5e3891d37a7e44c488fb23a33e5a71a1 = L.popup({"maxWidth": "100%"});
var html_e29b5ce0d6f542619975d386ffa07b0d = $(`<div id="html_e29b5ce0d6f542619975d386ffa07b0d" style="width: 100.0%; height: 100.0%;">5604 BULL CREEK RD <br></br> 2019-006864 BP</div>`)[0];
popup_5e3891d37a7e44c488fb23a33e5a71a1.setContent(html_e29b5ce0d6f542619975d386ffa07b0d);
circle_marker_3096c620a8ce4ec2bec30207dfb7cdeb.bindPopup(popup_5e3891d37a7e44c488fb23a33e5a71a1)
;
var circle_marker_f88e578165894791a4b533bd8645fc3d = L.circleMarker(
[30.36038102, -97.7245423],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_a6eb1805c4b24e5098eade08c14793c9 = L.popup({"maxWidth": "100%"});
var html_e18a2dfc63334b248e665e6a5fd8864b = $(`<div id="html_e18a2dfc63334b248e665e6a5fd8864b" style="width: 100.0%; height: 100.0%;">2100 LANIER DR <br></br> 2019-012323 BP</div>`)[0];
popup_a6eb1805c4b24e5098eade08c14793c9.setContent(html_e18a2dfc63334b248e665e6a5fd8864b);
circle_marker_f88e578165894791a4b533bd8645fc3d.bindPopup(popup_a6eb1805c4b24e5098eade08c14793c9)
;
var circle_marker_107ab6e69b7c4549afa4668f224c0ad6 = L.circleMarker(
[30.39263961, -97.72168341],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_d3a564c1070d47d08af64711bc7a97df = L.popup({"maxWidth": "100%"});
var html_0c8abd6567c446469d9a6010bf78afc4 = $(`<div id="html_0c8abd6567c446469d9a6010bf78afc4" style="width: 100.0%; height: 100.0%;">10728 BURNET RD <br></br> 2019-020881 BP</div>`)[0];
popup_d3a564c1070d47d08af64711bc7a97df.setContent(html_0c8abd6567c446469d9a6010bf78afc4);
circle_marker_107ab6e69b7c4549afa4668f224c0ad6.bindPopup(popup_d3a564c1070d47d08af64711bc7a97df)
;
var circle_marker_1059e537e0e8409a97947ae8f4063357 = L.circleMarker(
[30.39263961, -97.72168341],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_e923fb663be540aca3ecd61d72c97488 = L.popup({"maxWidth": "100%"});
var html_6f11a312a5eb43cf87068c3c892f4222 = $(`<div id="html_6f11a312a5eb43cf87068c3c892f4222" style="width: 100.0%; height: 100.0%;">10728 BURNET RD <br></br> 2019-020882 BP</div>`)[0];
popup_e923fb663be540aca3ecd61d72c97488.setContent(html_6f11a312a5eb43cf87068c3c892f4222);
circle_marker_1059e537e0e8409a97947ae8f4063357.bindPopup(popup_e923fb663be540aca3ecd61d72c97488)
;
var circle_marker_270c5220db2b438990545c97c91d4d6c = L.circleMarker(
[30.33904668, -97.74572663],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_a124bffb21ca46d9ae9d0a46a2856f0d = L.popup({"maxWidth": "100%"});
var html_4ecbffe77b14447cbd41c184fa3aeea2 = $(`<div id="html_4ecbffe77b14447cbd41c184fa3aeea2" style="width: 100.0%; height: 100.0%;">6101 CARY DR <br></br> 2019-027067 BP</div>`)[0];
popup_a124bffb21ca46d9ae9d0a46a2856f0d.setContent(html_4ecbffe77b14447cbd41c184fa3aeea2);
circle_marker_270c5220db2b438990545c97c91d4d6c.bindPopup(popup_a124bffb21ca46d9ae9d0a46a2856f0d)
;
var circle_marker_f98ca6d1491a42518977e341d8d982db = L.circleMarker(
[30.40492223, -97.71828234],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_dda1ae1d2d5c40a0a603c694fbe8a11c = L.popup({"maxWidth": "100%"});
var html_2b2d8bdcf2f843c7bd7cf0a0662a90aa = $(`<div id="html_2b2d8bdcf2f843c7bd7cf0a0662a90aa" style="width: 100.0%; height: 100.0%;">11815 ALTERRA PKWY <br></br> 2019-032129 BP</div>`)[0];
popup_dda1ae1d2d5c40a0a603c694fbe8a11c.setContent(html_2b2d8bdcf2f843c7bd7cf0a0662a90aa);
circle_marker_f98ca6d1491a42518977e341d8d982db.bindPopup(popup_dda1ae1d2d5c40a0a603c694fbe8a11c)
;
var circle_marker_5652509179f04ab897b78b691971fad8 = L.circleMarker(
[30.41400576, -97.7086714],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_8cee875139e04bcebad97f67794e5845 = L.popup({"maxWidth": "100%"});
var html_0e1cbace18144aea87a940b15db7e117 = $(`<div id="html_0e1cbace18144aea87a940b15db7e117" style="width: 100.0%; height: 100.0%;">12190 N MOPAC EXPY SVRD SB <br></br> 2019-032607 BP</div>`)[0];
popup_8cee875139e04bcebad97f67794e5845.setContent(html_0e1cbace18144aea87a940b15db7e117);
circle_marker_5652509179f04ab897b78b691971fad8.bindPopup(popup_8cee875139e04bcebad97f67794e5845)
;
var circle_marker_d4a37d2e52aa45b3ae763fa090ef690e = L.circleMarker(
[30.43466683, -97.70559173],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_07ad1163231c4c43a5b6757db1896107 = L.popup({"maxWidth": "100%"});
var html_99fcfc6b23c646a1ab3175ecf9e717da = $(`<div id="html_99fcfc6b23c646a1ab3175ecf9e717da" style="width: 100.0%; height: 100.0%;">3804 MC NEIL DR <br></br> 2019-036593 BP</div>`)[0];
popup_07ad1163231c4c43a5b6757db1896107.setContent(html_99fcfc6b23c646a1ab3175ecf9e717da);
circle_marker_d4a37d2e52aa45b3ae763fa090ef690e.bindPopup(popup_07ad1163231c4c43a5b6757db1896107)
;
var circle_marker_3f8f75dc37554053aa88aa7f6653af67 = L.circleMarker(
[30.33791187, -97.73123789],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_dd0379631e284dfb8bc92b976eba9928 = L.popup({"maxWidth": "100%"});
var html_be9aaafdd51a49f7a49777b094bb4d72 = $(`<div id="html_be9aaafdd51a49f7a49777b094bb4d72" style="width: 100.0%; height: 100.0%;">1512 KAREN AVE <br></br> 2019-037502 BP</div>`)[0];
popup_dd0379631e284dfb8bc92b976eba9928.setContent(html_be9aaafdd51a49f7a49777b094bb4d72);
circle_marker_3f8f75dc37554053aa88aa7f6653af67.bindPopup(popup_dd0379631e284dfb8bc92b976eba9928)
;
var circle_marker_3710645735254053800841cce35e65c0 = L.circleMarker(
[30.31756705, -97.74575421],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_a7c09977604046e59fcb7dff8a874458 = L.popup({"maxWidth": "100%"});
var html_13f32d1acb844223a8197563b67a163f = $(`<div id="html_13f32d1acb844223a8197563b67a163f" style="width: 100.0%; height: 100.0%;">4501 SHOAL CREEK BLVD <br></br> 2019-042221 BP</div>`)[0];
popup_a7c09977604046e59fcb7dff8a874458.setContent(html_13f32d1acb844223a8197563b67a163f);
circle_marker_3710645735254053800841cce35e65c0.bindPopup(popup_a7c09977604046e59fcb7dff8a874458)
;
var circle_marker_ba43b22ad49a4a659f471707dc10235c = L.circleMarker(
[30.40526665, -97.67189551],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_c1aade6578b143d79e80ce7088693def = L.popup({"maxWidth": "100%"});
var html_27f5d9af6f6345798c7b4299fbc12e1b = $(`<div id="html_27f5d9af6f6345798c7b4299fbc12e1b" style="width: 100.0%; height: 100.0%;">500 CANYON RIDGE DR BLDG D <br></br> 2019-043326 BP</div>`)[0];
popup_c1aade6578b143d79e80ce7088693def.setContent(html_27f5d9af6f6345798c7b4299fbc12e1b);
circle_marker_ba43b22ad49a4a659f471707dc10235c.bindPopup(popup_c1aade6578b143d79e80ce7088693def)
;
var circle_marker_d412590c3e964339b63ef4bdf5d4db55 = L.circleMarker(
[30.34804592, -97.71753465],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_1e7b2f16e1d243f08152c0e38dcc17c1 = L.popup({"maxWidth": "100%"});
var html_662e81eddff54d7f84e2ff43830e9cc2 = $(`<div id="html_662e81eddff54d7f84e2ff43830e9cc2" style="width: 100.0%; height: 100.0%;">1105 STOBAUGH ST BLDG 2 <br></br> 2019-051579 BP</div>`)[0];
popup_1e7b2f16e1d243f08152c0e38dcc17c1.setContent(html_662e81eddff54d7f84e2ff43830e9cc2);
circle_marker_d412590c3e964339b63ef4bdf5d4db55.bindPopup(popup_1e7b2f16e1d243f08152c0e38dcc17c1)
;
var circle_marker_ce66ab044a0f42769f11c6a6c2d73cc5 = L.circleMarker(
[30.34804592, -97.71753465],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_35f6b5f753c24d309ab4a52de4c654a9 = L.popup({"maxWidth": "100%"});
var html_c714cbcd8e5d4855986502d378254171 = $(`<div id="html_c714cbcd8e5d4855986502d378254171" style="width: 100.0%; height: 100.0%;">1105 STOBAUGH ST BLDG 2 <br></br> 2019-051580 BP</div>`)[0];
popup_35f6b5f753c24d309ab4a52de4c654a9.setContent(html_c714cbcd8e5d4855986502d378254171);
circle_marker_ce66ab044a0f42769f11c6a6c2d73cc5.bindPopup(popup_35f6b5f753c24d309ab4a52de4c654a9)
;
var circle_marker_168245e362f5420eb5e8711ffded094b = L.circleMarker(
[30.41372762, -97.68829344],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_d0967313df0f448f92d850edf43a7066 = L.popup({"maxWidth": "100%"});
var html_bcb5b349e6f44490b3dcd09c14a445a2 = $(`<div id="html_bcb5b349e6f44490b3dcd09c14a445a2" style="width: 100.0%; height: 100.0%;">12555 1/2 METRIC BLVD <br></br> 2019-051719 BP</div>`)[0];
popup_d0967313df0f448f92d850edf43a7066.setContent(html_bcb5b349e6f44490b3dcd09c14a445a2);
circle_marker_168245e362f5420eb5e8711ffded094b.bindPopup(popup_d0967313df0f448f92d850edf43a7066)
;
var circle_marker_5fd3cfc7cd144f90906e86bd128f737d = L.circleMarker(
[30.43203385, -97.66912818],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_02894728e17a480ba0d3479161a0177d = L.popup({"maxWidth": "100%"});
var html_5b646ed52988473aa8202e6be2f4aca8 = $(`<div id="html_5b646ed52988473aa8202e6be2f4aca8" style="width: 100.0%; height: 100.0%;">14199 N IH 35 SVRD NB BLDG 5 <br></br> 2019-057108 BP</div>`)[0];
popup_02894728e17a480ba0d3479161a0177d.setContent(html_5b646ed52988473aa8202e6be2f4aca8);
circle_marker_5fd3cfc7cd144f90906e86bd128f737d.bindPopup(popup_02894728e17a480ba0d3479161a0177d)
;
var circle_marker_9c32e6acdae04e719aaea0fbc063362d = L.circleMarker(
[30.43203385, -97.66912818],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_e0355437bc74458396b9d406299aee1c = L.popup({"maxWidth": "100%"});
var html_f37ca1058f7b41c78ed16adc2fedf2da = $(`<div id="html_f37ca1058f7b41c78ed16adc2fedf2da" style="width: 100.0%; height: 100.0%;">14199 N IH 35 SVRD NB BLDG 2 <br></br> 2019-057105 BP</div>`)[0];
popup_e0355437bc74458396b9d406299aee1c.setContent(html_f37ca1058f7b41c78ed16adc2fedf2da);
circle_marker_9c32e6acdae04e719aaea0fbc063362d.bindPopup(popup_e0355437bc74458396b9d406299aee1c)
;
var circle_marker_232101bcd56040118f002ea4adcfde36 = L.circleMarker(
[30.43203385, -97.66912818],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_76df9180310247ee85c1a7b66f55159d = L.popup({"maxWidth": "100%"});
var html_a59766a2ea4e436caf62cf79260992a3 = $(`<div id="html_a59766a2ea4e436caf62cf79260992a3" style="width: 100.0%; height: 100.0%;">14199 N IH 35 SVRD NB BLDG 3 <br></br> 2019-057106 BP</div>`)[0];
popup_76df9180310247ee85c1a7b66f55159d.setContent(html_a59766a2ea4e436caf62cf79260992a3);
circle_marker_232101bcd56040118f002ea4adcfde36.bindPopup(popup_76df9180310247ee85c1a7b66f55159d)
;
var circle_marker_995944d44cda41ccb5f59c8919fd3053 = L.circleMarker(
[30.43203385, -97.66912818],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);
var popup_aaf89d2695144ffc9eecb8372a4393e1 = L.popup({"maxWidth": "100%"});
var html_6a1b72d6c4a94b73a08a419b0fae6a28 = $(`<div id="html_6a1b72d6c4a94b73a08a419b0fae6a28" style="width: 100.0%; height: 100.0%;">14199 N IH 35 SVRD NB BLDG 4 <br></br> 2019-057107 BP</div>`)[0];
popup_aaf89d2695144ffc9eecb8372a4393e1.setContent(html_6a1b72d6c4a94b73a08a419b0fae6a28);
circle_marker_995944d44cda41ccb5f59c8919fd3053.bindPopup(popup_aaf89d2695144ffc9eecb8372a4393e1)
;
var circle_marker_a097e01cbd8e491d81d623c2ed4ef007 = L.circleMarker(
[30.43203385, -97.66912818],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_0b09c8cd2bd242e1a2a1cbc39b17747d);