-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmilestone_04.html
More file actions
75 lines (73 loc) · 1.98 KB
/
milestone_04.html
File metadata and controls
75 lines (73 loc) · 1.98 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Geography 485L - Milestone 4</title>
<style type="text/css">
html { height: 100% }
body { height: 100%;
color: #FFFFFF;
background: #737373;
margin-left: 5%;
margin-right: 5%;
font-family: Helvetica, sans-serif;
text-align: center}
#map_canvas { width: 90%;
height:80%;
margin-left: auto;
margin-right: auto }
</style>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var ReservationWaterTower = new google.maps.LatLng(35.244414,-106.567711)
var myOptions = {
zoom: 11,
center: ReservationWaterTower,
mapTypeId: google.maps.MapTypeId.ROAD,
styles:[
{
"featureType": "road.arterial",
"elementType": "geometry.stroke",
"stylers": [
{ "visibility": "on" },
{ "color": "#808080" },
{ "weight": 2 }
]
},{
"featureType": "poi.school",
"stylers": [
{ "visibility": "on" },
{ "hue": "#ff0000" },
{ "weight": 8 },
{ "saturation": 100 }
]
},{
"featureType": "road.highway.controlled_access",
"elementType": "geometry.fill",
"stylers": [
{ "visibility": "on" },
{ "weight": 4 }
]
},{
}
]
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); }
</script>
</head>
<body onload="initialize()">
<p>
<br>
Lawrence Alderete<br>
12 February 2014
</p>
<h1>Milestone 4</h1>
<div id="map_canvas"></div>
</body>
<br>
<br>
<br>
</html>