-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoggle-maps.js
More file actions
246 lines (215 loc) · 7.54 KB
/
Copy pathtoggle-maps.js
File metadata and controls
246 lines (215 loc) · 7.54 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
jQuery(document).ready( function($) {
var tm = {
map: null,
mapContainer: 'toggle-map',
toggleContainer: 'toggles',
toggle: 'toggle',
openWindow: null,
visibleMarkers: [],
allMarkers: [],
host: 'http://' + window.location.hostname,
id: toggleMaps.id,
single: toggleMaps.single,
terms: toggleMaps.terms,
termNames: toggleMaps.termNames,
termSlugs: toggleMaps.termSlugs
}
if(toggleMaps.port)
tm.host += ':' + toggleMaps.port;
if(toggleMaps.path)
tm.host += '/' + toggleMaps.path;
initializeMap();
/*
*
* PROPERTY GETTERS
*
*/
// Get map properties
function getMapProps(mapJSON){
var zoom = parseInt(mapJSON['toggle_maps_zoom']);
if(!zoom) zoom = 14;
var mapProps = {
center:{
lat: parseFloat(mapJSON['toggle_maps_latitude']),
lng: parseFloat(mapJSON['toggle_maps_longitude'])
},
zoom: zoom,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
return mapProps;
}
// Get properties for a location marker
function getMarkerProps(locationJSON){
var markerProps = {
position: {
lat: parseFloat(locationJSON['toggle_maps_latitude']),
lng: parseFloat(locationJSON['toggle_maps_longitude'])
},
map: null,
title: locationJSON['title']['rendered']
}
return markerProps;
}
// Get properties for the info window
function getWindowProps(locationJSON){
var contentString = '<div class="toggle-maps info-window">'
var title = locationJSON['title']['rendered'];
var address = locationJSON['toggle_maps_address'];
var phone = locationJSON['toggle_maps_phone'];
var link = locationJSON['link'];
var website = locationJSON['toggle_maps_website_link'];
contentString = contentString + '<h1 class="marker-title">' + title + '</h1>';
if(address){
contentString = contentString + '<div class="marker-address"><label>Address:</label> ' + address + '</div>';
}
if(phone){
contentString = contentString + '<div class="marker-phone"><label>Phone:</label> ' + phone + '</div>';
}
if(website){
contentString = contentString + '<div class="marker-website"><label>Website:</label> <a class="website" href="' + website + '">' + title + ' Website</a>';
}
if(link){
contentString = contentString + '<div class="marker-more-info"><a href="' + link + '">More Info</a></div>';
}
contentString = contentString + '</div>';
// Return windo properties
return {content: contentString}
}
/*
*
* INITIALIZERS
*
*/
// Inititalize a single marker
function initializeMarker(locationJSON){
// Make the marker
var markerProps = getMarkerProps(locationJSON);
var marker = new google.maps.Marker(markerProps);
// Make the info window
var windowProps = getWindowProps(locationJSON);
var window = new google.maps.InfoWindow(windowProps);
marker.addListener('click', function() {
if(tm.openWindow)
tm.openWindow.close();
window.open(tm.map, marker);
tm.openWindow = window;
});
return marker;
}
// Initialize all markers for all categories
function initializeAllMarkers(){
for(var n = 0; n < tm.terms.length; n++){
initializeMarkers(tm.terms[n]['slug']);
}
}
// Initialize all markers from specified category
function initializeMarkers(term){
var locations = $.ajax({
url: tm.host + '/wp-json/wp/v2/toggle_maps_location?filter[posts_per_page]=2000&filter[toggle_maps_category]="' + term + '"',
type: 'GET',
dataType: 'json',
success: function (locationsJSON) {
tm.allMarkers[term] = [];
for(var n = 0; n < locationsJSON.length; n++){
tm.allMarkers[term].push(initializeMarker(locationsJSON[n]));
}
if(term == tm.terms[0]['slug']){
setMarkers(term);
}
},
error: function () {
console.log("Could not fetch JSON");
}
});
return locations;
}
// Create map
function makeMap(mapProps){
tm.map = new google.maps.Map(document.getElementById(tm.mapContainer), mapProps);
}
// Initialize the map
function initializeMap(){
if(tm.single){
// Initialize a single-element map
$.ajax({
url: tm.host + '/wp-json/wp/v2/toggle_maps_location/' + tm.id,
type: 'GET',
dataType: 'json',
success: function (locationJSON) {
makeMap(getMapProps(locationJSON));
setMarker(initializeMarker(locationJSON));
},
error: function () {
console.log("Could not fetch JSON");
}
});
}
else{
// Initialize a toggle map
$.ajax({
url: tm.host + '/wp-json/wp/v2/toggle_maps_map/' + tm.id,
type: 'GET',
dataType: 'json',
success: function (mapJSON) {
makeMap(getMapProps(mapJSON));
initializeAllMarkers();
if(tm.terms.length > 1)
addToggles();
},
error: function () {
console.log("Could not fetch JSON");
}
});
}
}
/*
*
* SETTERS
*
*/
// Place a single marker on the map
function setMarker(marker){
tm.visibleMarkers.push(marker);
tm.visibleMarkers[tm.visibleMarkers.length - 1].setMap(tm.map);
}
// Place all markers of a specified category on the map
function setMarkers(term){
for(var n = 0; n < tm.allMarkers[term].length; n++){
setMarker(tm.allMarkers[term][n]);
}
}
// Add toggle for a category
function addToggle(term){
var toggleButton = $('<input type="button" class="' + tm.toggle + ' ' + term + '" value="' + tm.termNames[term] +'"/>');
$('.' + tm.toggleContainer).append(toggleButton);
return $('.toggle.' + term);
}
// Add toggles for toggle-maps
function addToggles(){
var toggleGroup = $('#' + tm.mapContainer).append('<div class="' + tm.toggleContainer + '"></div>');
for(var n = 0; n < tm.terms.length; n++){
var toggle = addToggle(tm.terms[n]['slug']);
if(n == 0 && tm.terms.length > 1)
toggle.addClass('active');
$('.toggle.' + tm.terms[n]['slug']).click(function(){
$('.toggle.active').removeClass('active');
$(this).addClass('active');
toggleMarkers(tm.termSlugs[$(this).attr('value')]);
});
}
}
// Toggle category on or off
function toggleMarkers(term){
resetMarkers();
setMarkers(term);
}
// Clear all visible markers
function resetMarkers(){
if(tm.openWindow)
tm.openWindow.close();
for(var n = 0; n < tm.visibleMarkers.length; n++){
tm.visibleMarkers[n].setMap(null);
}
tm.visibleMarkers = [];
}
});