Improved www.ttss.krakow.pl
Jacek Kowalski
2017-04-17 e613577e9bb161191c2dbbac43c97916f56573e0
Ignore stops with category "other"
2 files modified
4 ■■■■ changed files
map.js 3 ●●●●● patch | view | raw | blame | history
stops/download_stops.php 1 ●●●● patch | view | raw | blame | history
map.js
@@ -153,6 +153,9 @@
    
    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);
        
stops/download_stops.php
@@ -4,6 +4,7 @@
$json = file_get_contents('http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/stopinfo/stops?left=-648000000&bottom=-324000000&right=648000000&top=324000000');
$elements = json_decode($json, 1);
foreach($elements['stops'] as $element) {
    if($element['category'] == 'other') continue;
    $stops[$element['shortName']] = $element['name'];
}