-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNCI_view1.html
51 lines (44 loc) · 1.31 KB
/
NCI_view1.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 100% }
</style>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(47.809,-122.213);
var myOptions = {
zoom:14,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var layer3 = new google.maps.FusionTablesLayer({
query: {
select: 'geometry',
from: '1341939' //North Creek Interceptor Proposed Alignment
}
});
layer3.setMap(map);
var layer2 = new google.maps.FusionTablesLayer({
query: {
select: 'geometry',
from: '1341936' //Proposed Manholes
}
});
layer2.setMap(map);
}
</script>
</head>
</body>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%" ></div>
</html>