-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzipcode_targeting_map.html
More file actions
8443 lines (5019 loc) ยท 474 KB
/
zipcode_targeting_map.html
File metadata and controls
8443 lines (5019 loc) ยท 474 KB
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 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_5482cdcf1a4ecca3de042ed0b3fd4726 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<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>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet.fullscreen@3.0.0/Control.FullScreen.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet.fullscreen@3.0.0/Control.FullScreen.css"/>
</head>
<body>
<div class="folium-map" id="map_5482cdcf1a4ecca3de042ed0b3fd4726" ></div>
</body>
<script>
var map_5482cdcf1a4ecca3de042ed0b3fd4726 = L.map(
"map_5482cdcf1a4ecca3de042ed0b3fd4726",
{
center: [32.81518912621359, -97.10395417475728],
crs: L.CRS.EPSG3857,
...{
"zoom": 9,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_e8a6956274c0b505af48452ea9ad8c7c = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{
"minZoom": 0,
"maxZoom": 20,
"maxNativeZoom": 20,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e",
"subdomains": "abcd",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_e8a6956274c0b505af48452ea9ad8c7c.addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var circle_marker_1112bc089d830915ff302c87b6501ddf = L.circleMarker(
[33.04, -96.98],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_beca5d3f6d317e0dc9908f388dfb5daa = L.popup({
"maxWidth": 300,
});
var html_b8db85cee155b95dda6dc1c1c0072b84 = $(`<div id="html_b8db85cee155b95dda6dc1c1c0072b84" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 70567</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">1</span><br> <b>๐ Avg Hail Size:</b> 1.75"<br> <b>โ ๏ธ Max Hail Size:</b> 1.75"<br> <b>๐๏ธ Cities:</b> Lewisville<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+70567" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.04,-96.98,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_beca5d3f6d317e0dc9908f388dfb5daa.setContent(html_b8db85cee155b95dda6dc1c1c0072b84);
circle_marker_1112bc089d830915ff302c87b6501ddf.bindPopup(popup_beca5d3f6d317e0dc9908f388dfb5daa)
;
circle_marker_1112bc089d830915ff302c87b6501ddf.bindTooltip(
`<div>
ZIP 70567: 1 events
</div>`,
{
"sticky": true,
}
);
var marker_48c92a4506be00fb4d4e1423c547cbff = L.marker(
[33.04, -96.98],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_6f81e4c6b6b203561e1418dabc1f0103 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e70567\u003c/div\u003e",
"className": "empty",
});
marker_48c92a4506be00fb4d4e1423c547cbff.setIcon(div_icon_6f81e4c6b6b203561e1418dabc1f0103);
var circle_marker_a48662b2de19a72e76dd1f5d8c775f52 = L.circleMarker(
[33.07333333333333, -96.61333333333334],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_0d9f8bd5ff6c42caf4697f1bba8bc76d = L.popup({
"maxWidth": 300,
});
var html_54101d698bcd69ffd71bc4c3bf4ec064 = $(`<div id="html_54101d698bcd69ffd71bc4c3bf4ec064" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75002</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 1.83"<br> <b>โ ๏ธ Max Hail Size:</b> 2.25"<br> <b>๐๏ธ Cities:</b> Lucas, Parker<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75002" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.07333333333333,-96.61333333333334,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_0d9f8bd5ff6c42caf4697f1bba8bc76d.setContent(html_54101d698bcd69ffd71bc4c3bf4ec064);
circle_marker_a48662b2de19a72e76dd1f5d8c775f52.bindPopup(popup_0d9f8bd5ff6c42caf4697f1bba8bc76d)
;
circle_marker_a48662b2de19a72e76dd1f5d8c775f52.bindTooltip(
`<div>
ZIP 75002: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_fcf39eaf1ef13ab33d8986975749238e = L.marker(
[33.07333333333333, -96.61333333333334],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_5e243b72facd7697e814fb2cb9000a93 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75002\u003c/div\u003e",
"className": "empty",
});
marker_fcf39eaf1ef13ab33d8986975749238e.setIcon(div_icon_5e243b72facd7697e814fb2cb9000a93);
var circle_marker_f3625d2fc82f606afa725a3c08beeb97 = L.circleMarker(
[33.086666666666666, -96.64],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_64a1d040b34553a777adaa19cc1557b4 = L.popup({
"maxWidth": 300,
});
var html_6304dc56a529ab18f301f7ab307a9403 = $(`<div id="html_6304dc56a529ab18f301f7ab307a9403" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75003</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 1.50"<br> <b>โ ๏ธ Max Hail Size:</b> 2.00"<br> <b>๐๏ธ Cities:</b> Allen, Parker<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75003" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.086666666666666,-96.64,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_64a1d040b34553a777adaa19cc1557b4.setContent(html_6304dc56a529ab18f301f7ab307a9403);
circle_marker_f3625d2fc82f606afa725a3c08beeb97.bindPopup(popup_64a1d040b34553a777adaa19cc1557b4)
;
circle_marker_f3625d2fc82f606afa725a3c08beeb97.bindTooltip(
`<div>
ZIP 75003: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_a6ec1dc098d05ed129cbf9168c92ab7b = L.marker(
[33.086666666666666, -96.64],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_8c4eb34d2a5121a742832224aaf32bea = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75003\u003c/div\u003e",
"className": "empty",
});
marker_a6ec1dc098d05ed129cbf9168c92ab7b.setIcon(div_icon_8c4eb34d2a5121a742832224aaf32bea);
var circle_marker_a05c4a7614d85d0ce69b6df2a4fbb2ae = L.circleMarker(
[33.28333333333333, -96.75333333333333],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_13eccf3a8809df5754b1ce433ce15dc8 = L.popup({
"maxWidth": 300,
});
var html_acf8e221f826502e6e84ab7838c40374 = $(`<div id="html_acf8e221f826502e6e84ab7838c40374" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75009</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 1.25"<br> <b>โ ๏ธ Max Hail Size:</b> 1.75"<br> <b>๐๏ธ Cities:</b> Celina<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75009" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.28333333333333,-96.75333333333333,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_13eccf3a8809df5754b1ce433ce15dc8.setContent(html_acf8e221f826502e6e84ab7838c40374);
circle_marker_a05c4a7614d85d0ce69b6df2a4fbb2ae.bindPopup(popup_13eccf3a8809df5754b1ce433ce15dc8)
;
circle_marker_a05c4a7614d85d0ce69b6df2a4fbb2ae.bindTooltip(
`<div>
ZIP 75009: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_a239d3f9cc7993bbc9db974dcbb9c264 = L.marker(
[33.28333333333333, -96.75333333333333],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_2e5f1d64991e560c4d3f03dd4c8639c2 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75009\u003c/div\u003e",
"className": "empty",
});
marker_a239d3f9cc7993bbc9db974dcbb9c264.setIcon(div_icon_2e5f1d64991e560c4d3f03dd4c8639c2);
var circle_marker_ec48b177b3b78b0c5873ecec8df80dcd = L.circleMarker(
[33.0325, -97.12],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_5afbdea73fe5f32702dd21a52ad18806 = L.popup({
"maxWidth": 300,
});
var html_07301af48a7c0ba524940081e7e42586 = $(`<div id="html_07301af48a7c0ba524940081e7e42586" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75022</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">4</span><br> <b>๐ Avg Hail Size:</b> 1.31"<br> <b>โ ๏ธ Max Hail Size:</b> 1.75"<br> <b>๐๏ธ Cities:</b> Flower Mound<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75022" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.0325,-97.12,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_5afbdea73fe5f32702dd21a52ad18806.setContent(html_07301af48a7c0ba524940081e7e42586);
circle_marker_ec48b177b3b78b0c5873ecec8df80dcd.bindPopup(popup_5afbdea73fe5f32702dd21a52ad18806)
;
circle_marker_ec48b177b3b78b0c5873ecec8df80dcd.bindTooltip(
`<div>
ZIP 75022: 4 events
</div>`,
{
"sticky": true,
}
);
var marker_29bdbdd54711a5ad7a427038d2d952e5 = L.marker(
[33.0325, -97.12],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_62e8051c4437d797fbfe21678a2d00c2 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75022\u003c/div\u003e",
"className": "empty",
});
marker_29bdbdd54711a5ad7a427038d2d952e5.setIcon(div_icon_62e8051c4437d797fbfe21678a2d00c2);
var circle_marker_a296a5392178cb72d3446994e592dd53 = L.circleMarker(
[33.0675, -96.755],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_e298d47cd1127401cc5f6242d1d10e86 = L.popup({
"maxWidth": 300,
});
var html_698c8d7df5a1a191cdbb6cc55aed8132 = $(`<div id="html_698c8d7df5a1a191cdbb6cc55aed8132" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75023</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">4</span><br> <b>๐ Avg Hail Size:</b> 1.00"<br> <b>โ ๏ธ Max Hail Size:</b> 1.25"<br> <b>๐๏ธ Cities:</b> Plano<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75023" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.0675,-96.755,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_e298d47cd1127401cc5f6242d1d10e86.setContent(html_698c8d7df5a1a191cdbb6cc55aed8132);
circle_marker_a296a5392178cb72d3446994e592dd53.bindPopup(popup_e298d47cd1127401cc5f6242d1d10e86)
;
circle_marker_a296a5392178cb72d3446994e592dd53.bindTooltip(
`<div>
ZIP 75023: 4 events
</div>`,
{
"sticky": true,
}
);
var marker_320cc7b840afbf09d1ab6c932a424618 = L.marker(
[33.0675, -96.755],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_a5687318732c9806b4a11494983d8759 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75023\u003c/div\u003e",
"className": "empty",
});
marker_320cc7b840afbf09d1ab6c932a424618.setIcon(div_icon_a5687318732c9806b4a11494983d8759);
var circle_marker_2aea7f6340a1c93a1341107367ae09a0 = L.circleMarker(
[33.09, -96.8],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_3d8ead11cff2da03cf471c49a42554a3 = L.popup({
"maxWidth": 300,
});
var html_00470d47364d11d75612ae97d9d61072 = $(`<div id="html_00470d47364d11d75612ae97d9d61072" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75024</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">6</span><br> <b>๐ Avg Hail Size:</b> 0.96"<br> <b>โ ๏ธ Max Hail Size:</b> 1.00"<br> <b>๐๏ธ Cities:</b> Frisco, Plano<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75024" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.09,-96.8,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_3d8ead11cff2da03cf471c49a42554a3.setContent(html_00470d47364d11d75612ae97d9d61072);
circle_marker_2aea7f6340a1c93a1341107367ae09a0.bindPopup(popup_3d8ead11cff2da03cf471c49a42554a3)
;
circle_marker_2aea7f6340a1c93a1341107367ae09a0.bindTooltip(
`<div>
ZIP 75024: 6 events
</div>`,
{
"sticky": true,
}
);
var marker_d2945ddee0fab773f2b9d256d2c6cb4d = L.marker(
[33.09, -96.8],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_9abe9581ee20ee8b97abef04cab3ba18 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75024\u003c/div\u003e",
"className": "empty",
});
marker_d2945ddee0fab773f2b9d256d2c6cb4d.setIcon(div_icon_9abe9581ee20ee8b97abef04cab3ba18);
var circle_marker_c52e4569fcf0c4d67cabe0835f6097d3 = L.circleMarker(
[33.08, -96.71],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_11b4ed81a3527771f4d649088e5844c6 = L.popup({
"maxWidth": 300,
});
var html_145fea1e7448e3f06be1d49db7dc47c3 = $(`<div id="html_145fea1e7448e3f06be1d49db7dc47c3" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75025</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">1</span><br> <b>๐ Avg Hail Size:</b> 0.75"<br> <b>โ ๏ธ Max Hail Size:</b> 0.75"<br> <b>๐๏ธ Cities:</b> Plano<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75025" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.08,-96.71,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_11b4ed81a3527771f4d649088e5844c6.setContent(html_145fea1e7448e3f06be1d49db7dc47c3);
circle_marker_c52e4569fcf0c4d67cabe0835f6097d3.bindPopup(popup_11b4ed81a3527771f4d649088e5844c6)
;
circle_marker_c52e4569fcf0c4d67cabe0835f6097d3.bindTooltip(
`<div>
ZIP 75025: 1 events
</div>`,
{
"sticky": true,
}
);
var marker_6b43c2e98a7f134d7da0f984658e0d14 = L.marker(
[33.08, -96.71],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_8f6d7553c331128e2fcefe0bbca70f78 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75025\u003c/div\u003e",
"className": "empty",
});
marker_6b43c2e98a7f134d7da0f984658e0d14.setIcon(div_icon_8f6d7553c331128e2fcefe0bbca70f78);
var circle_marker_b688c9ed410e651924f78cfe1b14529d = L.circleMarker(
[33.025000000000006, -97.065],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_c5dab7d7531029100c1d2e5f2cf67bad = L.popup({
"maxWidth": 300,
});
var html_253288cffe83e7bf4497ea0021ef52fb = $(`<div id="html_253288cffe83e7bf4497ea0021ef52fb" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75028</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">2</span><br> <b>๐ Avg Hail Size:</b> 1.00"<br> <b>โ ๏ธ Max Hail Size:</b> 1.00"<br> <b>๐๏ธ Cities:</b> Flower Mound<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75028" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.025000000000006,-97.065,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_c5dab7d7531029100c1d2e5f2cf67bad.setContent(html_253288cffe83e7bf4497ea0021ef52fb);
circle_marker_b688c9ed410e651924f78cfe1b14529d.bindPopup(popup_c5dab7d7531029100c1d2e5f2cf67bad)
;
circle_marker_b688c9ed410e651924f78cfe1b14529d.bindTooltip(
`<div>
ZIP 75028: 2 events
</div>`,
{
"sticky": true,
}
);
var marker_fe74d61d31da11422e16e117ea1eb5be = L.marker(
[33.025000000000006, -97.065],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_63680ef2e15e90e6d2f4ddce95ff94d5 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75028\u003c/div\u003e",
"className": "empty",
});
marker_fe74d61d31da11422e16e117ea1eb5be.setIcon(div_icon_63680ef2e15e90e6d2f4ddce95ff94d5);
var circle_marker_f0042963c6b533ce656b02b9430c7bff = L.circleMarker(
[33.17, -96.85],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_242ff50a200ecefa39b4c4a123fae6c9 = L.popup({
"maxWidth": 300,
});
var html_9574db00724c7272c2e4bca96e9dcb62 = $(`<div id="html_9574db00724c7272c2e4bca96e9dcb62" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75033</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">1</span><br> <b>๐ Avg Hail Size:</b> 1.00"<br> <b>โ ๏ธ Max Hail Size:</b> 1.00"<br> <b>๐๏ธ Cities:</b> Frisco<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75033" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.17,-96.85,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_242ff50a200ecefa39b4c4a123fae6c9.setContent(html_9574db00724c7272c2e4bca96e9dcb62);
circle_marker_f0042963c6b533ce656b02b9430c7bff.bindPopup(popup_242ff50a200ecefa39b4c4a123fae6c9)
;
circle_marker_f0042963c6b533ce656b02b9430c7bff.bindTooltip(
`<div>
ZIP 75033: 1 events
</div>`,
{
"sticky": true,
}
);
var marker_b6700ce3750fcb4292c4dad485f303b9 = L.marker(
[33.17, -96.85],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_f93ee5fc7ff556010698b822e9f140f2 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75033\u003c/div\u003e",
"className": "empty",
});
marker_b6700ce3750fcb4292c4dad485f303b9.setIcon(div_icon_f93ee5fc7ff556010698b822e9f140f2);
var circle_marker_a79ec71dc22547b1bc0c951888e416e4 = L.circleMarker(
[33.125, -96.83333333333333],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_919bc47067db1c1c360587da3cb3874f = L.popup({
"maxWidth": 300,
});
var html_23345c2bfd93a6fa062bdf310908efed = $(`<div id="html_23345c2bfd93a6fa062bdf310908efed" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75034</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">6</span><br> <b>๐ Avg Hail Size:</b> 1.25"<br> <b>โ ๏ธ Max Hail Size:</b> 2.00"<br> <b>๐๏ธ Cities:</b> Frisco<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75034" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.125,-96.83333333333333,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_919bc47067db1c1c360587da3cb3874f.setContent(html_23345c2bfd93a6fa062bdf310908efed);
circle_marker_a79ec71dc22547b1bc0c951888e416e4.bindPopup(popup_919bc47067db1c1c360587da3cb3874f)
;
circle_marker_a79ec71dc22547b1bc0c951888e416e4.bindTooltip(
`<div>
ZIP 75034: 6 events
</div>`,
{
"sticky": true,
}
);
var marker_c74033fb53defb022da45dc645f29019 = L.marker(
[33.125, -96.83333333333333],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_86403422ba7596f2a51e1ef9b0488aa2 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75034\u003c/div\u003e",
"className": "empty",
});
marker_c74033fb53defb022da45dc645f29019.setIcon(div_icon_86403422ba7596f2a51e1ef9b0488aa2);
var circle_marker_cd6c0b4da20b7103585898584c0b6b7d = L.circleMarker(
[33.14, -96.785],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_d7e47b4ae2b4a3926f554dda3377bd5a = L.popup({
"maxWidth": 300,
});
var html_f9644ce931f3481265e0930090b3b620 = $(`<div id="html_f9644ce931f3481265e0930090b3b620" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75035</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">2</span><br> <b>๐ Avg Hail Size:</b> 1.25"<br> <b>โ ๏ธ Max Hail Size:</b> 1.50"<br> <b>๐๏ธ Cities:</b> Frisco<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75035" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.14,-96.785,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_d7e47b4ae2b4a3926f554dda3377bd5a.setContent(html_f9644ce931f3481265e0930090b3b620);
circle_marker_cd6c0b4da20b7103585898584c0b6b7d.bindPopup(popup_d7e47b4ae2b4a3926f554dda3377bd5a)
;
circle_marker_cd6c0b4da20b7103585898584c0b6b7d.bindTooltip(
`<div>
ZIP 75035: 2 events
</div>`,
{
"sticky": true,
}
);
var marker_8ff77e55e39d01b4a9afb5e03d84991c = L.marker(
[33.14, -96.785],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_36686ad230047e8957b6e8757af68e7b = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75035\u003c/div\u003e",
"className": "empty",
});
marker_8ff77e55e39d01b4a9afb5e03d84991c.setIcon(div_icon_36686ad230047e8957b6e8757af68e7b);
var circle_marker_4edabe2480608d2c78c3a449198ff537 = L.circleMarker(
[33.124, -96.912],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_11acc5aacb1c7018cf07c9371196b286 = L.popup({
"maxWidth": 300,
});
var html_194949ad7ae1f812aaf9afebb8f58478 = $(`<div id="html_194949ad7ae1f812aaf9afebb8f58478" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75036</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">5</span><br> <b>๐ Avg Hail Size:</b> 1.00"<br> <b>โ ๏ธ Max Hail Size:</b> 1.25"<br> <b>๐๏ธ Cities:</b> Frisco, The Colony<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75036" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@33.124,-96.912,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_11acc5aacb1c7018cf07c9371196b286.setContent(html_194949ad7ae1f812aaf9afebb8f58478);
circle_marker_4edabe2480608d2c78c3a449198ff537.bindPopup(popup_11acc5aacb1c7018cf07c9371196b286)
;
circle_marker_4edabe2480608d2c78c3a449198ff537.bindTooltip(
`<div>
ZIP 75036: 5 events
</div>`,
{
"sticky": true,
}
);
var marker_1387852f9363f9ce295ed0b6d968a2de = L.marker(
[33.124, -96.912],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_946428b877e4abc6ddc8a303cb3ccd22 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75036\u003c/div\u003e",
"className": "empty",
});
marker_1387852f9363f9ce295ed0b6d968a2de.setIcon(div_icon_946428b877e4abc6ddc8a303cb3ccd22);
var circle_marker_b00b18f27df10c01f75c1afc7d69f734 = L.circleMarker(
[32.916666666666664, -96.63],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_028b6e6d7487d9e0de97df213e81bcca = L.popup({
"maxWidth": 300,
});
var html_8350fef7f836817f4376a830c175bbbf = $(`<div id="html_8350fef7f836817f4376a830c175bbbf" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75040</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 1.08"<br> <b>โ ๏ธ Max Hail Size:</b> 1.25"<br> <b>๐๏ธ Cities:</b> Garland<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75040" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.916666666666664,-96.63,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_028b6e6d7487d9e0de97df213e81bcca.setContent(html_8350fef7f836817f4376a830c175bbbf);
circle_marker_b00b18f27df10c01f75c1afc7d69f734.bindPopup(popup_028b6e6d7487d9e0de97df213e81bcca)
;
circle_marker_b00b18f27df10c01f75c1afc7d69f734.bindTooltip(
`<div>
ZIP 75040: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_9f9f821aaf38d03e8be54c23219e04cb = L.marker(
[32.916666666666664, -96.63],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_306959e2925a82bbcb100b3a07dff00e = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75040\u003c/div\u003e",
"className": "empty",
});
marker_9f9f821aaf38d03e8be54c23219e04cb.setIcon(div_icon_306959e2925a82bbcb100b3a07dff00e);
var circle_marker_55f5fd15ef7917abccf67042adcac103 = L.circleMarker(
[32.85, -96.6],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_cf8f2cbf3807f24c26282d3c9e52fb06 = L.popup({
"maxWidth": 300,
});
var html_910ad8db8634edea3e985f2daafd30ee = $(`<div id="html_910ad8db8634edea3e985f2daafd30ee" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75043</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">1</span><br> <b>๐ Avg Hail Size:</b> 1.50"<br> <b>โ ๏ธ Max Hail Size:</b> 1.50"<br> <b>๐๏ธ Cities:</b> Garland<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75043" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.85,-96.6,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_cf8f2cbf3807f24c26282d3c9e52fb06.setContent(html_910ad8db8634edea3e985f2daafd30ee);
circle_marker_55f5fd15ef7917abccf67042adcac103.bindPopup(popup_cf8f2cbf3807f24c26282d3c9e52fb06)
;
circle_marker_55f5fd15ef7917abccf67042adcac103.bindTooltip(
`<div>
ZIP 75043: 1 events
</div>`,
{
"sticky": true,
}
);
var marker_7366cf33bf59a8cec6fb20e2fb83d85b = L.marker(
[32.85, -96.6],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_48140edce557a90399c1f01659e9ff0f = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75043\u003c/div\u003e",
"className": "empty",
});
marker_7366cf33bf59a8cec6fb20e2fb83d85b.setIcon(div_icon_48140edce557a90399c1f01659e9ff0f);
var circle_marker_1f2c2fc86bc938cefe37af3dcf28665d = L.circleMarker(
[32.95, -96.67],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_5e29408547e5591a1c7651d2ccc87934 = L.popup({
"maxWidth": 300,
});
var html_1d0876fdb72aea78d02fde32142267b4 = $(`<div id="html_1d0876fdb72aea78d02fde32142267b4" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75044</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 0.92"<br> <b>โ ๏ธ Max Hail Size:</b> 1.00"<br> <b>๐๏ธ Cities:</b> Garland<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75044" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.95,-96.67,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_5e29408547e5591a1c7651d2ccc87934.setContent(html_1d0876fdb72aea78d02fde32142267b4);
circle_marker_1f2c2fc86bc938cefe37af3dcf28665d.bindPopup(popup_5e29408547e5591a1c7651d2ccc87934)
;
circle_marker_1f2c2fc86bc938cefe37af3dcf28665d.bindTooltip(
`<div>
ZIP 75044: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_a26fc83abc02ef7bcad724505bc3a336 = L.marker(
[32.95, -96.67],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_f6aa6d45cee03eea013637b21efa848f = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75044\u003c/div\u003e",
"className": "empty",
});
marker_a26fc83abc02ef7bcad724505bc3a336.setIcon(div_icon_f6aa6d45cee03eea013637b21efa848f);
var circle_marker_621d2507e31d641b85052b77727ee75f = L.circleMarker(
[32.98333333333333, -96.59666666666665],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_eeb7e0fcce2e14dd323b02a67b6e78c6 = L.popup({
"maxWidth": 300,
});
var html_7d13ff783a3d82bf35251efc7905706e = $(`<div id="html_7d13ff783a3d82bf35251efc7905706e" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75048</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">3</span><br> <b>๐ Avg Hail Size:</b> 1.33"<br> <b>โ ๏ธ Max Hail Size:</b> 1.50"<br> <b>๐๏ธ Cities:</b> Sachse<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75048" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.98333333333333,-96.59666666666665,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_eeb7e0fcce2e14dd323b02a67b6e78c6.setContent(html_7d13ff783a3d82bf35251efc7905706e);
circle_marker_621d2507e31d641b85052b77727ee75f.bindPopup(popup_eeb7e0fcce2e14dd323b02a67b6e78c6)
;
circle_marker_621d2507e31d641b85052b77727ee75f.bindTooltip(
`<div>
ZIP 75048: 3 events
</div>`,
{
"sticky": true,
}
);
var marker_0ecf8f70fa67986d082f96625f67a0b1 = L.marker(
[32.98333333333333, -96.59666666666665],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_26b242ee9f4a707312c074e3c94ad0e8 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75048\u003c/div\u003e",
"className": "empty",
});
marker_0ecf8f70fa67986d082f96625f67a0b1.setIcon(div_icon_26b242ee9f4a707312c074e3c94ad0e8);
var circle_marker_5dc1475e86bb47b6e37615690d53d3eb = L.circleMarker(
[32.692, -97.022],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_799b0b8f5e78e9351ffd839408578c70 = L.popup({
"maxWidth": 300,
});
var html_c0b4ea5f07cc33d75a167eac84ec40d5 = $(`<div id="html_c0b4ea5f07cc33d75a167eac84ec40d5" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75052</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">5</span><br> <b>๐ Avg Hail Size:</b> 1.15"<br> <b>โ ๏ธ Max Hail Size:</b> 1.75"<br> <b>๐๏ธ Cities:</b> Grand Prairie<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75052" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.692,-97.022,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_799b0b8f5e78e9351ffd839408578c70.setContent(html_c0b4ea5f07cc33d75a167eac84ec40d5);
circle_marker_5dc1475e86bb47b6e37615690d53d3eb.bindPopup(popup_799b0b8f5e78e9351ffd839408578c70)
;
circle_marker_5dc1475e86bb47b6e37615690d53d3eb.bindTooltip(
`<div>
ZIP 75052: 5 events
</div>`,
{
"sticky": true,
}
);
var marker_fe17e6e200e610b42bad0c66d65b8cf2 = L.marker(
[32.692, -97.022],
{
}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var div_icon_3a2659e6bc7023ffc8b498556990d157 = L.divIcon({
"html": "\u003cdiv style=\"font-size: 10pt; color: black; font-weight: bold; text-shadow: 1px 1px 2px white;\"\u003e75052\u003c/div\u003e",
"className": "empty",
});
marker_fe17e6e200e610b42bad0c66d65b8cf2.setIcon(div_icon_3a2659e6bc7023ffc8b498556990d157);
var circle_marker_3324fc7be4fdef77ed7221053a9323b1 = L.circleMarker(
[32.595, -97.055],
{"bubblingMouseEvents": true, "color": "#2E86AB", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2E86AB", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 2}
).addTo(map_5482cdcf1a4ecca3de042ed0b3fd4726);
var popup_addfc2a02a946a77e99b3b134fbd6e5f = L.popup({
"maxWidth": 300,
});
var html_3ce91226bdb4046ad9634a58b9f8e7a0 = $(`<div id="html_3ce91226bdb4046ad9634a58b9f8e7a0" style="width: 100.0%; height: 100.0%;"> <div style="font-family: Arial; font-size: 13px; min-width: 250px;"> <h3 style="margin: 5px 0; color: #2E86AB;">๐ฎ ZIP CODE: 75054</h3> <hr style="margin: 5px 0;"> <b>๐ฏ Total Events:</b> <span style="font-size: 18px; color: red;">2</span><br> <b>๐ Avg Hail Size:</b> 0.75"<br> <b>โ ๏ธ Max Hail Size:</b> 0.75"<br> <b>๐๏ธ Cities:</b> Grand Prairie<br> <hr style="margin: 5px 0;"> <p style="background: #e6f7ff; padding: 8px; border-radius: 3px;"> <b>๐ผ MARKETING TARGET</b><br> Use for direct mail, door-to-door,<br> and digital ad geo-targeting </p> <hr style="margin: 5px 0;"> <a href="https://www.google.com/maps/search/roofing+75054" target="_blank"> ๐ Search area in Google Maps </a><br> <a href="https://www.google.com/maps/@32.595,-97.055,14z" target="_blank"> ๐ View neighborhood </a> </div> </div>`)[0];
popup_addfc2a02a946a77e99b3b134fbd6e5f.setContent(html_3ce91226bdb4046ad9634a58b9f8e7a0);