-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (140 loc) · 3.24 KB
/
index.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="http://maps.google.com/maps/api/js?sensor=true&libraries=places" type="text/javascript"></script>
<!--<script src="http://maps.googleapis.com/maps/api/js"></script>-->
<script src="libs/d3/d3.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="libs/slidereveal.js"></script>
<script src="src/googleinit.js" type="text/javascript"></script>
<style>
/*html, body {
height: 100%;
margin: 0;
padding: 0;
}*/
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
hr {
display: block;
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
border-style: inset;
border-width: 1px;
}
h1 {
text-align: center;
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
p {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
line-height: 10px;
text-indent: 40px;
}
.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;
}
#type-selector {
color: #fff;
background-color: #4d90fe;
padding: 5px 11px 0px 11px;
}
#type-selector label {
font-family: Roboto;
font-size: 13px;
font-weight: 300;
}
.bar rect {
fill: #ef8a62;
shape-rendering: crispEdges;
}
.bar text {
fill: #fff;
}
.axis path, .axis line {
fill: none;
stroke: #ffffff;
shape-rendering: crispEdges;
}
.line {
fill: none;
stroke: #ffff00;
stroke-width: 3px;
}
.slider{
background-color: gray;
color: white;
}
#trigger{
width: 90%;
padding: 10px;
margin: 5px 5%;
}
.tick text{
font-size: 12px;
}
.tick line{
opacity: 0.2;
}
</style>
</head>
<body>
<div id="slider" class="slider" style="height: 100%">
<!-- <div id="slider" style="height: 100%"> -->
<h1> <b id="zip"></b></h1>
<hr>
<script src="src/sideInfo.js" type="text/javascript"></script>
<!-- <iframe src="src/iframe.html"> </iframe>-->
<!-- <script src="src/linechart.js" type="text/javascript"></script>-->
</div>
<input id="pac-input" class="controls" type="text" placeholder="Click an arrow or search here.">
<!-- <h1> <font face="Cursive"> Housing Price of the Great Seattle Area<h1> -->
<!-- <div id="googleMap" style="height: 100%; margin: 0; padding: 0;"></div>
-->
<div id="map"></div>
</body>
</html>