-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
41 lines (34 loc) · 918 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>HERE XYZ Space Invader</title>
<link href="space-invader-144-294760.png" rel="icon" type="image/x-icon" />
<link rel="stylesheet" href="dist/index.css" />
<style>
html, body {
margin: 0;
border: 0;
font-family: 'Fira Sans', sans-serif;
font-size: 12px;
}
#map {
height: 100%;
width: 100%;
position: absolute;
}
.leaflet-popup-content {
margin: 5px;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="ui"></div>
<!-- Main tangram library -->
<script src="https://unpkg.com/tangram/dist/tangram.debug.js"></script>
<script src="dist/index.js"></script>
</body>
</html>