forked from jesstelford/node-MarkerWithLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 674 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 674 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="bundle.js"></script>
<!-- Calls back to `window.setup` which our Browserify bundle created from
`npm run build` using the `standalone` option -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDgO0jb3Rq3lQJlChUhTDXthaz3ZUys2IQ&callback=setup" async defered></script>
</body>
</html>