Improved www.ttss.krakow.pl
Jacek Kowalski
2017-04-23 07c71449c320decb58070066f376313e3375130f
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
//var ttss_base = 'http://www.ttss.krakow.pl/internetservice';
var ttss_base = '/proxy.php';
var ttss_refresh = 10000; // 10 seconds
 
var vehicles_xhr = null;
var vehicles_timer = null;
var vehicles_last_update = 0;
var vehicles_source = null;
var vehicles_layer = null;
 
var stops_xhr = null;
var stops_source = null;
var stops_layer = null;
var stop_points_source = null;
var stop_points_layer = null;
 
var feature_id = null;
 
var map = null;
var popup_element = document.getElementById('popup');
var fail_element = document.getElementById('fail');
 
var ignore_hashchange = false;
 
function fail(msg) {
    console.log(msg);
    
    setText(fail_element, msg);
    fail_element.style.top = '0.5em';
}
 
function fail_ajax(data) {
    // abort() is not a failure
    if(data.readyState == 0 && data.statusText == 'abort') return;
    
    if(data.status == 0) {
        fail(lang.error_request_failed_connectivity, data);
    } else if (data.statusText) {
        fail(lang.error_request_failed_status.replace('$status', data.statusText), data);
    } else {
        fail(lang.error_request_failed, data);
    }
}
 
function getGeometry(object) {
    return new ol.geom.Point(ol.proj.fromLonLat([object.longitude / 3600000.0, object.latitude / 3600000.0]));
}
 
function updateVehicles() {
    if(vehicles_timer) clearTimeout(vehicles_timer);
    if(vehicles_xhr) vehicles_xhr.abort();
    
    vehicles_xhr = $.get(
        ttss_base + '/geoserviceDispatcher/services/vehicleinfo/vehicles' 
            + '?positionType=CORRECTED'
            + '&colorType=ROUTE_BASED'
            + '&lastUpdate=' + encodeURIComponent(vehicles_last_update)
    ).done(function(data) {
        vehicles_last_update = data.lastUpdate;
        
        for(var i = 0; i < data.vehicles.length; i++) {
            var vehicle = data.vehicles[i];
            
            var vehicle_feature = vehicles_source.getFeatureById('v' + vehicle.id);
            if(vehicle.isDeleted) {
                if(vehicle_feature) {
                    vehicles_source.removeFeature(vehicle_feature);
                    if(feature_id == vehicle_feature.getId()) {
                        featureClicked();
                    }
                }
                continue;
            }
            
            var vehicle_name_space = vehicle.name.indexOf(' ');
            vehicle.line = vehicle.name.substr(0, vehicle_name_space);
            vehicle.direction = vehicle.name.substr(vehicle_name_space+1);
            if(special_directions[vehicle.direction]) {
                vehicle.line = special_directions[vehicle.direction];
            }
            
            vehicle.geometry = getGeometry(vehicle);
            vehicle.vehicle_type = parseVehicle(vehicle.id);
            
            if(!vehicle_feature) {
                vehicle_feature = new ol.Feature(vehicle);
                vehicle_feature.setId('v' + vehicle.id);
                
                var color_type = 'black';
                if(vehicle.vehicle_type) {
                    switch(vehicle.vehicle_type.low) {
                        case 0:
                            color_type = 'orange';
                            break;
                        case 1:
                            color_type = 'blue';
                            break;
                        case 2:
                            color_type = 'green';
                            break;
                    }
                }
                
                vehicle_feature.setStyle(new ol.style.Style({
                    image: new ol.style.Icon({
                        src: 'data:image/svg+xml;base64,' + btoa('<svg xmlns="http://www.w3.org/2000/svg" height="30" width="20"><polygon points="10,0 20,23 0,23" style="fill:#3399ff;stroke:'+color_type+';stroke-width:2" /></svg>'),
                        rotation: Math.PI * parseFloat(vehicle.heading) / 180.0,
                    }),
                    text: new ol.style.Text({
                        font: 'bold 10px sans-serif',
                        text: vehicle.line,
                        fill: new ol.style.Fill({color: 'white'}),
                    }),
                }));
                vehicles_source.addFeature(vehicle_feature);
            } else {
                vehicle_feature.setProperties(vehicle);
                vehicle_feature.getStyle().getImage().setRotation(Math.PI * parseFloat(vehicle.heading) / 180.0);
            }
        }
        
        vehicles_timer = setTimeout(function() {
            updateVehicles();
        }, ttss_refresh);
    }).fail(fail_ajax);
    
    return vehicles_xhr;
}
 
function updateStopSource(stops, prefix, source) {
    source.clear();
    
    for(var i = 0; i < stops.length; i++) {
        var stop = stops[i];
        
        if(stop.category == 'other') continue;
        
        stop.geometry = getGeometry(stop);
        var stop_feature = new ol.Feature(stop);
        
        stop_feature.setId(prefix + stop.id);
        stop_feature.setStyle(new ol.style.Style({
            image: new ol.style.Circle({
                fill: new ol.style.Fill({color: 'orange'}),
                stroke: new ol.style.Stroke({color: 'red', width: 1}),
                radius: 3,
            }),
        }));
        
        source.addFeature(stop_feature);
    }
}
 
function updateStops() {
    return $.get(
        ttss_base + '/geoserviceDispatcher/services/stopinfo/stops'
            + '?left=-648000000'
            + '&bottom=-324000000'
            + '&right=648000000'
            + '&top=324000000'
    ).done(function(data) {
        updateStopSource(data.stops, 's', stops_source);
    }).fail(fail_ajax);
}
 
