From e613577e9bb161191c2dbbac43c97916f56573e0 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 17 Apr 2017 17:36:31 +0000 Subject: [PATCH] Ignore stops with category "other" --- map.js | 3 +++ stops/download_stops.php | 1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/map.js b/map.js index 6ffe9e4..e7b821d 100644 --- a/map.js +++ b/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); diff --git a/stops/download_stops.php b/stops/download_stops.php index 3990585..3a8227c 100644 --- a/stops/download_stops.php +++ b/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']; } -- Gitblit v1.9.1