-
Notifications
You must be signed in to change notification settings - Fork 0
/
webmap.html
42 lines (42 loc) · 1.27 KB
/
webmap.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/flying-t.svg" />
<meta
name="description"
content="This page is for testing out custom components as they're being developed."
/>
<meta
name="viewport"
content="initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Mileposts</title>
<script
src="https://js.arcgis.com/calcite-components/2.9.0/calcite.esm.js"
type="module"
></script>
<link
rel="stylesheet"
href="https://js.arcgis.com/calcite-components/2.9.0/calcite.css"
/>
<link
rel="stylesheet"
href="https://js.arcgis.com/4.30/esri/themes/light/main.css"
/>
<link rel="stylesheet" href="/src/webmap.css" />
</head>
<body class="calcite-mode-auto">
<calcite-shell>
<wsdot-header slot="header"></wsdot-header>
<calcite-shell-panel slot="panel-start" id="sidebar">
<calcite-panel heading="Content goes here">
<calcite-block></calcite-block>
</calcite-panel>
</calcite-shell-panel>
<div id="viewDiv"></div>
<wsdot-footer slot="footer"></wsdot-footer>
</calcite-shell>
<script type="module" src="/src/webmap-page.ts"></script>
</body>
</html>