-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
121 lines (104 loc) · 3.05 KB
/
map.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="semantic/dist/semantic.css">
<style type="text/css">
body {
background-color: #FFFFFF;
}
.ui.menu .item img.logo {
margin-right: 1.5em;
}
.main.container {
margin-top: 4em;
}
.ui.footer.segment {
padding: 5em 0em;
}
.inner-container{
height:100vh;
}
#map {
height: 100%;
width: 98%;
position: absolute !important;
}
.controls {
margin-top: 10px;
border: 1px solid transparent;
border-radius: 2px 0 0 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
height: 32px;
outline: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
#pac-input {
background-color: #fff;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
margin-left: 12px;
padding: 0 11px 0 13px;
text-overflow: ellipsis;
width: 300px;
}
#pac-input:focus {
border-color: #4d90fe;
}
.pac-container {
font-family: Roboto;
}
</style>
<title>The Atlas | Atlaschain</title>
</head>
<body onload="initMap()">
<div class="ui fixed menu">
<div class="ui container">
<a href="index.html" class="header item">
<img class="logo" src="assets/atlaschain-square.png">
Atlaschain
</a>
<a href="index.html" class="item">Home</a>
<a href="index.html" class="item">Start Now</a>
<a href="map.html" class="item">Interface</a>
<a href="admin.html" class="item">Administrator</a>
</div>
</div>
<div class="ui main container fluid">
<div class="ui grid inner-container">
<div class="sixteen wide column">
<div id="map"></div>
<input class="prompt controls" type="text" id="pac-input" placeholder="Search for a Place, Person or Document">
</div>
</div>
</div>
<div class="ui inverted vertical footer segment">
<div class="ui center aligned container">
<div class="ui stackable inverted divided grid">
<div class="three wide column">
<h4 class="ui inverted header">Group 1</h4>
<div class="ui inverted link list">
<a href="#" class="item">Link One</a>
<a href="#" class="item">Link Two</a>
<a href="#" class="item">Link Three</a>
<a href="#" class="item">Link Four</a>
</div>
</div>
<div class="seven wide column">
<h4 class="ui inverted header">Footer Header</h4>
<p>Extra space for a call to action inside the footer that could help re-engage users.</p>
</div>
</div>
</div>
</div>
</body>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="semantic/dist/semantic.min.js"></script>
<script src="assets/geojson.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyAGM3Y6Y1TH-g5nwFfZhZOgSgpwUvtA1YM&libraries=geometry"></script>
<script src="assets/map.js"></script>
</html>