-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_minorityMap.html
215 lines (153 loc) · 5.2 KB
/
index_minorityMap.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="utf-8" />
<meta content='' name='description' />
<meta content='' name='author' />
<title>Minority Population in Connecticut</title>
<!-- Styles -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/custom.css"/>
</head>
<body>
<div class='container'>
<div class='well'>
<div class='row'>
<div class= "col-xs-8 col-sm-6">
<div class="col-xs-8 col-sm-6">
<label class='checkbox inline'>
<input type='checkbox' id='kmlLayer' checked /> <!--removed class='hidden'; replaced type='radio' to 'checkbox' -NV -->
Minority Population
</label>
<img src = "http://magic.lib.uconn.edu/test/n/images/dotDens_legend1.png" align = 'middle'>
<label class='checkbox inline'>
<input type='checkbox' id='townLayer' checked /> <!--removed class='hidden'; replaced type='radio' to 'checkbox' -NV -->
Town Boundary
</label>
<img src = "http://magic.lib.uconn.edu/test/n/images/town_legend1.png" align = 'middle'>
</div>
<div class="col-xs-8 col-sm-6">
<label class='checkbox inline'>
<input type='checkbox' id='layer' checked /> <!--removed class='hidden'; replaced type='radio' to 'checkbox' -NV -->
Opportunity Index
</label>
<img src = "http://magic.lib.uconn.edu/test/n/images/oppIndex_legend.png" align = 'middle'>
</div>
</div>
</div>
</div>
</div>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 30px;
width: 100%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
function initialize() {
var ct = new google.maps.LatLng(41.613817,-72.723780);
var mapOptions = {
zoom: 9,
center: ct,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles: [
{
stylers: [
{ saturation: -100 }, // MODIFY Saturation and Lightness if needed
{ lightness: 40 } // Current values make thematic polygon shading stand out over base map
]
}
]
};
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
// KML
var kmlLayer = new google.maps.KmlLayer({
url: 'http://magic.lib.uconn.edu/test/n/kml/DotDens250.kmz',
preserveViewport: true });
/* var kmlTwnLabelLayer = new google.maps.KmlLayer({
url: 'http://magic.lib.uconn.edu/test/n/kml/town_pnt_label.kml',
preserveViewport: true });
*/
// Google Fusion Tables
var layer = new google.maps.FusionTablesLayer({
//map: map,
heatmap: { enabled: false },
query: {
select: "col2",
from: "1USNX8O7rNhgTRY6EvrXQsXRFR2b0m_E9nsC_EXDo",
where: ""
},
options: {
styleId: 2,
templateId: 2
}
});
var townLayer = new google.maps.FusionTablesLayer({
map: map,
heatmap: { enabled: false },
query: {
select: "col2",
from: "1rDBAEFQc4YCNGedjsntm6OLCI-5NzWSVVucVJgDN",
where: ""
},
options: {
styleId: 2,
templateId: 2
}
});
var inputkmlLayer = document.querySelector('input[id=kmlLayer]')
var inputlayer = document.querySelector('input[id=layer]')
var inputtownLayer = document.querySelector('input[id=townLayer]')
/*
*/
function check() {
if (inputkmlLayer.checked) {
kmlLayer.setMap(map);
} else {
kmlLayer.setMap(null);
}
if (inputlayer.checked) {
layer.setMap(map);
} else {
layer.setMap(null);
}
if (inputtownLayer.checked) {
townLayer.setMap(map);
//kmlTwnLabelLayer.setMap(map);
} else {
townLayer.setMap(null);
//kmlTwnLabelLayer.setMap(null);
}
}
inputkmlLayer.onchange = check;
inputlayer.onchange = check;
inputtownLayer.onchange = check;
check();
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.address.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false&libraries=places&v=3.14"></script>
<script type="text/javascript" src="js/jquery.geocomplete.min.js"></script>
<script type="text/javascript" src="js/maps_lib.js"></script>
<script type='text/javascript'>
//<![CDATA[
$(window).resize(function () {
var h = $(window).height(),
offsetTop = 105; // Calculate the top offset
$('#map_canvas').css('height', (h - offsetTop));
}).resize();
// $(':checkbox').click(function(){
// MapsLib.doSearch();
//});
//]]>
</script>
<div id="map-canvas"></div>
</body>
</html>