-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
336 lines (295 loc) · 8.48 KB
/
main.js
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// Define some global variables
pickingLocation = false;
defaultMapZoom = 13;
wayLayers = [];
profile = 'walking';
// Semantic UI initialization
$('.ui.accordion').accordion();
// Provide your access token
L.mapbox.accessToken = 'pk.eyJ1IjoibXNwaWRlcnYiLCJhIjoiY2l0d3A5YWMzMDAydzJzbjJybXF0d3I5ciJ9.bXIJdC85ltLCt_zRGQky8w';
// Get button elements
var btn = {
toggleUserLocation: $('#btn-toggle-user-location'),
loadUserLocation: $('#btn-load-user-location'),
pickUserLocation: $('#btn-pick-user-location'),
centerMap: $('#btn-center-map'),
deactiveParts: $('#btn-deactive-parts'),
activeParts: $('#btn-active-parts'),
};
// Create a map in the div #map
var map = L.mapbox.map('map');
// Set map style
L.mapbox.styleLayer('mapbox://styles/mspiderv/ciw12ppxw00c92klkuydr9u3d').addTo(map);
// Helper functions
function setMapCenter(latitude, longitude) {
map.setView([latitude, longitude], defaultMapZoom);
}
function add(geojson) {
var layer = L.geoJson(geojson, {
style: L.mapbox.simplestyle.style
}).addTo(map);
return layer;
}
function addFeature(geojson) {
var layer = L.mapbox.featureLayer(geojson).addTo(map);
/*layer.on('mouseover', function(e) {
e.layer.openPopup();
});
layer.on('mouseout', function(e) {
e.layer.closePopup();
});*/
return layer;
}
// http://stackoverflow.com/questions/1484506/random-color-generator-in-javascript
function getRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (var i = 0; i < 6; i++ ) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
// Set view to Bratislava
setMapCenter(48.14349658232668, 17.11167812347412);
// Global variable holding user GeoLocation
userGeoLocation = {
layer: null,
geoJson: {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [null, null] // This will be resolved automatically
},
"properties":{
"marker-color": "#e74c3c",
}
},
loadFromGeoLocation: function() {
if ("geolocation" in navigator) {
navigator.geolocation.getCurrentPosition(function(position) {
userGeoLocation.set(position.coords.latitude, position.coords.longitude);
userGeoLocation.centerMap();
});
} else {
alert("ERROR: GeoLocation IS NOT available");
}
},
initialize: function() {
this.layer = L.mapbox.featureLayer();
},
set: function(latitude, longitude) {
this.geoJson.geometry.coordinates = [longitude, latitude];
this.layer.setGeoJSON(this.geoJson);
btn.toggleUserLocation.addClass('active');
findRouteHandler();
},
getAsArray: function() {
return this.geoJson.geometry.coordinates;
},
show: function() {
this.layer = L.mapbox.featureLayer().addTo(map);
this.layer.setGeoJSON(this.geoJson);
},
hide: function() {
this.layer.clearLayers();
},
centerMap: function() {
setMapCenter(
userGeoLocation.geoJson.geometry.coordinates[1],
userGeoLocation.geoJson.geometry.coordinates[0]);
}
};
userGeoLocation.initialize();
// Button handlers
btn.toggleUserLocation.on('click', function() {
if (btn.toggleUserLocation.hasClass('active')) {
userGeoLocation.hide();
btn.toggleUserLocation.text(btn.toggleUserLocation.data('show'));
} else {
userGeoLocation.show();
btn.toggleUserLocation.text(btn.toggleUserLocation.data('hide'));
}
btn.toggleUserLocation.toggleClass('active');
});
btn.loadUserLocation.on('click', userGeoLocation.loadFromGeoLocation);
btn.pickUserLocation.on('click', function() {
pickingLocation = true;
btn.pickUserLocation.addClass('positive');
});
btn.centerMap.on('click', userGeoLocation.centerMap);
// Map clicking functionality
map.on('click', function(ev) {
if (pickingLocation) {
pickingLocation = false;
btn.pickUserLocation.removeClass('positive');
userGeoLocation.set(ev.latlng.lat, ev.latlng.lng);
}
});
// Profile changing
var profileButtons = $('#profile-buttons button');
profileButtons.on('click', function() {
var slectedProfileButton = $(this);
profileButtons.removeClass('positive');
slectedProfileButton.addClass('positive');
profile = slectedProfileButton.data('profile');
findRouteHandler();
});
// Find the best path
function route(coordinates, color) {
// Encode coordinates string
var coordinatesString = [];
for (coordinate of coordinates) {
coordinatesString.push(coordinate.join(','));
}
coordinatesString = coordinatesString.join(';');
// Make request URL
var url = 'https://api.mapbox.com/directions/v5/mapbox/' + profile + '/' + coordinatesString;
// Send AJAX request
$.getJSON(
url,
{
access_token: L.mapbox.accessToken,
overview: 'full'
},
function(data, textStatus, jqXHR) {
wayLayers.push(
addFeature(
{
type: 'Feature',
geometry: polyline.toGeoJSON(data.routes[0].geometry),
properties: {
'stroke': color,
'stroke-opacity': 0.8,
'stroke-width': 5,
}
})
);
}
);
}
function findRouteHandler() {
// Clear way layers
for (var layer of wayLayers) {
layer.clearLayers();
}
// Create array of waypoints
var waypoints = [];
// We start at the users currect location
waypoints.push(userGeoLocation.getAsArray());
// Find routes
$('#amenities .item.active').each(function(index, element) {
var startLocation = waypoints[waypoints.length - 1];
var finishLocation = null;
var amenity = $(element).data('amenity');
var longitude = startLocation[0];
var latitude = startLocation[1];
$.ajax({
url: '/api/features/nearest/' + amenity + '/' + longitude+ '/' + latitude,
async: false,
dataType: 'json',
data: {
selectedParts: getSelectedParts()
},
success: function(data, textStatus, jqXHR) {
var color = getRandomColor();
// Adjust marker
data.properties['marker-symbol'] = waypoints.length;
data.properties['marker-color'] = color;
finishLocation = data.geometry.coordinates;
waypoints.push(finishLocation);
route([
startLocation,
finishLocation
], color);
wayLayers.push(addFeature(data));
}
});
});
}
var amenities = $('#amenities .item[data-amenity]');
amenities.on('click', function() {
$(this).toggleClass('active');
findRouteHandler();
});
$("#amenities").sortable({
axis: "y",
stop: findRouteHandler
});
// Showables
amenityLayer = null;
function hideAmenityLayer() {
if (amenityLayer) {
amenityLayer.clearLayers();
}
}
function refreshAmenityLayer() {
hideAmenityLayer();
var amenity = $('#showables .item.active').data('amenity');
if (amenity) {
showAmenityLayer($('#showables .item.active').data('amenity'));
}
}
function showAmenityLayer(amenity) {
$.getJSON('/api/features/amenity/' + amenity, {
selectedParts: getSelectedParts()
}, function(data, textStatus, jqXHR) {
amenityLayer = addFeature(data);
});
}
$('#showables .item[data-amenity]').on('click', function() {
hideAmenityLayer();
var $this = $(this);
if ($this.hasClass('active')) {
$this.removeClass('active');
} else {
$('#showables .item').removeClass('active');
$(this).addClass('active');
showAmenityLayer($(this).data('amenity'));
}
});
// Set current location to STU FIIT by default
userGeoLocation.set(48.15387250625418, 17.072426676750183);
userGeoLocation.centerMap();
userGeoLocation.show();
/////////////////
var partsLayers = [];
function hidePartsLayer() {
for (partsLayer of partsLayers) {
partsLayer.clearLayers();
}
}
function getSelectedParts() {
var selectedParts = [];
$('#parts .item.active').each(function() {
selectedParts.push($(this).text().trim());
});
return selectedParts;
}
function showPartsHandler() {
var selectedParts = getSelectedParts()
$.getJSON('/api/features/polygons', {
selectedParts: selectedParts
}, function(data, textStatus, jqXHR) {
hidePartsLayer();
partsLayers.push(addFeature(data));
});
}
showPartsHandler();
$('#parts .item').on('click', function() {
$(this).toggleClass('active');
showPartsHandler();
refreshAmenityLayer();
findRouteHandler();
});
btn.deactiveParts.on('click', function() {
$('#parts .item').removeClass('active');
showPartsHandler();
refreshAmenityLayer();
findRouteHandler();
});
btn.activeParts.on('click', function() {
$('#parts .item').addClass('active');
showPartsHandler();
refreshAmenityLayer();
findRouteHandler();
});