-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
185 lines (142 loc) · 5.64 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
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
<!DOCTYPE html>
<meta charset="utf-8">
<!-- Load Leaflet -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin="">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og==" crossorigin=""></script>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="nhoodxcensus.geojson" type="text/javascript"></script>
<script src="neighborhood.geojson" type="text/javascript"></script>
<script src="nhood_htc.geojson" type="text/javascript"></script>
<script src="blockgroup.geoJson" type="text/javascript"></script>
<!-- Create an element where the map will take place -->
<div id="mapid"></div>
<style>
#mapid {
height: 400px;
}
html, body {
height: 100%;
margin: 0;
}
#map {
width: 600px;
height: 400px;
}
</style>
<script>
var map = L
.map('mapid')
.setView([42.995, -88.2445], 10.2);
map.createPane('labels');
map.getPane('labels').style.zIndex = 650;
map.getPane('labels').style.pointerEvents = 'none';
// Tile type: openstreetmap normal
var openstreetmap = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="https://www.openstreetmap.org/">OpenStreetMap</a>',
maxZoom: 20
})
//Base layers definition and addition
var allOptions = {
"Open streetmap": openstreetmap,
// "Open streetmap: Hot": openstreetmapHot,
// "Open streetmap: Osm": openstreetmapOsm
};
// Initialize with openstreetmap
openstreetmap.addTo(map);
// Add baseLayers to map as control layers
L.control.layers(allOptions).addTo(map);
function getColor(d) {
return d > 73 ? '#FED976' :
d > 70 ? '#E31A1C' :
d > 65 ? '#BD0026' :
d > 60 ? '#800026' :
'#FFEDA0';
};
function style(feature) {
return {
fillColor: getColor(feature.properties.MRR2010),
weight: 1,
opacity: 1,
color: 'black',
dashArray: '3',
fillOpacity: 0.5,
zIndex: 10
};
}
// L.geoJson(wisconsin_census, {}).addTo(map);
function nstyle(feature) {
return {
fillColor: 'white',
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.0,
zIndex: 1
};
}
function pstyle(feature) {
return {
fillColor: 'white',
weight: 2,
opacity: 0,
color: 'white',
dashArray: '0',
fillOpacity: 0.0,
zIndex: 100
};
}
function gstyle(feature) {
return {
fillColor: 'white',
weight: 2,
opacity: 1,
color: 'green',
dashArray: '0',
fillOpacity: 0.0,
zIndex: 100
};
}
var geojson = L.geoJson(wisconsin_census, {style: style, onEachFeature: function (feature, layer){
console.log(feature.properties);
}}).addTo(map);
// console.log(geojson.getPanes)
var geojsonLayer = L.geoJson(nhood_htc, {style:nstyle, onEachFeature: function (feature, layer) {
console.log(feature.properties);
layer.bindPopup('<p>Hispanic Population: ' + feature.properties.Hispanic_prop_neighborhood + '</p>' +
'<p>Neighborhood: ' + feature.properties.NEIGHBORHD + '</p>' +
'<p>Mail Return Rate: ' + feature.properties.MRR2010_prop_neighborhood+ '%' + '</p>' +
'<p>Total Under 5: ' + feature.properties.TotUnder5_prop_neighborhood + '</p>' +
'<p>Ltd Eng Prof Houses: ' + feature.properties.LEPHHs_prop_neighborhood + '</p>' +
'<p>No Internet: ' + feature.properties.NoInternet_prop_neighborhood + '</p>'
);
layer.bringToFront();
}
});
var controlLayers = L.control.layers().addTo(map)
// Add the geojson layer to the layercontrol
controlLayers.addOverlay(geojsonLayer, 'Neighobhrood Boundaries');
var blockgroupjsonLayer = L.geoJson(blockgroup, { style: gstyle });
var popupLayer = L.geoJson(wisconsin_census,{style:pstyle, onEachFeature: function (feature, layer){
// console.log(feature.properties);
layer.bindPopup('<p>Tract: '+feature.properties.TRACTCE+'</p>'+
'<p>Hispanic Population: '+feature.properties.Hispanic+'</p>'+
'<p>Neighborhood: '+feature.properties.NEIGHBORHD+'</p>' +
'<p>Mail Return Rate: ' + feature.properties.MRR2010 + '%' + '</p>'+
'<p>Total Under 5: ' + feature.properties.TotUnder5 + '</p>'+
'<p>Ltd Eng Prof Houses: ' + feature.properties.LEPHHs + '</p>' +
'<p>No Internet: ' + feature.properties.NoInternet + '</p>'
);
layer.bringToFront();
}})
controlLayers.addOverlay(popupLayer,'Census Info by Tract')
controlLayers.addOverlay(blockgroupjsonLayer, 'Block Boundaries')
// L.geoJson(neighborhood, {style: nstyle}, ).addTo(geojson);
// geojson.eachLayer(fnction (layer) {
// console.log(layer, 'helllo');
// // layer.bindPopup(layer.properties.NAME);
// });
// map.fitBounds(geojson.getBounds());
</script>