generated from EsriDevEvents/ds-2024-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<title>Demo</title>
</head>
<body>
<arcgis-map item-id="map-id-goes-here">
<arcgis-zoom position="bottom-left"></arcgis-zoom>
<arcgis-editor position="bottom-right"> </arcgis-editor>
<arcgis-placement position="top-left">
<calcite-action-bar id="edit-actions">
<calcite-action
id="start-edit"
icon="pencil"
text="Start editing"
></calcite-action>
<calcite-action
disabled
id="stop-edit"
icon="save"
text="Stop editing (save)"
></calcite-action>
<calcite-action
disabled
id="undo-edit"
icon="undo"
text="Undo edit"
></calcite-action>
<calcite-action
disabled
id="redo-edit"
icon="redo"
text="Redo edit"
></calcite-action>
</calcite-action-bar>
</arcgis-placement>
</arcgis-map>
<script type="module" src="/src/main.ts"></script>
</body>
</html>