-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaypoint.js
More file actions
42 lines (41 loc) · 1.32 KB
/
waypoint.js
File metadata and controls
42 lines (41 loc) · 1.32 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
// "description": {
// info: "This file contains the pre-defined waypoint objects are all stored in a waypoints array with the format",
// name: "given name of the location",
// url: "predefined webpage for the location" http://[domain][webpage]?
// coord.latitude: "latitude of the cordinate",
// coord.longitude: "longitude of the coordinate",
// zoom: "the google map zoom level as some locations cannot be seen at certain distance"
var waypointsArr = [
{
name: "Loyola Tim Hortons",
url: "http://www.timhortons.com/ca/en/locations/get-directions.php?id=101519&utm_source=Google&utm_medium=Local&utm_term=NS&utm_content=Halifax&utm_campaign=Local_Search",
coords: {
lat: 44.6305464,
lng: -63.5808585
}
},
{
name: "St Mary's University Arena",
url: "http://www.smuhuskies.ca/sports/mice/index",
coords: {
lat: 44.631414,
lng: -63.578461
}
},
{
name: "Student Union Building",
url: "https://smusa.ca/",
coords: {
lat: 44.6321667,
lng: -63.5801015
}
},
{
name: "My house",
url: "http://smu.ca/",
coords: {
lat: 44.647917299999996,
lng: -63.5886686
}
}
];