function updateStopPoints() {
    return $.get(
        ttss_base + '/geoserviceDispatcher/services/stopinfo/stopPoints'
            + '?left=-648000000'
            + '&bottom=-324000000'
            + '&right=648000000'
            + '&top=324000000'
    ).done(function(data) {
        updateStopSource(data.stopPoints, 'p', stop_points_source);
    }).fail(fail_ajax);
}
 
function featureClicked(feature) {
    if(!feature) {
        feature_id = null;
        
        $(popup_element).removeClass('show');
        
        ignore_hashchange = true;
        window.location.hash = '';
        
        return;
    }
    
    var coordinates = feature.getGeometry().getCoordinates();
    
    deleteChildren(popup_element);
    
    var type;
    var name = feature.get('name');
    var additional;
    
    switch(feature.getId().substr(0, 1)) {
        case 'v':
            type = lang.type_vehicle;
            
            if(!feature.get('vehicle_type')) {
                break;
            }
            
            var span = displayVehicle(feature.get('vehicle_type'));
            
            additional = document.createElement('p');
            setText(additional, span.title);
            additional.insertBefore(span, additional.firstChild);
        break;
        case 's':
            type = lang.type_stop;
        break;
        case 'p':
            type = lang.type_stoppoint;
        break;
    }
    
    addParaWithText(popup_element, type).className = 'type';
    addParaWithText(popup_element, name).className = 'name';
    
    if(additional) {
        popup_element.appendChild(additional);
    }
    
    ignore_hashchange = true;
    window.location.hash = '#!' + feature.getId();
    
    map.getView().animate({
        center: feature.getGeometry().getCoordinates(),
    });
    
    $(popup_element).addClass('show');
    
    feature_id = feature.getId();
}
 
function hash() {
    if(ignore_hashchange) {
        ignore_hashchange = false;
        return;
    }
    
    var tramId = null;
    
    var vehicleId = null;
    var stopId = null;
    var stopPointId = null;
    
    var feature = null;
    
    if(window.location.hash.match(/^#!t[0-9]{3}$/)) {
        tramId = parseInt(window.location.hash.substr(3));
    } else if(window.location.hash.match(/^#![A-Za-z]{2}[0-9]{3}$/)) {
        tramId = parseInt(window.location.hash.substr(4));
    } else if(window.location.hash.match(/^#!v[0-9]+$/)) {
        vehicleId = window.location.hash.substr(3);
    } else if(window.location.hash.match(/^#!s[0-9]+$/)) {
        stopId = window.location.hash.substr(3);
    } else if(window.location.hash.match(/^#!p[0-9]+$/)) {
        stopPointId = window.location.hash.substr(3);
    }
    
    if(tramId) {
        vehicleId = tramIdToVehicleId(tramId);
    }
    
    if(vehicleId) {
        feature = vehicles_source.getFeatureById('v' + vehicleId);
    } else if(stopId) {
        feature = stops_source.getFeatureById('s' + stopId);
    } else if(stopPointId) {
        feature = stop_points_source.getFeatureById('p' + stopPointId);
    }
    
    featureClicked(feature);
}
 
function init() {
    if(!window.jQuery) {
        fail(lang.jquery_not_loaded);
        return;
    }
    
    $.ajaxSetup({
        dataType: 'json',
        timeout: 10000,
    });
    
    stops_source = new ol.source.Vector({
        features: [],
    });
    stops_layer = new ol.layer.Vector({
        source: stops_source,
    });
    
    stop_points_source = new ol.source.Vector({
        features: [],
    });
    stop_points_layer = new ol.layer.Vector({
        source: stop_points_source,
        visible: false,
    });
    
    vehicles_source = new ol.source.Vector({
        features: [],
    });
    vehicles_layer = new ol.layer.Vector({
        source: vehicles_source,
    });
    
    map = new ol.Map({
        target: 'map',
        layers: [
            new ol.layer.Tile({
                source: new ol.source.OSM()
            }),
            stops_layer,
            stop_points_layer,
            vehicles_layer,
        ],
        view: new ol.View({
            center: ol.proj.fromLonLat([19.94, 50.06]),
            zoom: 13
        }),
        controls: ol.control.defaults({
            attributionOptions: ({
                collapsible: false,
            })
        }).extend([
            new ol.control.Control({
                element: document.getElementById('title'),
            }),
            new ol.control.Control({
                element: fail_element,
            })
        ]),
    });
    
    // Display popup on click
    map.on('singleclick', function(e) {
        var feature = map.forEachFeatureAtPixel(e.pixel, function(feature) { return feature; });
        featureClicked(feature);
    });
 
    // Change mouse cursor when over marker
    map.on('pointermove', function(e) {
        var hit = map.hasFeatureAtPixel(e.pixel);
        var target = map.getTargetElement();
        target.style.cursor = hit ? 'pointer' : '';
    });
    
    // Change layer visibility on zoom
    map.getView().on('change:resolution', function(e) {
        if(map.getView().getZoom() >= 16) {
            stops_layer.setVisible(false);
            stop_points_layer.setVisible(true);
        } else {
            stops_layer.setVisible(true);
            stop_points_layer.setVisible(false);
        }
    });
    
    $.when(
        updateVehicles(),
        updateStops(),
        updateStopPoints()
    ).done(function() {
        hash();
    });
    
    window.addEventListener('hashchange', hash);
    
    setTimeout(function() {
        if(vehicles_xhr) vehicles_xhr.abort();
        if(vehicles_timer) clearTimeout(vehicles_timer);
          
        fail(lang.error_refresh);
    }, 1800000);
}
 
init();