-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>2024 Esri Developer Summit - Maps SDK with Charts Components</title>
<link id="jsapi-mode-light" rel="stylesheet" href="https://js.arcgis.com/4.29/@arcgis/core/assets/esri/themes/light/main.css" />
<script>
var esriConfig = {
portalUrl: "https://www.arcgis.com",
};
</script>
</head>
<body>
<div id="root">
<calcite-shell id="shell" content-behind>
<!-- map container -->
<calcite-panel>
<arcgis-map id="mapEl" item-id="004fcc67ef7f45a1816714e379bc279b">
<arcgis-home position="top-right"></arcgis-home>
</arcgis-map>
</calcite-panel>
<!-- Navigation -->
<calcite-shell-panel slot="panel-start" display-mode="float">
<calcite-navigation class="calcite-mode-dark">
<calcite-navigation-logo id="nav-logo" slot="logo" description="Esri Developer Summit 2024"></calcite-navigation-logo>
<calcite-navigation slot="navigation-secondary" class="calcite-mode-light">
<div slot="content-end" class="content-end-container">
<calcite-chip-group label="Map layers" selection-mode="multiple" id="chip-group">
<calcite-chip value="1" selected>Aquifer</calcite-chip>
<calcite-chip value="2" selected>Wells</calcite-chip>
</calcite-chip-group>
</div>
</calcite-navigation>
</calcite-navigation>
<!-- Charts container -->
<calcite-panel>
<div data-panel-id="charts">
<calcite-block class="chart-block" collapsible heading="Distribution of Water Measurement Data since 1974">
<!-- First box plot element -->
<arcgis-charts-box-plot id="box-plot-1"></arcgis-charts-box-plot>
<calcite-icon scale="s" slot="icon" icon="box-chart"></calcite-icon>
</calcite-block>
<calcite-block class="chart-block" collapsible heading="Distribution of Water Measurement Data in 2024">
<!-- Second box plot element -->
<arcgis-charts-box-plot id="box-plot-2"></arcgis-charts-box-plot>
<calcite-icon scale="s" slot="icon" icon="box-chart"></calcite-icon>
</calcite-block>
<calcite-block class="chart-block" collapsible heading="Depth of Water (1974 vs 2024) sized by Saturated Thickness">
<!-- Scatter plot element -->
<arcgis-charts-scatter-plot id="scatter-plot"></arcgis-charts-scatter-plot>
<calcite-icon scale="s" slot="icon" icon="graph-scatter-plot"></calcite-icon>
</calcite-block>
</div>
</calcite-panel>
</calcite-shell-panel>
</calcite-shell>
</div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>