-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2016 lines (1137 loc) · 83.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_06663293e3dc4ce28a5c6a653857f048 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_06663293e3dc4ce28a5c6a653857f048" ></div>
</body>
<script>
var map_06663293e3dc4ce28a5c6a653857f048 = L.map(
"map_06663293e3dc4ce28a5c6a653857f048",
{
center: [35.0844, -106.6504],
crs: L.CRS.EPSG3857,
zoom: 11,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_ba82f6630b444162b076a3abcd52b40b = 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_06663293e3dc4ce28a5c6a653857f048);
var marker_cluster_226b7b7738e74cbb9bd985511c8d6f74 = L.markerClusterGroup(
{}
);
map_06663293e3dc4ce28a5c6a653857f048.addLayer(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var marker_d650d37d2f204f60b0ade57758c373e3 = L.marker(
[35.0746796, -106.74185],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_d60759312c9b4580af831dcd68c73170 = L.popup({"maxWidth": "100%"});
var html_9394f5f8fa4a4be9ad8a7c55c719bbd5 = $(`<div id="html_9394f5f8fa4a4be9ad8a7c55c719bbd5" style="width: 100.0%; height: 100.0%;">Subway, 120, 98th Street Northwest, Albuquerque, Bernalillo County, New Mexico, 87121, United States</div>`)[0];
popup_d60759312c9b4580af831dcd68c73170.setContent(html_9394f5f8fa4a4be9ad8a7c55c719bbd5);
marker_d650d37d2f204f60b0ade57758c373e3.bindPopup(popup_d60759312c9b4580af831dcd68c73170)
;
marker_d650d37d2f204f60b0ade57758c373e3.bindTooltip(
`<div>
Subway, 120, 98th Street Northwest, Albuquerque, Bernalillo County, New Mexico, 87121, United States
</div>`,
{"sticky": true}
);
var marker_6a44f3d50f5e4a78be7e4ddb6195e46a = L.marker(
[35.148090059996356, -106.68773269007096],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_9d17b5e52f724f48bf790410f4564322 = L.popup({"maxWidth": "100%"});
var html_af01b8965c974de9a18b6e455b28c736 = $(`<div id="html_af01b8965c974de9a18b6e455b28c736" style="width: 100.0%; height: 100.0%;">5600, Coors Boulevard Northwest, Taylor Ranch, Albuquerque, Bernalillo County, New Mexico, 87120, United States</div>`)[0];
popup_9d17b5e52f724f48bf790410f4564322.setContent(html_af01b8965c974de9a18b6e455b28c736);
marker_6a44f3d50f5e4a78be7e4ddb6195e46a.bindPopup(popup_9d17b5e52f724f48bf790410f4564322)
;
marker_6a44f3d50f5e4a78be7e4ddb6195e46a.bindTooltip(
`<div>
5600, Coors Boulevard Northwest, Taylor Ranch, Albuquerque, Bernalillo County, New Mexico, 87120, United States
</div>`,
{"sticky": true}
);
var marker_65986016e4ee45318c35a7121eba53d6 = L.marker(
[34.987324559855374, -106.69632561375326],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_bbdf5fab791a401692889a1c834f9f5a = L.popup({"maxWidth": "100%"});
var html_f8805ea75d674ed597faa64d0b79a06a = $(`<div id="html_f8805ea75d674ed597faa64d0b79a06a" style="width: 100.0%; height: 100.0%;">6080, Isleta Boulevard Southwest, Pajarito, Bernalillo County, New Mexico, 87105, United States</div>`)[0];
popup_bbdf5fab791a401692889a1c834f9f5a.setContent(html_f8805ea75d674ed597faa64d0b79a06a);
marker_65986016e4ee45318c35a7121eba53d6.bindPopup(popup_bbdf5fab791a401692889a1c834f9f5a)
;
marker_65986016e4ee45318c35a7121eba53d6.bindTooltip(
`<div>
6080, Isleta Boulevard Southwest, Pajarito, Bernalillo County, New Mexico, 87105, United States
</div>`,
{"sticky": true}
);
var marker_c306fd2d7a29446ea8f4013bbd1b4c28 = L.marker(
[35.130569, -106.499418],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_1430acdd24794c04ae4ccb93e68f1d94 = L.popup({"maxWidth": "100%"});
var html_be76515b60d04df0a1d9674121e02ad8 = $(`<div id="html_be76515b60d04df0a1d9674121e02ad8" style="width: 100.0%; height: 100.0%;">12500, Montgomery Boulevard Northeast, Eldorado Heights, Albuquerque, Bernalillo County, New Mexico, 87111, United States</div>`)[0];
popup_1430acdd24794c04ae4ccb93e68f1d94.setContent(html_be76515b60d04df0a1d9674121e02ad8);
marker_c306fd2d7a29446ea8f4013bbd1b4c28.bindPopup(popup_1430acdd24794c04ae4ccb93e68f1d94)
;
marker_c306fd2d7a29446ea8f4013bbd1b4c28.bindTooltip(
`<div>
12500, Montgomery Boulevard Northeast, Eldorado Heights, Albuquerque, Bernalillo County, New Mexico, 87111, United States
</div>`,
{"sticky": true}
);
var marker_dff3506de3d84aeab57c34dc176d776e = L.marker(
[35.0544873, -106.5776729],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_4117b5f78a0744379fbe4eaa30aab6eb = L.popup({"maxWidth": "100%"});
var html_5fc949e858d843b6b5f1efd2d9b1f512 = $(`<div id="html_5fc949e858d843b6b5f1efd2d9b1f512" style="width: 100.0%; height: 100.0%;">San Pedro Drive Southeast, Albuquerque, Bernalillo County, New Mexico, 87108-2928, United States</div>`)[0];
popup_4117b5f78a0744379fbe4eaa30aab6eb.setContent(html_5fc949e858d843b6b5f1efd2d9b1f512);
marker_dff3506de3d84aeab57c34dc176d776e.bindPopup(popup_4117b5f78a0744379fbe4eaa30aab6eb)
;
marker_dff3506de3d84aeab57c34dc176d776e.bindTooltip(
`<div>
San Pedro Drive Southeast, Albuquerque, Bernalillo County, New Mexico, 87108-2928, United States
</div>`,
{"sticky": true}
);
var marker_7eda04ad097b4c79b0225d396beee279 = L.marker(
[35.092637, -106.663251],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_6883c2d222194963968014905c83787a = L.popup({"maxWidth": "100%"});
var html_ba183212709e44b080346e16a0c77e91 = $(`<div id="html_ba183212709e44b080346e16a0c77e91" style="width: 100.0%; height: 100.0%;">1500, Lomas Boulevard Northwest, Old Town, Albuquerque, Bernalillo County, New Mexico, 87104, United States</div>`)[0];
popup_6883c2d222194963968014905c83787a.setContent(html_ba183212709e44b080346e16a0c77e91);
marker_7eda04ad097b4c79b0225d396beee279.bindPopup(popup_6883c2d222194963968014905c83787a)
;
marker_7eda04ad097b4c79b0225d396beee279.bindTooltip(
`<div>
1500, Lomas Boulevard Northwest, Old Town, Albuquerque, Bernalillo County, New Mexico, 87104, United States
</div>`,
{"sticky": true}
);
var marker_353ede1d11944e048cfbca10ea8a344e = L.marker(
[35.19415111428572, -106.65413005714285],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_8c832ad7a852437aa71863e4901d0fc4 = L.popup({"maxWidth": "100%"});
var html_1b28f86c065d4a8aa41d0a848cbe4305 = $(`<div id="html_1b28f86c065d4a8aa41d0a848cbe4305" style="width: 100.0%; height: 100.0%;">10131, Coors Boulevard Northwest, Albuquerque, Bernalillo County, New Mexico, 87114, United States</div>`)[0];
popup_8c832ad7a852437aa71863e4901d0fc4.setContent(html_1b28f86c065d4a8aa41d0a848cbe4305);
marker_353ede1d11944e048cfbca10ea8a344e.bindPopup(popup_8c832ad7a852437aa71863e4901d0fc4)
;
marker_353ede1d11944e048cfbca10ea8a344e.bindTooltip(
`<div>
10131, Coors Boulevard Northwest, Albuquerque, Bernalillo County, New Mexico, 87114, United States
</div>`,
{"sticky": true}
);
var marker_3b12fbd126f14007b8ef1699b43923c9 = L.marker(
[35.10922109948973, -106.58292279847349],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_722072abf41245478bd77b6c594981e7 = L.popup({"maxWidth": "100%"});
var html_706825f94a4c4c9e84f81499b91c71a8 = $(`<div id="html_706825f94a4c4c9e84f81499b91c71a8" style="width: 100.0%; height: 100.0%;">5339, Menaul Boulevard Northeast, Vista Encantada, Albuquerque, Bernalillo County, New Mexico, 87110, United States</div>`)[0];
popup_722072abf41245478bd77b6c594981e7.setContent(html_706825f94a4c4c9e84f81499b91c71a8);
marker_3b12fbd126f14007b8ef1699b43923c9.bindPopup(popup_722072abf41245478bd77b6c594981e7)
;
marker_3b12fbd126f14007b8ef1699b43923c9.bindTooltip(
`<div>
5339, Menaul Boulevard Northeast, Vista Encantada, Albuquerque, Bernalillo County, New Mexico, 87110, United States
</div>`,
{"sticky": true}
);
var marker_606afe959d9d47329a91db5015821c9a = L.marker(
[35.068384, -106.500028],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_f3d1ec39a56e4da592b4fd3f2a5df28a = L.popup({"maxWidth": "100%"});
var html_98a464a03c31402a8d06508e072a3e76 = $(`<div id="html_98a464a03c31402a8d06508e072a3e76" style="width: 100.0%; height: 100.0%;">13140, Central Avenue Northeast, Singing Arrow, Albuquerque, Bernalillo County, New Mexico, 87123, United States</div>`)[0];
popup_f3d1ec39a56e4da592b4fd3f2a5df28a.setContent(html_98a464a03c31402a8d06508e072a3e76);
marker_606afe959d9d47329a91db5015821c9a.bindPopup(popup_f3d1ec39a56e4da592b4fd3f2a5df28a)
;
marker_606afe959d9d47329a91db5015821c9a.bindTooltip(
`<div>
13140, Central Avenue Northeast, Singing Arrow, Albuquerque, Bernalillo County, New Mexico, 87123, United States
</div>`,
{"sticky": true}
);
var marker_6414b14980d14b5ba3b5fa68e6ef0c79 = L.marker(
[35.17567133557047, -106.57269586577182],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_9ce40f1865b24c6ba75d0e9f0f361a5b = L.popup({"maxWidth": "100%"});
var html_1f63a21e6c5c4f098e28300b97e56b37 = $(`<div id="html_1f63a21e6c5c4f098e28300b97e56b37" style="width: 100.0%; height: 100.0%;">6600, Holly Avenue Northeast, Journal Center, Albuquerque, Bernalillo County, New Mexico, 87113, United States</div>`)[0];
popup_9ce40f1865b24c6ba75d0e9f0f361a5b.setContent(html_1f63a21e6c5c4f098e28300b97e56b37);
marker_6414b14980d14b5ba3b5fa68e6ef0c79.bindPopup(popup_9ce40f1865b24c6ba75d0e9f0f361a5b)
;
marker_6414b14980d14b5ba3b5fa68e6ef0c79.bindTooltip(
`<div>
6600, Holly Avenue Northeast, Journal Center, Albuquerque, Bernalillo County, New Mexico, 87113, United States
</div>`,
{"sticky": true}
);
var marker_828cf4ac4eb345d78972f4f98dac4d06 = L.marker(
[35.128302, -106.550901],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_af4b7eb043814448a6165b14f0209c6b = L.popup({"maxWidth": "100%"});
var html_a93fd92d2d7e44b899998cc53389d32d = $(`<div id="html_a93fd92d2d7e44b899998cc53389d32d" style="width: 100.0%; height: 100.0%;">4200, Wyoming Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87111, United States</div>`)[0];
popup_af4b7eb043814448a6165b14f0209c6b.setContent(html_a93fd92d2d7e44b899998cc53389d32d);
marker_828cf4ac4eb345d78972f4f98dac4d06.bindPopup(popup_af4b7eb043814448a6165b14f0209c6b)
;
marker_828cf4ac4eb345d78972f4f98dac4d06.bindTooltip(
`<div>
4200, Wyoming Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87111, United States
</div>`,
{"sticky": true}
);
var marker_4d15dd5838604c5abbbd0c863ada6de3 = L.marker(
[35.1535895, -106.640564],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_d84884f373764cf0a90b237054cdb1b7 = L.popup({"maxWidth": "100%"});
var html_ecd3af1d0d5c48c69dea4e18055407ef = $(`<div id="html_ecd3af1d0d5c48c69dea4e18055407ef" style="width: 100.0%; height: 100.0%;">Star Bright Cleaners, 6601, 4th Street Northwest, Los Ranchos de Albuquerque, Bernalillo County, New Mexico, 87107, United States</div>`)[0];
popup_d84884f373764cf0a90b237054cdb1b7.setContent(html_ecd3af1d0d5c48c69dea4e18055407ef);
marker_4d15dd5838604c5abbbd0c863ada6de3.bindPopup(popup_d84884f373764cf0a90b237054cdb1b7)
;
marker_4d15dd5838604c5abbbd0c863ada6de3.bindTooltip(
`<div>
Star Bright Cleaners, 6601, 4th Street Northwest, Los Ranchos de Albuquerque, Bernalillo County, New Mexico, 87107, United States
</div>`,
{"sticky": true}
);
var marker_cc242c02d3db4e94912d9deccf0d5c5c = L.marker(
[35.178665, -106.687849],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_ee522b6c00dc4c0e83a955cbc5382d15 = L.popup({"maxWidth": "100%"});
var html_4bc635f7f60e4e429f3531ceb78e12f4 = $(`<div id="html_4bc635f7f60e4e429f3531ceb78e12f4" style="width: 100.0%; height: 100.0%;">8201, Golf Course Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States</div>`)[0];
popup_ee522b6c00dc4c0e83a955cbc5382d15.setContent(html_4bc635f7f60e4e429f3531ceb78e12f4);
marker_cc242c02d3db4e94912d9deccf0d5c5c.bindPopup(popup_ee522b6c00dc4c0e83a955cbc5382d15)
;
marker_cc242c02d3db4e94912d9deccf0d5c5c.bindTooltip(
`<div>
8201, Golf Course Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States
</div>`,
{"sticky": true}
);
var marker_b5559946dad44bd287ab8dd480de6b16 = L.marker(
[35.070786332589144, -106.68811831835365],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_f8c8fc865e6f4b97ad19870a054ae67b = L.popup({"maxWidth": "100%"});
var html_9b5c16d6cb864899bee51893a89f5002 = $(`<div id="html_9b5c16d6cb864899bee51893a89f5002" style="width: 100.0%; height: 100.0%;">2008, Larrazolo Road Southwest, Atrisco, Bernalillo County, New Mexico, 87105, United States</div>`)[0];
popup_f8c8fc865e6f4b97ad19870a054ae67b.setContent(html_9b5c16d6cb864899bee51893a89f5002);
marker_b5559946dad44bd287ab8dd480de6b16.bindPopup(popup_f8c8fc865e6f4b97ad19870a054ae67b)
;
marker_b5559946dad44bd287ab8dd480de6b16.bindTooltip(
`<div>
2008, Larrazolo Road Southwest, Atrisco, Bernalillo County, New Mexico, 87105, United States
</div>`,
{"sticky": true}
);
var marker_5ac8ffadd5cf409281fd90d652bcf5eb = L.marker(
[35.1464589, -106.5871179],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_6d8780718af1462fba6aba9e3fe8dbcd = L.popup({"maxWidth": "100%"});
var html_921928ac90d645ffa57c385bc7d27a8a = $(`<div id="html_921928ac90d645ffa57c385bc7d27a8a" style="width: 100.0%; height: 100.0%;">Delicias Cafe, 6001, San Mateo Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States</div>`)[0];
popup_6d8780718af1462fba6aba9e3fe8dbcd.setContent(html_921928ac90d645ffa57c385bc7d27a8a);
marker_5ac8ffadd5cf409281fd90d652bcf5eb.bindPopup(popup_6d8780718af1462fba6aba9e3fe8dbcd)
;
marker_5ac8ffadd5cf409281fd90d652bcf5eb.bindTooltip(
`<div>
Delicias Cafe, 6001, San Mateo Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States
</div>`,
{"sticky": true}
);
var marker_e4b71e2c948548faafee22ed2c5fb16a = L.marker(
[35.0900024, -106.3742676],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_8bc32cec7eb24d0db1283154a3e3978b = L.popup({"maxWidth": "100%"});
var html_ae013da1757746d78f8a0326f839779c = $(`<div id="html_ae013da1757746d78f8a0326f839779c" style="width: 100.0%; height: 100.0%;">Camino Municipal Road, Primera Agua, Tijeras, Bernalillo County, New Mexico, 87509, United States</div>`)[0];
popup_8bc32cec7eb24d0db1283154a3e3978b.setContent(html_ae013da1757746d78f8a0326f839779c);
marker_e4b71e2c948548faafee22ed2c5fb16a.bindPopup(popup_8bc32cec7eb24d0db1283154a3e3978b)
;
marker_e4b71e2c948548faafee22ed2c5fb16a.bindTooltip(
`<div>
Camino Municipal Road, Primera Agua, Tijeras, Bernalillo County, New Mexico, 87509, United States
</div>`,
{"sticky": true}
);
var marker_ef61268795ca45319b600b8eae04d609 = L.marker(
[35.1127563, -106.699706],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_05e12ad927e547c79fc2f1bded96e23e = L.popup({"maxWidth": "100%"});
var html_4ee08ad9fa05482db6b0397ea7efaab7 = $(`<div id="html_4ee08ad9fa05482db6b0397ea7efaab7" style="width: 100.0%; height: 100.0%;">Staples, 5201, Ouray Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States</div>`)[0];
popup_05e12ad927e547c79fc2f1bded96e23e.setContent(html_4ee08ad9fa05482db6b0397ea7efaab7);
marker_ef61268795ca45319b600b8eae04d609.bindPopup(popup_05e12ad927e547c79fc2f1bded96e23e)
;
marker_ef61268795ca45319b600b8eae04d609.bindTooltip(
`<div>
Staples, 5201, Ouray Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States
</div>`,
{"sticky": true}
);
var marker_40d95ca362fd4f4dae72925645767f6b = L.marker(
[35.076539, -106.3943776],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_37cbddcb67774af58e43c2c65e5779c9 = L.popup({"maxWidth": "100%"});
var html_b4b0f51c6c75440984aa2fff72bb7aa1 = $(`<div id="html_b4b0f51c6c75440984aa2fff72bb7aa1" style="width: 100.0%; height: 100.0%;">A. Montoya Elementary School, 24, Public School Road, Tijeras, Bernalillo County, New Mexico, 87059, United States</div>`)[0];
popup_37cbddcb67774af58e43c2c65e5779c9.setContent(html_b4b0f51c6c75440984aa2fff72bb7aa1);
marker_40d95ca362fd4f4dae72925645767f6b.bindPopup(popup_37cbddcb67774af58e43c2c65e5779c9)
;
marker_40d95ca362fd4f4dae72925645767f6b.bindTooltip(
`<div>
A. Montoya Elementary School, 24, Public School Road, Tijeras, Bernalillo County, New Mexico, 87059, United States
</div>`,
{"sticky": true}
);
var marker_38d291af77a44c4d8c7d7679c269d1fc = L.marker(
[35.0218658, -106.6852000579321],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_5abcfd7453794c7aaccb0d14be78a9ef = L.popup({"maxWidth": "100%"});
var html_38acc31fe8e946c58dd91e77d90eac43 = $(`<div id="html_38acc31fe8e946c58dd91e77d90eac43" style="width: 100.0%; height: 100.0%;">Adobe Acres Elementary School, 1724, Camino del Valle Southwest, Albuquerque, Bernalillo County, New Mexico, 87105, United States</div>`)[0];
popup_5abcfd7453794c7aaccb0d14be78a9ef.setContent(html_38acc31fe8e946c58dd91e77d90eac43);
marker_38d291af77a44c4d8c7d7679c269d1fc.bindPopup(popup_5abcfd7453794c7aaccb0d14be78a9ef)
;
marker_38d291af77a44c4d8c7d7679c269d1fc.bindTooltip(
`<div>
Adobe Acres Elementary School, 1724, Camino del Valle Southwest, Albuquerque, Bernalillo County, New Mexico, 87105, United States
</div>`,
{"sticky": true}
);
var marker_dd46b00606334dba88cd3d4f477c6452 = L.marker(
[35.0962977, -106.63581345094568],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_6d0f1c7850b542a3a14867b0fa3ae02c = L.popup({"maxWidth": "100%"});
var html_cb69808c1ee747a8b5f05011df8a5c9f = $(`<div id="html_cb69808c1ee747a8b5f05011df8a5c9f" style="width: 100.0%; height: 100.0%;">Albuquerque High School, 800, Odelia Road Northeast, Martinez Town, Albuquerque, Bernalillo County, New Mexico, 87102, United States</div>`)[0];
popup_6d0f1c7850b542a3a14867b0fa3ae02c.setContent(html_cb69808c1ee747a8b5f05011df8a5c9f);
marker_dd46b00606334dba88cd3d4f477c6452.bindPopup(popup_6d0f1c7850b542a3a14867b0fa3ae02c)
;
marker_dd46b00606334dba88cd3d4f477c6452.bindTooltip(
`<div>
Albuquerque High School, 800, Odelia Road Northeast, Martinez Town, Albuquerque, Bernalillo County, New Mexico, 87102, United States
</div>`,
{"sticky": true}
);
var marker_ceb20322e5e4432d955453a1cb6f0958 = L.marker(
[35.1524122, -106.57535374873993],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_ea1189042cac483593ff5351bafcbe1e = L.popup({"maxWidth": "100%"});
var html_27d20f6eda874b29b19e779630e4090a = $(`<div id="html_27d20f6eda874b29b19e779630e4090a" style="width: 100.0%; height: 100.0%;">Arroyo del Oso Elementary School, 6504, Harper Drive Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States</div>`)[0];
popup_ea1189042cac483593ff5351bafcbe1e.setContent(html_27d20f6eda874b29b19e779630e4090a);
marker_ceb20322e5e4432d955453a1cb6f0958.bindPopup(popup_ea1189042cac483593ff5351bafcbe1e)
;
marker_ceb20322e5e4432d955453a1cb6f0958.bindTooltip(
`<div>
Arroyo del Oso Elementary School, 6504, Harper Drive Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States
</div>`,
{"sticky": true}
);
var marker_e488fc26614545789d448dbd1fee8db8 = L.marker(
[35.0706027, -106.6075244],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_362c14cbf2aa4d4a94f5edce2724cfbf = L.popup({"maxWidth": "100%"});
var html_8a069a87eb92440292dd3bf13a35c6e3 = $(`<div id="html_8a069a87eb92440292dd3bf13a35c6e3" style="width: 100.0%; height: 100.0%;">Bandelier Elementary School, 3309, Pershing Avenue Southeast, Nob Hill, Albuquerque, Bernalillo County, New Mexico, 87106, United States</div>`)[0];
popup_362c14cbf2aa4d4a94f5edce2724cfbf.setContent(html_8a069a87eb92440292dd3bf13a35c6e3);
marker_e488fc26614545789d448dbd1fee8db8.bindPopup(popup_362c14cbf2aa4d4a94f5edce2724cfbf)
;
marker_e488fc26614545789d448dbd1fee8db8.bindTooltip(
`<div>
Bandelier Elementary School, 3309, Pershing Avenue Southeast, Nob Hill, Albuquerque, Bernalillo County, New Mexico, 87106, United States
</div>`,
{"sticky": true}
);
var marker_64104b79c19041f1aef1ef3584786d09 = L.marker(
[35.09857715, -106.54683601344757],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_413a6140f80c4d118cc112cd404cb116 = L.popup({"maxWidth": "100%"});
var html_990829c01c2b4691ac8d9315552eaf97 = $(`<div id="html_990829c01c2b4691ac8d9315552eaf97" style="width: 100.0%; height: 100.0%;">Bellehaven Elementary School, 8701, Princess Jeanne Avenue Northeast, Mesa Village, Albuquerque, Bernalillo County, New Mexico, 87112, United States</div>`)[0];
popup_413a6140f80c4d118cc112cd404cb116.setContent(html_990829c01c2b4691ac8d9315552eaf97);
marker_64104b79c19041f1aef1ef3584786d09.bindPopup(popup_413a6140f80c4d118cc112cd404cb116)
;
marker_64104b79c19041f1aef1ef3584786d09.bindTooltip(
`<div>
Bellehaven Elementary School, 8701, Princess Jeanne Avenue Northeast, Mesa Village, Albuquerque, Bernalillo County, New Mexico, 87112, United States
</div>`,
{"sticky": true}
);
var marker_63a3e8b9fd2b4ac995c35193c3e52e6c = L.marker(
[35.132187120343836, -106.7115493495702],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_39212239ecb6471cba6b05a53a04bb53 = L.popup({"maxWidth": "100%"});
var html_8be0fc23c3604771994f5b1805c8d82c = $(`<div id="html_8be0fc23c3604771994f5b1805c8d82c" style="width: 100.0%; height: 100.0%;">6325, Milne Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States</div>`)[0];
popup_39212239ecb6471cba6b05a53a04bb53.setContent(html_8be0fc23c3604771994f5b1805c8d82c);
marker_63a3e8b9fd2b4ac995c35193c3e52e6c.bindPopup(popup_39212239ecb6471cba6b05a53a04bb53)
;
marker_63a3e8b9fd2b4ac995c35193c3e52e6c.bindTooltip(
`<div>
6325, Milne Road Northwest, Albuquerque, Bernalillo County, New Mexico, 87120, United States
</div>`,
{"sticky": true}
);
var marker_b6252b6c13de4857a8c82c9d98162644 = L.marker(
[35.206041674620494, -106.66576215015807],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_5df8e1c3114b4e1b81e476e987cbfc8c = L.popup({"maxWidth": "100%"});
var html_25396da31e804df0b864649d51af6be1 = $(`<div id="html_25396da31e804df0b864649d51af6be1" style="width: 100.0%; height: 100.0%;">1510, Ellison Drive Northwest, Albuquerque, Bernalillo County, New Mexico, 87114, United States</div>`)[0];
popup_5df8e1c3114b4e1b81e476e987cbfc8c.setContent(html_25396da31e804df0b864649d51af6be1);
marker_b6252b6c13de4857a8c82c9d98162644.bindPopup(popup_5df8e1c3114b4e1b81e476e987cbfc8c)
;
marker_b6252b6c13de4857a8c82c9d98162644.bindTooltip(
`<div>
1510, Ellison Drive Northwest, Albuquerque, Bernalillo County, New Mexico, 87114, United States
</div>`,
{"sticky": true}
);
var marker_0ea49631baa842d49e5889baf6bcced6 = L.marker(
[35.18730385140562, -106.58238202811245],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_86f9990a43d14d3fb6e3d0a183bb09a5 = L.popup({"maxWidth": "100%"});
var html_a5422f354a494b3aa0a718b96d17aab1 = $(`<div id="html_a5422f354a494b3aa0a718b96d17aab1" style="width: 100.0%; height: 100.0%;">5600, Eagle Rock Avenue Northeast, Albuquerque, Bernalillo County, New Mexico, 87113, United States</div>`)[0];
popup_86f9990a43d14d3fb6e3d0a183bb09a5.setContent(html_a5422f354a494b3aa0a718b96d17aab1);
marker_0ea49631baa842d49e5889baf6bcced6.bindPopup(popup_86f9990a43d14d3fb6e3d0a183bb09a5)
;
marker_0ea49631baa842d49e5889baf6bcced6.bindTooltip(
`<div>
5600, Eagle Rock Avenue Northeast, Albuquerque, Bernalillo County, New Mexico, 87113, United States
</div>`,
{"sticky": true}
);
var marker_f7d3abbbf73f439ba3e7af3c88a9b998 = L.marker(
[35.13262985, -106.583770089427],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_856460c3e5544940b1c358024716f13a = L.popup({"maxWidth": "100%"});
var html_789fc83d69424eea869d3702455fc4a0 = $(`<div id="html_789fc83d69424eea869d3702455fc4a0" style="width: 100.0%; height: 100.0%;">Del Norte High School, 5323, Montgomery Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States</div>`)[0];
popup_856460c3e5544940b1c358024716f13a.setContent(html_789fc83d69424eea869d3702455fc4a0);
marker_f7d3abbbf73f439ba3e7af3c88a9b998.bindPopup(popup_856460c3e5544940b1c358024716f13a)
;
marker_f7d3abbbf73f439ba3e7af3c88a9b998.bindTooltip(
`<div>
Del Norte High School, 5323, Montgomery Boulevard Northeast, Albuquerque, Bernalillo County, New Mexico, 87109, United States
</div>`,
{"sticky": true}
);
var marker_9d6a28260ebd41fc9d2373ebfab5662e = L.marker(
[35.11166327272727, -106.67625563636363],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_a6213d665036477a95e84286b002c999 = L.popup({"maxWidth": "100%"});
var html_c503c4b4c85543f8a8bd3911f4e36cfd = $(`<div id="html_c503c4b4c85543f8a8bd3911f4e36cfd" style="width: 100.0%; height: 100.0%;">2436, Zickert Road Northwest, Los Duranes, Albuquerque, Bernalillo County, New Mexico, 87104, United States</div>`)[0];
popup_a6213d665036477a95e84286b002c999.setContent(html_c503c4b4c85543f8a8bd3911f4e36cfd);
marker_9d6a28260ebd41fc9d2373ebfab5662e.bindPopup(popup_a6213d665036477a95e84286b002c999)
;
marker_9d6a28260ebd41fc9d2373ebfab5662e.bindTooltip(
`<div>
2436, Zickert Road Northwest, Los Duranes, Albuquerque, Bernalillo County, New Mexico, 87104, United States
</div>`,
{"sticky": true}
);
var marker_3c5ecd1ed1ec4f88a1f9575feecf7d9c = L.marker(
[35.14574545, -106.5179918499102],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_f2080d320bd84b848066cf139c34808f = L.popup({"maxWidth": "100%"});
var html_c009cab6807d406fa502b8af8c7e8e02 = $(`<div id="html_c009cab6807d406fa502b8af8c7e8e02" style="width: 100.0%; height: 100.0%;">Eisenhower Middle School, 11001, Camero Avenue Northeast, Eisenhower Area, Albuquerque, Bernalillo County, New Mexico, 87111, United States</div>`)[0];
popup_f2080d320bd84b848066cf139c34808f.setContent(html_c009cab6807d406fa502b8af8c7e8e02);
marker_3c5ecd1ed1ec4f88a1f9575feecf7d9c.bindPopup(popup_f2080d320bd84b848066cf139c34808f)
;
marker_3c5ecd1ed1ec4f88a1f9575feecf7d9c.bindTooltip(
`<div>
Eisenhower Middle School, 11001, Camero Avenue Northeast, Eisenhower Area, Albuquerque, Bernalillo County, New Mexico, 87111, United States
</div>`,
{"sticky": true}
);
var marker_f419821a256949e681da39e8b0514cb2 = L.marker(
[35.13059793763304, -106.51409583848731],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_fe7307271b10485eae03d14b65dfde8c = L.popup({"maxWidth": "100%"});
var html_4dcb2795883844ecbc66ea15a008c9fe = $(`<div id="html_4dcb2795883844ecbc66ea15a008c9fe" style="width: 100.0%; height: 100.0%;">11300, Montgomery Boulevard Northeast, Cielito Lindo, Albuquerque, Bernalillo County, New Mexico, 87111, United States</div>`)[0];
popup_fe7307271b10485eae03d14b65dfde8c.setContent(html_4dcb2795883844ecbc66ea15a008c9fe);
marker_f419821a256949e681da39e8b0514cb2.bindPopup(popup_fe7307271b10485eae03d14b65dfde8c)
;
marker_f419821a256949e681da39e8b0514cb2.bindTooltip(
`<div>
11300, Montgomery Boulevard Northeast, Cielito Lindo, Albuquerque, Bernalillo County, New Mexico, 87111, United States
</div>`,
{"sticky": true}
);
var marker_3191be363d744cf6bf1b78ebbbd5cb09 = L.marker(
[35.06630836391023, -106.25987134036258],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_d9f94d29c0a94ccbb6aed37fedb749ec = L.popup({"maxWidth": "100%"});
var html_f02de924a1304eba8dd8a0c32b0e1a06 = $(`<div id="html_f02de924a1304eba8dd8a0c32b0e1a06" style="width: 100.0%; height: 100.0%;">54, NM 217, Bernalillo County, New Mexico, 87015, United States</div>`)[0];
popup_d9f94d29c0a94ccbb6aed37fedb749ec.setContent(html_f02de924a1304eba8dd8a0c32b0e1a06);
marker_3191be363d744cf6bf1b78ebbbd5cb09.bindPopup(popup_d9f94d29c0a94ccbb6aed37fedb749ec)
;
marker_3191be363d744cf6bf1b78ebbbd5cb09.bindTooltip(
`<div>
54, NM 217, Bernalillo County, New Mexico, 87015, United States
</div>`,
{"sticky": true}
);
var marker_22d3416bdd104b35b7eba3c1adb4426a = L.marker(
[35.11814605102041, -106.64804525510203],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_4e3262fc874144e1a86532d12b4d06fb = L.popup({"maxWidth": "100%"});
var html_54d6fa840c854076b7d6a59a4adf0a15 = $(`<div id="html_54d6fa840c854076b7d6a59a4adf0a15" style="width: 100.0%; height: 100.0%;">3501, 6th Street Northwest, Albuquerque, Bernalillo County, New Mexico, 87107, United States</div>`)[0];
popup_4e3262fc874144e1a86532d12b4d06fb.setContent(html_54d6fa840c854076b7d6a59a4adf0a15);
marker_22d3416bdd104b35b7eba3c1adb4426a.bindPopup(popup_4e3262fc874144e1a86532d12b4d06fb)
;
marker_22d3416bdd104b35b7eba3c1adb4426a.bindTooltip(
`<div>
3501, 6th Street Northwest, Albuquerque, Bernalillo County, New Mexico, 87107, United States
</div>`,
{"sticky": true}
);
var marker_85dbda9c20d94245ab7a3b6770660183 = L.marker(
[35.089256, -106.55555],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_eb8f7857c12a461492c91c2b09f6e198 = L.popup({"maxWidth": "100%"});
var html_df1d6431464642d89c8aa92bf20267df = $(`<div id="html_df1d6431464642d89c8aa92bf20267df" style="width: 100.0%; height: 100.0%;">1100, Texas Street Northeast, East End Addition, Albuquerque, Bernalillo County, New Mexico, 87110, United States</div>`)[0];
popup_eb8f7857c12a461492c91c2b09f6e198.setContent(html_df1d6431464642d89c8aa92bf20267df);
marker_85dbda9c20d94245ab7a3b6770660183.bindPopup(popup_eb8f7857c12a461492c91c2b09f6e198)
;
marker_85dbda9c20d94245ab7a3b6770660183.bindTooltip(
`<div>
1100, Texas Street Northeast, East End Addition, Albuquerque, Bernalillo County, New Mexico, 87110, United States
</div>`,
{"sticky": true}
);
var marker_b11ba350d04b47f69211bcc6261be877 = L.marker(
[35.064834, -106.64907466666666],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_fa1dcefbc9264024a1de3dfe164c4328 = L.popup({"maxWidth": "100%"});
var html_190874a053784426b1c163f75c0a5490 = $(`<div id="html_190874a053784426b1c163f75c0a5490" style="width: 100.0%; height: 100.0%;">1830, William Street Southeast, San Jose, Barelas, Albuquerque, Bernalillo County, New Mexico, 87102, United States</div>`)[0];
popup_fa1dcefbc9264024a1de3dfe164c4328.setContent(html_190874a053784426b1c163f75c0a5490);
marker_b11ba350d04b47f69211bcc6261be877.bindPopup(popup_fa1dcefbc9264024a1de3dfe164c4328)
;
marker_b11ba350d04b47f69211bcc6261be877.bindTooltip(
`<div>
1830, William Street Southeast, San Jose, Barelas, Albuquerque, Bernalillo County, New Mexico, 87102, United States
</div>`,
{"sticky": true}
);
var marker_e3f3f55d54bf46358848ba980ae9dafc = L.marker(
[35.07559490909091, -106.59232675757575],
{}
).addTo(marker_cluster_226b7b7738e74cbb9bd985511c8d6f74);
var popup_311e2b189e5a41749577a21ae661ba11 = L.popup({"maxWidth": "100%"});
var html_95d790573fd741409827f1628aecbdb6 = $(`<div id="html_95d790573fd741409827f1628aecbdb6" style="width: 100.0%; height: 100.0%;">4700, Coal Avenue Southeast, Nob Hill, Albuquerque, Bernalillo County, New Mexico, 87108, United States</div>`)[0];