-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
140 lines (138 loc) · 5.29 KB
/
test.php
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
<!DOCTYPE html>
<html>
<head>
<title>Meeting Locations - Chronic Pain Support Group, Arlington, MA</title>
<?php include './include/head.php' ?>
</head>
<body>
<?php include './include/header.php' ?>
<main class="main">
<div class="main__nav">
<?php include './include/main-nav.php' ?>
</div>
<section class="main__content" id="main-content">
<div class="main__title"><h1>Meeting Locations</h1></div>
<div class="main__text rich-text">
<p>Our Meetings are usually held at the Robbins Library in Arlington, Ma. with the occasional meeting at the Arlington Senior Center or Sunrise Assisted Living.</p>
</div>
<div class="locations">
<div class="locations__address">
<a href="http://www.robbinslibrary.org" target="_blank">Robbins Library</a><br />
700 Mass Ave<br />
Arlington, MA 02476
</div>
<!-- div class="locations__address">
<a href="http://www.robbinslibrary.org/about/fox-branch" target="_blank">Fox Library</a><br />
175 Mass Ave<br />
Arlington, MA 02474
</div -->
<!-- div class="locations__address">
<a href="http://arlingtonseniorsassociation.org" target="_blank">Arlington Senior Center</a><br />
27 Maple Street<br />
Arlington, MA 02476
</div -->
<div class="locations__address">
<a href="http://www.sunriseseniorliving.com" target="_blank">Sunrise Assisted Living</a><br />
1395 Mass Ave<br />
Arlington, MA 02476
</div>
<div class="locations__address">
<a href="http://www.arlingtonma.gov/departments/police\" target=\"_blank\">Arlington Police Building</a><br />
112 Mystic Street<br />
Arlington, MA 02474
</div>
</div>
<!-- the map layer is dynamically loaded with a google map - leave blank -->
<div class="google-map js-google-map"></div>
<script>
var googleMapData = googleMapData || [];
googleMapData.push({
map: {
center: {
lat: 42.417196,
lng: -71.168398
},
zoom: 14
},
markers: [
{
position: {
lat: 42.416169,
lng: -71.155983
},
label: "R", // single character only
infoWindow: {
name: "Robbins Library", // raw was needed to prevent rendering ascii characters
link: "http://www.robbinslibrary.org",
address: "700 Mass Ave<br />Arlington, MA 02476"
}
},
// {
// position: {
// lat: 42.405519,
// lng: -71.141689
// },
// label: "F", // single character only
// infoWindow: {
// name: "Fox Library", // raw was needed to prevent rendering ascii characters
// link: "http://www.robbinslibrary.org/about/fox-branch",
// address: "175 Mass Ave<br />East Arlington, MA 02474"
// }
// },
// {
// position: {
// lat: 42.4154392,
// lng: -71.1525275
// },
// label: "J", // single character only
// infoWindow: {
// name: "Jefferson Cutter House", // raw was needed to prevent rendering ascii characters
// link: "http://www.town.arlington.ma.us/public_documents/ArlingtonMA_Rental/JeffersonCutterHouse/index",
// address: "Corner of Mystic St. and Mass Ave<br />Arlington, MA 02476"
// }
// },
{
position: {
lat: 42.424595,
lng: -71.184024
},
label: "S", // single character only
infoWindow: {
name: "Sunrise Assisted Living", // raw was needed to prevent rendering ascii characters
link: "http://www.sunriseseniorliving.com",
address: "1395 Mass Ave<br />Arlington, MA 02476"
}
},
// {
// position: {
// lat: 42.415132,
// lng: -71.156809
// },
// label: "A", // single character only
// infoWindow: {
// name: "Arlington Senior Center",
// link: "http://arlingtonseniorsassociation.org",
// address: "27 Maple Street<br />Arlington, MA 02476"
// }
// },
{
position: {
lat: 42.419428,
lng: -71.152037
},
label: "P", // single character only
infoWindow: {
name: "Arlington Police Building",
link: "http://www.arlingtonma.gov/departments/police",
address: "112 Mystic Street<br />Arlington, MA 02474"
}
}
]
});
</script>
</section>
</main>
<?php include './include/foot.php' ?>
<script src="/include/google-map.js"></script>
</body>
</html>