-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 801 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 801 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
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Async Maps</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/demo.css">
</head>
<body>
<address id="address">
<strong>Google Inc.</strong><br>
1600 Amphitheatre Parkway<br>
Mountain View, CA 94043<br>
<a href="http://goo.gl/maps/BvH6g">Get Directions</a>
</address>
<div id="map-canvas" class="map-canvas"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/maps.js"></script>
<script type="text/javascript">
$(window).load(function() {
asyncMaps.maps.init({
address: '#address',
lat: 37.423156,
lng: -122.084917
});
});
</script>
</body>
</html>