-
Notifications
You must be signed in to change notification settings - Fork 2
/
indexBlitz.html
175 lines (159 loc) · 10.4 KB
/
indexBlitz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Galiano BioBlitz 2023 Outcomes: vascular plants</title>
<link rel="stylesheet" href="node_modules/infusion/src/lib/jquery/ui/css/default-theme/core.css" />
<link rel="stylesheet" href="node_modules/infusion/src/lib/jquery/ui/css/default-theme/tooltip.css" />
<link rel="stylesheet" href="node_modules/infusion/src/lib/jquery/ui/css/default-theme/theme.css" />
<link rel="stylesheet" href="node_modules/jquery-ui/themes/base/tabs.css" />
<link rel="stylesheet" type="text/css" href="node_modules/infusion/src/framework/core/css/fluid.css" />
<link rel="stylesheet" type="text/css" href="node_modules/accessible-autocomplete/dist/accessible-autocomplete.min.css" />
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/2.0.46/css/materialdesignicons.min.css">
<!-- Refers to some fonts so just use the CDN -
<link rel="stylesheet" href="node_modules/@mdi/font/css/materialdesignicons.min.css"> -->
<link rel="stylesheet" href="node_modules/pretty-checkbox/dist/pretty-checkbox.min.css">
<script src="node_modules/infusion/src/lib/jquery/core/js/jquery.js"></script>
<script src="node_modules/infusion/src/lib/jquery/ui/js/version.js"></script>
<script src="node_modules/infusion/src/lib/jquery/ui/js/keycode.js"></script>
<script src="node_modules/infusion/src/lib/jquery/ui/js/safe-active-element.js"></script>
<script src="node_modules/jquery-ui/ui/widget.js"></script>
<script src="node_modules/jquery-ui/ui/unique-id.js"></script>
<script src="node_modules/jquery-ui/ui/position.js"></script>
<script src="node_modules/jquery-ui/ui/widgets/tabs.js"></script>
<script src="node_modules/jquery-ui/ui/widgets/tooltip.js"></script>
<script src="node_modules/infusion/src/framework/core/js/jquery.keyboard-a11y.js"></script>
<script src="node_modules/infusion/src/framework/core/js/Fluid.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidPromises.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidDebugging.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidDocument.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidIoC.js"></script>
<script src="node_modules/infusion/src/framework/core/js/DataBinding.js"></script>
<script src="node_modules/infusion/src/framework/core/js/ModelTransformation.js"></script>
<script src="node_modules/infusion/src/framework/core/js/ModelTransformationTransforms.js"></script>
<script src="node_modules/infusion/src/framework/enhancement/js/ContextAwareness.js"></script>
<script src="node_modules/infusion/src/framework/enhancement/js/ProgressiveEnhancement.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidView.js"></script>
<script src="node_modules/infusion/src/framework/core/js/FluidView-browser.js"></script>
<script src="node_modules/infusion/src/framework/core/js/NewViewSupport.js"></script>
<script src="node_modules/infusion/src/framework/core/js/DataSource.js"></script>
<script src="node_modules/infusion/src/framework/core/js/ResourceLoader.js"></script>
<script src="node_modules/infusion/src/framework/core/js/ResourceLoader-browser.js"></script>
<script src="node_modules/infusion/src/framework/renderer/js/fluidParser.js"></script>
<script src="node_modules/infusion/src/components/tooltip/js/Tooltip.js"></script>
<script src="node_modules/accessible-autocomplete/dist/accessible-autocomplete.min.js"></script>
<script src="node_modules/maplibre-gl/dist/maplibre-gl-dev.js"></script>
<script src="node_modules/@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw-unminified.js"></script>
<script src="node_modules/d3/dist/d3.js"></script>
<script src="src/lib/signals-core.min.js"></script>
<script src="src/lib/point-in-polygon.js"></script>
<script src="src/geom/geoJSON.js"></script>
<script src="https://unpkg.com/[email protected]/dist/pako_inflate.min.js"></script>
<script src="https://unpkg.com/[email protected]/papaparse.min.js"></script>
<link rel="stylesheet" type="text/css" href="src/client/css/imerss-core.css"/>
<link rel="stylesheet" type="text/css" href="src/client/css/maplibre-gl.css"/>
<link rel="stylesheet" type="text/css" href="src/client/css/mapbox-gl-draw.css"/>
<link rel="stylesheet" type="text/css" href="src/client/css/imerss-blitz.css"/>
<script src="src/utils/utils.js"></script>
<script src="src/client/js/colour.js"></script>
<script src="src/client/js/renderSVG.js"></script>
<script src="src/client/js/new/fluidNew.js"></script>
<script src="src/client/js/new/imerss-new.js"></script>
<script src="src/client/js/new/polygon-draw.js"></script>
<script src="src/client/js/new/filters.js"></script>
<script src="src/client/js/autocomplete.js"></script>
<script src="src/client/js/tabs.js"></script>
<script src="src/client/js/new/newChecklist.js"></script>
<script src="src/client/js/new/imerss-viz.js"></script>
<script src="src/client/js/new/imerss-blitz.js"></script>
<svg id="inline-svg">
<defs>
<symbol id="filter-reset" viewBox="0 0 32 32">
<path d="M22.5,9A7.4522,7.4522,0,0,0,16,12.792V8H14v8h8V14H17.6167A5.4941,5.4941,0,1,1,22.5,22H22v2h.5a7.5,7.5,0,0,0,0-15Z"/>
<path d="M26,6H4V9.171l7.4142,7.4143L12,17.171V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.5858,10.5853A2,2,0,0,1,2,9.171V6A2,2,0,0,1,4,4H26Z"/>
</symbol>
<symbol id="copy-clipboard" viewBox="0 0 32 32">
<path d="M0 6.75C0 5.784.784 5 1.75 5h1.5a.75.75 0 0 1 0 1.5h-1.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-1.5a.75.75 0 0 1 1.5 0v1.5A1.75 1.75 0 0 1 9.25 16h-7.5A1.75 1.75 0 0 1 0 14.25Z"></path><path d="M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"></path>
</symbol>
<symbol id="copy-check" viewBox="0 0 32 32">
<path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path>
</symbol>
</defs>
</svg>
</head>
<body>
<div class="imerss-container">
<div class="imerss-blitz-left">
<h2>Galiano BioBlitz 2023 Outcomes: vascular plants</h2>
<div class="imerss-main-tabs imerss-tabs ui-tabs ui-widget ui-widget-content">
<ul class="ui-tabs-nav" role="tablist">
<li class="ui-tabs-tab ui-tab ui-state-default ui-tabs-active">
<a class="ui-tabs-anchor" href="#fli-tab-map">Map</a>
</li>
<li class="ui-tabs-tab ui-tab ui-state-default">
<a class="ui-tabs-anchor" href="#fli-tab-checklist">Checklist</a>
</li>
<li class="ui-tabs-tab ui-tab ui-state-default">
<a class="ui-tabs-anchor" href="#fli-tab-grid">Grid</a>
</li>
<li class="ui-tabs-tab ui-tab ui-state-default">
<a class="ui-tabs-anchor" href="#fli-tab-wol">Web of Life</a>
</li>
</ul>
<div id="fli-tab-map" class="imerss-tab-panel">
<div class="imerss-map-holder imerss-nodismiss-map">
<div class="imerss-map">
</div>
</div>
</div>
<div id="fli-tab-checklist" class="imerss-tab-panel">
<div class="imerss-main-checklist imerss-checklist-holder">
<div class="imerss-panel-label"><span>Species</span><span class="imerss-copy-checklist"><svg width="32" height="32" >
<use href="#copy-clipboard" />
</svg></span>
</div>
<div class="imerss-checklist">
</div>
</div>
</div>
<div id="fli-tab-grid" class="imerss-tab-panel">
</div>
<div id="fli-tab-wol" class="imerss-tab-panel">
</div>
<div class="imerss-blitz-records">
</div>
</div>
</div>
<div class="imerss-blitz-right">
<div class="imerss-filter-panel">
<div class="imerss-filters imerss-main-filters">
</div>
<div class="imerss-filter-controls">
<svg width="24" height="24" class="imerss-reset-filter">
<use href="#filter-reset" />
</svg>
<div>Reset filters</div>
</div>
<div class="imerss-record-reporter">
</div>
</div>
<div class="imerss-blitz-content">
</div>
<div class="imerss-blitz-widgets">
<div class="imerss-taxonDisplay">
</div>
</div>
</div>
</div>
<script>
hortis.blitzVizLoader(".imerss-container", {
gradeNames: "",
obsFile: "data/Galiano 2023 BioBlitz/Galiano_Island_vascular_plant_records_consolidated-prepared.csv",
taxaFile: "data/Galiano 2023 BioBlitz/Galiano_Island_vascular_plant_records_consolidated-prepared-taxa.csv",
mapGrades: ["hortis.vizLibreMap"],
resourceBase: "src/client"
});
</script>
</body>
</html>