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 +++
 1 files changed, 3 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);
 		

--
Gitblit v1.9.1