forked from ModelEarth/localsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2381 lines (1890 loc) · 98.7 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>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<!--
Localsite Template
localsite.js pulls the #insertedText div from this page as the template for header and map portion of layout.
-->
<title>Community Map</title>
<!-- For Goole Sheets, since CORS blocks CSV loading on some sheets. -->
<script type="text/javascript" src="../map/neighborhood/js/tabletop.js" id="/localsite/map/neighborhood/js/tabletop.js"></script>
<!-- Also in localsite.js. Added here to prevent error "Tabulator JS not available for displaying list." that otherwise pops up after a minute. -->
<!--
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@4.9.3/dist/js/tabulator.min.js"></script>
<link id="/tabulator-tables/dist/css/tabulator.min.css" rel="stylesheet" type="text/css" href="https://unpkg.com/tabulator-tables/dist/css/tabulator.min.css" media="all">
<link type="text/css" rel="stylesheet" href="/localsite/css/base-tabulator.css" id="/localsite/css/base-tabulator.css" />
-->
<!--
<script>
let hash = getHash();
if (!hash.show) {
hiddenhash.layers = "brigades"; // Only dataset with entire country in one file. Used by loadFromSheet which is called by loadMap1
}
if (!hash.state) {
if (hash.show == "recycling" || hash.show == "ppe" || hash.show == "suppliers" || hash.show == "360" || hash.show == "opendata") {
hiddenhash.state = "GA";
}
}
// To implement
// param.zoom = 8
</script>
-->
<script type="text/javascript" src="../js/showdown.min.js" id="/localsite/js/showdown.min.js"></script>
<script type="text/javascript" src="../js/jquery.min.js" id="/localsite/js/jquery.min.js"></script>
<script type="text/javascript" src="../js/navigation.js" id="/localsite/js/navigation.js"></script>
<link type="text/css" rel="stylesheet" href="../css/base.css" id="/localsite/css/base.css" />
<link rel="stylesheet" href="../css/search-filters.css" id="/localsite/css/search-filters.css" />
<link rel="stylesheet" href="../css/map-display.css" id="/localsite/css/map-display.css" />
<script type="text/javascript" src="../js/localsite.js?show=vehicles&state=GA&showheader=true&showsearch=true&templatepage=true"></script>
<!--
<link rel="stylesheet" href="../css/hexagons.css">
-->
<!-- Local Header Navigation -->
<script>
//applyNavigation();
//alert("test")
if(typeof param == 'undefined') {
var param = {};
}
if (location.host.indexOf('codeforamerica') >= 0) {
param.titleArray = ["code","for","america"]
param.startTitle = "Code for America"
}
$(document).ready(function () {
if (location.host.indexOf('localhost') >= 0) {
$("#filterClickLocation").show(); // Seems to need Tabulator
}
});
</script>
<!-- Activate to include site navigation-->
<link rel="stylesheet" href="../css/leaflet.css" id="/localsite/css/leaflet.css" />
<!-- Resides AFTER Leaflet's CSS -->
<script src="../js/leaflet.js" id="/localsite/js/leaflet.js"></script>
<link href="../css/leaflet.icon-material.css" rel="stylesheet">
<script src="../js/leaflet.icon-material.js"></script>
<!--
<script src="../js/d3/d3-legend.js"></script>
-->
<link rel="stylesheet" href="../css/map.css" id="/localsite/css/map.css" />
<!-- For Facebook -->
<meta property="og:title" content="Community Map Resources" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://model.earth/data-pipeline/img/elements/bulb.png" />
<!-- To do: populate with the current page and path
<meta property="og:url" content="" />
-->
<meta property="og:description" content="Maps and Data Visualizations" />
<!-- For Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Community Map Resources" />
<meta name="twitter:description" content="Input-Output Modeling" />
<meta name="twitter:image" content="https://model.earth/data-pipeline/img/elements/bulb.png" />
</head>
<body>
<style>
#headerbar {
/* display: block; */ /* Since navigation.js detects #headerbar prior to move */
}
</style>
<!-- INTRO -->
<div id="introDiv" style="displayX:none" class="local content contentpadding"></div>
<div id="readmeHolder" class="content contentpadding" style="display:none; margin-top:0px; padding-bottom:40px">
<div id="readmeEdit" style='float:right' class='editButton'><a style="text-decoration: none" href='https://github.com/modelearth/community/tree/master/resources/useeio/design'>Edit</a></div>
<div id="readmeDiv"></div>
<a href="javascript:void(0)" onclick="showOverview();" id="showOverview">Show overview</a>
</div>
<script>
//param.showheader = "false";
param["showhero"] = "false";
if (param["intro"] || param["show"] == "farmfresh") {
//document.getElementById("readmeHolder").style.display = "block";
//document.getElementById("readmeEdit").style.display = "block";
//loadMarkdown("../map/starter/README.md", "introDiv", "_parent");
}
if (param["design"] && param["show"] != "farmfresh") {
document.getElementById("readmeHolder").style.display = "block";
document.getElementById("readmeEdit").style.display = "block";
loadMarkdown("../resources/USEEIO/design/intro.md", "readmeDiv", "_parent");
}
function showOverview() {
document.getElementById("showOverview").style.display = "none";
$("#readmeDiv").html("");
loadMarkdown("../resources/USEEIO/design/README.md", "readmeDiv", "_parent");
}
</script>
<!-- /INTRO -->
<div id="insertedTextSource">
<div id="insertedText">
<!-- Start HTML -->
<style type="text/css">
.show-on-load {display: none;}
/* STYLE OVERRIDES FOR DRUPAL */
#legendHolder {min-width: 270px;}
.component--custom_markup > .content {max-width:100%}
.component--main_content, .component--single_column_content {padding:0px}
svg {max-width:none;}
.visually-hidden {display: none !important;}
</style>
<!-- HEADER BAR -->
<div id="headerbar" class="headerbar headerbarheight headerbarhide" style="display:none;width:100%;position:fixed;overflow:visible;z-index:1002;pointer-events:auto;">
<div class="contentpadding" style="padding-top:0px; padding-bottom:0px; float:left; min-width: 200px">
<div id="logospace" class="headerbarheight">
<div id="logoholder">
<div id="headerLogo">
</div>
<div id="headerLocTitleHolder">
<span id="headerSiteTitle"></span>
<a href="../community/tools" class="logolink">
<span id="headerLocTitle"></span>
</a>
</div>
</div>
</div>
</div>
<div style="float:left; border-left:1px solid #ccc;">
<style>
.topstack {
float:left;
padding-right: 10px;
padding:18px;
border-right:1px solid #ccc;
}
.topsm {
font-size: 11px;
float: left;
}
.toplg {
clear:both;
font-size: 17px;
color: #686868;
}
.arrow_down_sm {
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #999;
margin: 4px;
float: left;
pointer-events: auto;
}
</style>
<!-- Cool top menu option -->
<div class="localX" style="display:none">
<div class="hideMobile">
<div class="topstack">
<div class="topsm">Locations</div><div class="arrow_down_sm"></div>
<div class="toplg">3 counties in Arizona</div>
</div>
<div class="topstack">
<div class="topsm">Goods & Services</div><div class="arrow_down_sm"></div>
<div class="toplg">Recycling Industries</div>
</div>
<div class="topstack">
<div class="topsm">Project Teams</div><div class="arrow_down_sm"></div>
<div class="toplg">React Developers</div>
</div>
</div>
</div>
</div>
<div class="upperIcons noprint" style="float:right;">
<div style="float:left">
<div class="showSearch earth georgia" style="display:none">
<!-- To do: use javascript to retain the current window.location.search value from URL when on a search page.
add -active rollover
-->
<img src="/localsite/img/icon/search.png" style="width:27px; opacity:0.5">
<!--
<div style="font-size:18pt;padding:2px 4px 0 2px;">🔍</div>
-->
</div>
</div>
<div class="hideMobile" style="float:left;">
<div class="expandToFullscreen" style="border:0px; padding: 3px 3px; cursor: pointer;">
<img src="/localsite/img/icon/fullscreen.png" style="width:22px; opacity:0.5">
<!--span style="font-size:34px;line-height:34px;padding-right:4px; color:#777">❐</span-->
</div>
<div class="reduceFromFullscreen" style="display:none; border:0px; padding: 3px 3px; cursor: pointer">
<img src="/localsite/img/icon/minimize.png" style="width:25px; opacity:0.5">
<!--
<span style="font-size:33px;line-height:34px;padding-right:4px; color:#777">❒</span>
-->
</div>
</div>
<div class="earth local" style="float:left; display:none">
<div class="showEarth">
<i class="material-icons show-on-load" style="font-size:34px;opacity:0.2; margin-top:-3px" data="apps"></i>
</div>
</div>
<div class="earth" style="float:left; display:none">
<div class="showMenu">
<i class="material-icons show-on-load" style="font-size:34px;opacity:0.3; margin-top:-3px" data="apps"></i>
</div>
</div>
</div>
</div>
<!-- /HEADER BAR -->
<!-- RIGHT MENU -->
<!-- Menu and Secondary Menus -->
<div id="rightTopMenuVisibility"><!-- Can we remove this? -->
<!--
<div id="hideTopPanel" class="close-X" style="position:absolute;right:5px;top:8px;padding-right:10px; z-index:99999">✕</div>
-->
<div id="rightTopMenu" onclick="event.stopPropagation()" class="row hideOnBodyClick" style="float:right; display:none">
<div class="column column-hidden" style="float:left;"><div class="rightTopMenuLeft"></div></div>
<div class="local column rightTopMenuInner topMenuOffset floater" style="display:none">
<!-- map icon -->
<!--
<div class="showMap showMapClick rightTopItem" style="display:none; padding-top:14px">
<i class="material-icons menuTopIcon"></i>
</div>
<div class="hideMap rightTopItem" style="display:none; float:left">
<i class="material-icons menuTopIcon menuTopIconHot"></i>
</div>
<div class="hideEmbed">
<div class="showSections rightTopItem" style="padding-top:14px; padding-right:10px">
<i class="material-icons menuTopIcon"></i>
<span>Topics</span>
</div>
</div>
-->
<div class="hideEmbed">
<div class="showSections rightTopItem active" style="padding-top:14px; padding-right:10px">
<i class="material-icons menuTopIcon"></i>
<span>Topics</span>
</div>
</div>
<div class="hideMobile expandToFullscreen" style="display: none;">
<div id="expandPanelHolder" class="expandFullScreen rightTopItem">
<!-- font-size:20pt; padding:4px 5px 4px 4px; color:#aaa; font-weight:400 -->
<i id="expandPanel" class="material-icons menuTopIcon enlargeIcon" style="font-size:28pt !important"></i>
<span>Expand</span>
</div>
</div>
<!--
<div class="showFilters showFiltersClick rightTopItem" style="padding-top:14px; padding-right:10px">
<i class="material-icons menuTopIcon"></i>
<span>People</span>
</div>
<div class="hideMobileX">
<div class="showFilters showFiltersClick rightTopItem" style="padding-top:14px; padding-right:10px">
<i class="material-icons menuTopIcon"></i>
<span>Search</span>
</div>
<div class="hideFilters hideFiltersClick rightTopItem" style="display:none; padding-top:14px; padding-right:10px">
<i class="material-icons menuTopIcon"></i>
<span>Hide</span>
</div>
</div>
-->
<div class="showSearch rightTopItem">
<i class="material-icons menuTopIcon"></i>
<span>Search</span>
</div>
<div class="showSettings rightTopItem">
<i class="material-icons menuTopIcon"></i>
<span>Settings</span>
</div>
<!-- mail outline icon -->
<div class="contactUs rightTopItem">
<i class="material-icons menuTopIcon contactIcon"></i>
<span>Contact</span>
</div>
<div class="addthis_button rightTopItem">
<i class="material-icons menuTopIcon" title="Share"></i>
<span>Share</span>
</div>
<div class="addlisting_button rightTopItem" style="display:none">
<i class="material-icons menuTopIcon" style="font-weight:800;"></i>
<span>Add</span>
</div>
<div class="print_button rightTopItem">
<i class="material-icons menuTopIcon"></i>
<span>Print</span>
</div>
<!-- person icon -->
<div class="showAccountTools user-1 rightTopItem" style="display:none">
<div class="showAccount user-0">
<i class="material-icons menuTopIcon"></i>
<span>Account</span>
</div>
<div class="logoutAccount user-1" style="display:none">
<i class="material-icons menuTopIcon"></i>
<span>Log out</span>
</div>
</div>
<!--
<div id="showSettings" class="showSettings hideEmbed" title="Settings"><i class="material-icons menuTopIcon hideMobile" style="font-size:18pt; padding:13px 5px 5px 5px;"></i></div>
<div id="hideSettings" style="display:none" title="Hide Settings"><i class="material-icons menuTopIcon menuTopIconHot" style="font-size:18pt; padding:13px 5px 5px 5px;"></i></div>
-->
<!-- share -->
<!--
<div class="rightTopItem shareThis">
<i class="material-icons menuTopIcon" style="padding-top:2px; padding-right:8px;"></i>
</div>
-->
<div class="showSettingsInNavTop" style="float:left">
</div>
</div>
<!--
Why does this
-->
<!-- Topics Panel -->
<div class="column column-hidden topicsPanel menuExpanded topMenuOffset floater" style="min-width: 400px; display:block">
<div class="menuExpandedScroll always-show-scroll">
<div class="menuTitle" style="display:none">Topics</div>
<div id="topicsMenu"></div>
</div>
</div>
<!-- /Topics Panel -->
<!-- Settings Panel -->
<div class="column column-hidden settingsPanel menuExpanded topMenuOffset floater" style="min-width: 400px;">
<div class="menuExpandedScroll">
<div class="hideSettings hideSettingsClick close-X-sm" style="position:absolute;right:0;padding:0 12px 12px 12px;"><i class="material-icons" style="font-size:28px"></i></div>
<div class="menuTitle">Settings</div>
<div class="hideMobile">
<div classX="user-6" style="displayX:none">
<div class="sitemodeHolder" style="display:none;">
<div class="setLeft">Header</div>
<div class="setOverflow"><div class="setRight">
<select class="sitemode" id="sitemode">
<option value="widget" selected>Section Navigation</option>
<option value="fullnav">Full Navigation</option>
</select>
</div></div>
<div class="setDiv"></div>
</div>
</div>
</div>
<div class="setLeft">Style</div>
<div class="setOverflow"><div class="setRight">
<select id="sitelook">
<option value="default" selected>Default</option>
<option value="light">Light Colors</option>
<option value="dark">Night Vision</option>
</select>
</div></div>
<div class="setDiv"></div>
<div class="user-10" style="display:none">
<div class="sitesourceHolder" style="display:none">
<div class="setLeft">Display</div>
<div class="setOverflow"><div class="setRight">
<select class="sitesource">
<option value="overview" selected>Overview</option>
<option value="directory">Directory</option>
</select>
</div></div>
<div class="setDiv"></div>
</div>
</div>
<div style="display:none">
<div class="setLeft">Layout</div>
<div class="setOverflow"><div class="setRight">
<select id="bts">
<option value="12">Overview, Directory</option>
<option value="21">Directory, Overview</option>
<option value="02">Directory Only</option>
<option value="01">Overview Only</option>
</select>
</div></div>
<div class="setDiv"></div>
</div>
<div class="setLeft"><div>Basemap</div></div>
<div class="setOverflow">
<div id='selector_menu' class="setRight">
<select id='basemapSelector' class='layerSelector sitebasemap catchClick'>
<option value='positron_light_nolabels'>Positron</option>
<option value='osm'>Open Street Map</option>
<option value='esri'><!--- Esri -->Satellite Map</option>
<!-- Zoom not appearing -->
<!--<option value='default'>Open Street Map 2</option>-->
<!-- Zoom not appearing -->
<!-- <option value='green'>Green Topo Map</option>-->
<option value='dark'>Dark Background</option>
<option value='firemap'>Fire Map</option>
</select>
</div>
</div>
<!--
<div class="setDiv"></div>
<div class="setLeft"><div>Zoom To</div></div>
<div class="setOverflow">
<div class="setRight">
<select class='center'>
<option value='mylocation'>My Location</option>
<option value='filter'>Nearby</option>
<option value='state'>State</option>
<option value='country'>Country</option>
<option value='world'>World</option>
</select>
</div>
</div>
<div class="setDiv"></div>
<div style="displayX:none">
<div class="setLeft">My Latitude</div>
<div class="setOverflow"><div class="setRight">
<input class="mylat filterClick mobileWide textInput" placeholder="Latitude" type="text" style="width: 120px; margin-top: 0px" />
</div></div>
<div class="setDiv"></div>
</div>
<div style="displayX:none">
<div class="setLeft">My Longitude</div>
<div class="setOverflow"><div class="setRight">
<input class="mylon filterClick mobileWide textInput" placeholder="Longitude" type="text" style="width: 120px; margin-top: 0px" />
</div></div>
<div class="setDiv"></div>
</div>
-->
<!-- Multilayer Checkboxes -->
<!--
<div class="setLeft"><div>Layer Checkboxes</div></div>
<div class="setOverflow">
<div class="setRight">
<div class="hideMultiselect settingsButton">Visible</div>
<div class="showMultiselect settingsButton" style="display:none; background:#ddd">Hidden</div>
</div>
</div>
<div class="setDiv"></div>
-->
<!--
<div class="hideHero layoutTab filterTab buttonUnderCategories" style="margin:15px 10px 0 0;display:none">Hide Hero</div>
<div class="showHero layoutTab filterTab buttonUnderCategories" style="margin:15px 10px 0 0;">Show Hero</div>
<div class="setDiv"></div>
-->
<!--
<div><strong>Link</strong></div>
<input type="text" value='https://georgiadata.github.io/site/' style='line-height:18pt;display:block;width:100%;font-size:12pt;color:#333;background:#fff;border:1px solid #aaa;'><br>
-->
<!-- Embed Directory -->
<!--
<div class="setLeft">Embed</div>
<div class="setOverflow">
<div class="setRight">
<div class="showEmbedTag settingsButton">View Sample</div>
</div>
</div>
<div class="embedTag" style="display:none">
<div style="margin-bottom:4px"><a href="widget.html#aerospace&sitelook=coi">Get HTML</a> - view source</div>
<input type="text" value='<script src="//georgiadata.github.io/site/js/embed.js?site=georgia&v=0.1"></script><div id="map"></div>'
style='display:none;line-height:18pt;width:100%;font-size:12pt;color:#333;background:#fff;border:1px solid #aaa;'>
</div>
-->
<br />
<div class="user-5" style="display:none">
<hr>Staff only -
<a href="/maps/leaflet/providers/preview/" target="basemaps">View Basemaps</a><br>
<div class="settingAdminNotes"></div>
</div>
</div>
</div>
<!-- End Settings Panel -->
<!-- Print Options -->
<div class="column column-hidden menuExpanded printOptionsHolderWide">
<div class="menuExpandedScroll">
<div class="printOptionsHolder">
<div class="printOptionsText">
<div class="printOptionsPosition"></div>
<div class="menuTitle">Print</div>
<div style="line-height: 23px">
<div class="printContent" style="display:none"><input type="checkbox" name="printcontent" id="printcontent" value="printcontent"><label for="printcontent">Content</label></div>
<div class="printMap" style="display:none"><input type="checkbox" name="printmap" id="printmap" value="printmap"><label for="printmap">Map</label></div>
<div class="printList" style="display:none"><input type="checkbox" name="printlist" id="printlist" value="printlist" checked><label for="printlist">List</label></div>
<!-- Hidden until resolving simultneous selection of list and grid. -->
<div class="printGrid" style="display:none"><input type="checkbox" name="printgrid" id="printgrid" value="printgrid"><label for="printgrid">Grid</label></div>
</div>
<div style="margin-top:10px"></div>
<div style="font-size:16px;margin-bottom:3px"><b>Orientation:</b>
<!--
<input type="checkbox" name="landscape" id="landscape" value="landscape" checked><label for="landscape">Landscape</label>
-->
<input id="landscape" type="radio" name="printOrientation" value="landscape" checked><label for="landscape">Landscape</label>
<input id="portrait" type="radio" name="printOrientation" value="portrait" ><label for="portrait">Portrait</label>
</div>
<br>
<div style="font-size:14px; line-height:17px; padding-top:8px; padding-bottom:12px; clear:both">
To output as a PDF file, choose PDF as your printer<br>after clicking the button below.
</div><br>
<div class="printPage btn btn-primary" style="margin-top:12px;margin-left:0px;min-width:80px;text-align:center; clear:both"> Print </div>
</div>
</div>
</div>
</div>
<!-- End Print Options -->
</div>
</div>
<!-- /rightTopMenu -->
<div id="menuHolder" style="pointer-events: auto; background:#333; display:none">
<!--
<div style="float:right;">
<div class="expandToFullscreen" style="border:0px; padding: 10px; cursor: pointer; color:#ccc">
<span style="font-size:34px;line-height:34px;padding-right:4px">❐</span>
</div>
<div class="reduceFromFullscreen" style="display:none; border:0px; padding: 10px; cursor: pointer">
<span style="font-size:33px;line-height:34px;padding-right:4px">❒</span>
</div>
</div>
-->
<div id="menuTop">
<div class="hideMenu"><span class="hideMenuInner" style="color:#aaa">✕</span></div>
</div>
<div style="clearX:both"></div>
<div id="menuNav">
<!-- Right Links -->
<div style="display: none;" class="localX hideMobile">
<!-- move to naics section
<div class="local downloadbutton showDownload pagebutton" href="#" style="float:left; display:none">
<div style="float:left">
<i class="material-icons" style="font-size:15pt;padding-top:8px"></i>
</div>
<div class="downloadtext" style="margin:10px 5px 0 3px;white-space: nowrap; float:left">
Download
</div>
</div>
-->
<!--
<div class="local addlisting pagebutton greenbutton" href="#" style="float:left; display:none">
<div class="hideMobile" style="margin:10px 5px 0 3px;white-space: nowrap; float:left">
Add Listing
</div>
<div class="showMobile" style="display:none;"><i class="material-icons" style="font-size:19pt;padding-top:4px"></i></div>
</div>
<div class="local partnertools pagebutton" href="#" style="float:left; display:none">
<div style="margin:10px 5px 0 3px;white-space: nowrap; float:left">
Partner Tools
</div>
</div>
-->
<div class="showInfo showInfoButton1 pagebutton" style="float: left; padding: 3px 3px 3px 4px; color:#fff; display:none;"><i class="material-icons" style="font-size:28px;"></i>
</div>
</div>
<!-- /Right Links -->
</div>
</div>
<!-- End Menu and Secondary Menus -->
<!--
<div id="headeroffset" style="height:100px;"></div>
-->
<!-- /RIGHT MENU -->
<!-- FILTERS -->
<div class="search-filters-css" style="display:none">
<!-- headerLarge was here -->
</div>
<!-- /FILTERS -->
<div style="clear:both"></div>
<!-- SEARCH FILTERS -->
<style>
.showSearch {
display: inline-block;
}
</style>
<div id="mapFilters" class="hideWhenPop" style="">
<div id="filterFieldsHolder" class="contentfull noprint" style="display:none; margin:0 auto; padding-top:0px; width:100%">
<!-- Displayed on scroll up -->
<div class="showMenuSmNav" style="float:right; display:none">
<!-- delete
<div class="showSearch local" style="display:none;float:left">
<img src="/localsite/img/icon/search.png" style="width:27px; opacity:0.5; margin:10px 20px 0 0">
</div>
-->
<div class="localX earthX" style="display:none">
<div class="showMenu" style="cursor:pointer;font-size:24px;color:#999;padding-top:9px;float:left">
<i class="material-icons show-on-load" style="font-size:35px; opacity:0.4;" data="apps"></i>
</div>
</div>
</div>
<div class="filterFields" style="min-height:54px; padding:2px 0 0px 40px;">
<div id='sidecolumn-closed' class='hideprint' style='float:left'><div class="earth" style="display:none"><div id='showSide' class='showSide' style='top:109px;'><img src='/localsite/img/icon/hamburger.png' style='width:30px;' class='hamburger-circle'></div></div></div>
<div style="overflow:visible">
<div id="logoholderbar" style="display:none;float:left;">
</div>
<div style="float:right;">
<div class="filterLabel">
<div class="filterLabelMain">
</div>
</div>
</div>
<div class="hideMobile localX" style="float:right;display:none;">
<ul class="filterUL" style="margin:18px 12px 0 10px;clear:both;min-width:120px;">
<li data-id="all"><a href="#">Earth</a></li>
<li data-id="country" geo="US"><a href="#">USA</a></li>
<!--
<li data-id="state" class="selected" style="white-space:nowrap"><a href="#">Entire State</a></li>
<li data-id="state" geo="US13" class="selected" style="white-space:nowrap"><a href="#">Georgia</a></li>
-->
<li data-id="city" class="local" style="display:none"><a href="#">Cities</a></li>
<li data-id="counties"><a href="#">Counties</a></li>
<li data-id="zip" class="local" style="display:none,white-space:nowrap"><a href="#">Zip Code</a></li>
<li data-id="latlon" class="hideFilter"><a href="#">Lat/Lon</a></li>
<li data-id="nearby" class="hideFilter"><a href="#">Nearby</a></li>
</ul>
</div>
<div style="float:left">
<div style="overflow:visible" class="filterField locationTab">
<div class="filterLabel">
<div class="filterLabelMain">
Where
</div>
</div>
<!--
https://www.maxon.net/en/buy
overflow:auto; causes vertical scroll to appear here:
-->
<div style="position:relative;">
<div class="filterClick" id="filterClickLocation" style="display:none">
<div class="select-menu-arrow-holder show-on-load" style="display:none">
<!-- We could place over all select menus
https://fabriceleven.com/design/clever-way-to-change-the-drop-down-selector-arrow-icon/ -->
<i id="showLocations" class="material-icons" style="font-size:24px;display:none"></i>
<i id="hideLocations" class="material-icons" style="font-size:24px;cursor:pointer;"></i>
</div>
<div class="filterClickText locationTabText">Locations</div><!-- Entire State -->
</div>
</div>
</div>
<div id="appSelectHolder" class="filterField layerclass">
<div id="catSearchHolder">
<div class="filterLabel">
<div class="filterLabelMain">
Show
</div>
</div>
<div class="filterClick showApps" style="position:relative">
<div class="select-menu-arrow-holder show-on-load" style="display:none">
<i class="material-icons" style="font-size:24px;cursor:pointer;"></i>
<i class="material-icons" style="font-size:24px;cursor:pointer;display:none;"></i>
</div>
<div style="width:100%">
<!-- Goods & Services -->
<div class="filterClickText" id="showAppsText" title="Local Topics">Local Topics</div>
</div>
</div>
</div>
</div>
</div>
<!-- inactive -->
<div style="display:none;" class="localX filterField layerclass mock-up suppliers exporter products">
<div id="catSearchHolder2">
<div class="filterLabel">
<div class="filterLabelMain">
Supply Categories<!--Goods & Services-->
</div>
</div>
<div id="catSearch" class="filterClick mobileWide textInput" placeholder="Categories" type="text" autocomplete="off" style="width: 200px; margin-top: 0px; position:relative; overflow:auto;">
<div class="select-menu-arrow-holder show-on-load" style="display:none">
<i class="material-icons" style="font-size:24px;cursor:pointer;"></i>
<i class="material-icons" style="font-size:24px;cursor:pointer;display:none;"></i>
</div>
<div style="width:100%">
<div class="filterClickText" id="catSearchText">Categories</div>
</div>
<!--
<select id="selectProduct" class="selectMenu" style="float:left">
<option value="1">HS Code(s)</option>
</select>
-->
<!--
onkeyup="return SearchCategories(event);"
readonly - prevents keyboard covering choices on mobile
-->
</div>
</div>
</div>
<!-- KEYWORD SEARCH -->
<div>
<div class="filterField keywordField">
<!-- Search Companies -->
<div class="filterLabel">
<div class="filterLabelMain">
Search
</div>
</div>
<!--
<div style="position:absolute; right:8px; top:10px; z-index:1">
<i id="showAdvancedXXX" class="material-icons show-on-load" style="font-size:24px;cursor:pointer"></i>
</div>
-->
<!-- speech input -->
<!-- was a button -->
<div class="si-wrapper" style="position:relative; float:left">
<div style="display:none; float:right; padding-left:7px" class="si-btn mock-up">
<span class="si-holder" style="font-size: 20px">🎙</span>
</div>
<div class="searchField" style="overflow:auto; margin-bottom:10px">
<div style="float:right; position:relative;">
<!-- basicSearch goSearch searchHeight -->
<div id="goSearch" class="detailbutton" href="#" style="float:left;min-height:32px;border:1px solid #ccc"><span style="font-size:11pt;line-height:13pt;padding-left:2px;">GO</span></div>
<!-- 🔍 showAll showAllResults searchHeight -->
<!--
<div id="clearButton" class="detailbutton" style="float:left;margin:0px 0px 0px 0px">Clear</div>
-->
</div>
<div style="overflow:auto; padding-right:10px; ">
<!-- maxlength="400" -->
<!--
onblurXX="SearchFormTextCheck(this, 0)"
onfocusXX="SearchFormTextCheck(this, 1)"
onkeypressX="return SearchEnter(event);"
-->
<input id="keywordsTB" autocomplete="off"
style="padding-right:27px; width:100%"
class="filterClick mobileWide textInput si-input"
type="text" value=""
onkeyup="return SearchEnter(event);"
placeholder="Search">
</div>
</div>
<div style="clear:both"></div>
<div class="keywordBubble">
<div id="keywordFields" class="fieldSelector filterBubbleHolder" style="position:relative; margin-top:5px">
<div class="uparrow uparrow-grey" style="left: 34px;"></div>
<div class="uparrow uparrow-white" style="left: 34px;">
</div>
<div class="filterBubble">
<div id="findWhat" style="min-width: 176px">
<!--
<div class="hideAdvanced" style="float:right;cursor:pointer">✕</div>
-->
<div style="display:none;float:left;margin-right:20px">
<input type="checkbox" name="findLocation" id="findLocation" value="findLocation" checked><label for="findLocation" class="filterCheckboxTitle">Search Listings</label><br>
<input type="checkbox" name="findNews" id="findNews" value="findNews" checked><label for="findNews" class="filterCheckboxTitle">Search Newsroom</label><br>
</div>
<div style="float:left;" id="selected_col_checkboxes"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END KEYWORD SEARCH -->
<!-- Down arrow -->
<div class="localX catchClick hideEmbed" style="position:relative;float:right;overflow:visible;display:none">
<div class="filterLabel">
<div class="filterLabelMain">
</div>
</div>
<div class="toggleListOptions pagebutton" style="margin-right:15px"><i class="material-icons show-on-load dots-vertical" style="font-weight:900; font-size: 32px; padding:0px; margin:0px"></i>
</div>
<div class="listOptions filterBubble">
<div class="hideEmbed" style="display:none">
<div class="reduceHeader menuItem" style="display:none"><i class="material-icons show-on-load" style="margin-top:-5px;"></i>Narrow Header</div>
<!-- Google Icons - search for "crop" -->
<div class="revealImage menuItem" style="display:none"><i class="material-icons" style="margin-top:-5px;"></i>Full Header Image</div>
<div class="hideInfo hideInfoLink menuItem"><i class="material-icons show-on-load" style="margin-top:-5px"></i>Hide Bar</div>
<div class="showInfo showInfoLink menuItem" style="display:none"><i class="material-icons show-on-load" style="margin-top:-10px"></i>Show Info</div>
</div>
<div class="showImage menuItem" style="display:none"><i class="material-icons">slideshow</i>Slideshow</div>
<div class="hideMobile">
<div class="local menuItem refreshMap" style="display:none; cursor: pointer">
<i class="material-icons" style="font-weight:900; margin-top:-5px"></i> Refresh Map
</div>
<div class="local menuItem hashTest" style="display:none; cursor: pointer">