-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDentiCents2.html
145 lines (133 loc) · 4.17 KB
/
DentiCents2.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
<!doctype html>
<html>
<head>
<title>DentiCents</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
#top-bar {
width:100%;
height:46px;
background-color:#77aaff;
margin:0;
}
body {
font-family: Trebuchet MS, Helmet, Freesans, sans-serif;
margin:0;
line-height:16px;
}
.greybox {
border-radius: 15px;
background-color:#D3D3D3;
width:460px;
height:200px;
padding-left:20px;
padding-top:20px;
top:50px;
position: relative;
left:18px;
border: 1px solid #77aaff;
box-shadow: -1px 1px #77aaff,
-2px 2px #77aaff,
-3px 3px #77aaff,
-4px 4px #77aaff,
-5px 5px #77aaff;
}
#title-bar {
background-color:#990000;
width:100%;
height:110px;
}
</style>
</head>
<body>
<div id="container">
<div id="top-bar">
<div class="fixed-width">
<div id="map" style="width:760px;height:600px;position: absolute;
top: 50px;
right: 0">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<div id="map-canvas" style="height: 100%; width: 100%"></div>
<script type="text/javascript">
var map;
function show_map() {
map = new google.maps.Map(document.getElementById("map-canvas"), {
zoom: 10,
center: new google.maps.LatLng(42.9820495097, -71.4733855212)
});
new google.maps.Marker({
position: new google.maps.LatLng(42.80198725, -71.5382139368),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(43.00669835, -71.4635276485),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(43.0040756441, -71.4624521206),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(43.07557255, -71.4682280836),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(43.0061235812, -71.4660555506),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(43.00633605, -71.462327308),
map: map
});
new google.maps.Marker({
position: new google.maps.LatLng(42.9735531429, -71.452894),
map: map
});
}
google.maps.event.addDomListener(window, 'load', show_map);
</script>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Advanced Family Dentistry","Address":"613 Amherst St, Nashua, NH 03063","Adult":103,"Child":82,"Fluoride":42,"White":263,"Periodic":58}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Webster Dental Association","Address":"40 Webster St, Manchester, NH 03104","Adult":135}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Chestnut Family Dental","Address":"745 Chestnut St, Manchester, NH 03104","Adult":116}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Marina U Becker DMD PC","Address":"60 Roger Street, Manchester, NH 03103","Adult":102}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Amazing Smiles Family Dental","Address":"311 W River Rd, Hooksett, NH 03106","Adult":111}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>
<br>
<div class="greybox">
<p class="large"><script>
var obj = JSON.parse('{"Dentist":"Manchester Dental plc","Address":"26 W Webster St, Manchester, NH 03104","Adult":102}');
document.write("Facility: " + obj.Dentist + "<br> Address: " + obj.Address + "<br>Adult Cleaning: <b>$" + obj.Adult+"</b>");
</script></p>
</div>