-
Notifications
You must be signed in to change notification settings - Fork 65
/
index.html
23 lines (22 loc) · 1.09 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
<!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>
<!-- source for map ui -->
<script type="text/javascript" src="https://js.api.here.com/v3/3.1/mapsjs-ui.js"></script>
<!-- style sheet for map UI -->
<link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.1/mapsjs-ui.css"/>
</head>
<body>
<h1 style="text-align: center;">100 Days of Code with HERE</h1>
<!-- Container to hold map -->
<div id="mapContainer" style= "align-self: center; width: 100vw; height: 70vh; background-color: #605094;"></div>
</body>
<script type="text/javascript" src="map.js"></script>
<script type="text/javascript" src="geocoder.js"></script>
</html>