-
Notifications
You must be signed in to change notification settings - Fork 49
/
full-example.html
47 lines (39 loc) · 1.09 KB
/
full-example.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Core mapsed styles -->
<link href="mapsed.css" rel="stylesheet">
<link href="examples/examples.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.mapsed-poi-message {
position: absolute;
bottom: 3em;
left: 0em;
width: 100%;
background-color: #ddd;
margin: 0;
padding: 0;
}
.mapsed-poi-message p {
margin: 0; padding: 0;
}
.snazzy-container {
/* just moves the SELECT off the bottom of the viewport */
margin-bottom: 2em;
}
</style>
</head>
<body>
<button id="show-full-window">show</button>
<!-- Dependencies -->
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=[YOUR-API-KEY]"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.js"></script>
<!-- Mapsed JavaScript -->
<script src="mapsed.js"></script>
<script src="mapsed.debug.js"></script>
<!-- Examples JavaScript -->
<script src="examples/mapsed-storage.js"></script>
<script src="examples/06-full-example.js"></script>
</body>
</html>