-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Save Marker Example</title>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_API_KEY&libraries=&v=weekly"></script>
</head>
<body>
<button id="new-game" onclick = "newGame()">New Game</button>
<!--map div-->
<div class="map-container">
<div id="map"></div>
<button id="button" onclick = "calculate()">Choose Location</button>
<input id="distance" disabled></input>
</div>
<br>
<div class="street-view-container">
<div id="street-view"></div>
</div>
<button id="home" onclick="goToHome()">Go to Home</button>
<script type="text/javascript" src="map.js"></script>
</body>
</html>