-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (16 loc) · 710 Bytes
/
index.html
File metadata and controls
18 lines (16 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<title>100DaysOfCode</title>
<meta name="viewport" charset="UTF-8" content="initial-scale=1.0, width=device-width" />
<!-- map core -->
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-core.js"></script>
<!-- map services -->
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-service.js"></script>
</head>
<body>
<!-- Container to hold map -->
<div id="mapContainer" style= "align-self: center; width: 100vw; height: 70vh; background-color: purple;"></div>
</body>
<script type="text/javascript" src="map.js"></script>
</html>