forked from udacity/ud864
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04_Hello_Map_Quiz.html
More file actions
27 lines (26 loc) · 848 Bytes
/
Copy path04_Hello_Map_Quiz.html
File metadata and controls
27 lines (26 loc) · 848 Bytes
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
<!-- This is the corresponding "starter code" for 04_Hello Map in Udacity and Google's Maps
API Course, Lesson 1 -->
<html>
<head>
<!-- styles put here, but you can include a CSS file and reference it instead! -->
<style type="text/css">
html, body { height: 100%; margin: 0; padding: 0; }
#map { height: 100%; }
</style>
</head>
<body>
<!-- TODO 1: Create a place to put the map in the HTML-->
<div></div>
<script>
// TODO: Create a map variable
// TODO: Complete the following function to initialize the map
function initMap() {
// TODO: use a constructor to create a new map JS object. You can use the coordinates
// we used, 40.7413549, -73.99802439999996 or your own!
}
</script>
<!--TODO: Load the JS API ASYNCHRONOUSLY below.-->
<script>
</script>
</body>
</html>