-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Earth View</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div style="display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh;">
<my-earth center="[114,0]" style="flex-grow: 1;"></my-earth>
</div>
<script src="https://d3js.org/d3.v5.js"></script>
<script src="https://unpkg.com/[email protected]/dist/topojson.min.js"></script>
<script src="https://unpkg.com/@webcomponents/[email protected]/webcomponents-bundle.js"></script>
<script type="module">
import { EarthWebComponent } from "./main.js";
window.addEventListener("WebComponentsReady", function(e) {
window.customElements.define("my-earth", EarthWebComponent);
});
</script>
</body>
</html>