[gnome-maps/wip/mlundblad/transit-routing: 10/25] routeQuery: Add support for transit mode
- From: Marcus Lundblad <mlundblad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-maps/wip/mlundblad/transit-routing: 10/25] routeQuery: Add support for transit mode
- Date: Thu, 25 Aug 2016 19:19:42 +0000 (UTC)
commit 7b5d764204d969e318bf021a49cd41939a118d1c
Author: Marcus Lundblad <ml update uu se>
Date: Thu Mar 17 21:32:13 2016 +0100
routeQuery: Add support for transit mode
src/routeQuery.js | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/src/routeQuery.js b/src/routeQuery.js
index d2f0a67..0453d58 100644
--- a/src/routeQuery.js
+++ b/src/routeQuery.js
@@ -31,12 +31,14 @@ const Transportation = {
CAR: 0,
BIKE: 1,
PEDESTRIAN: 2,
+ TRANSIT: 3,
toString: function (transportation) {
switch(transportation) {
case Transportation.CAR: return 'car';
case Transportation.BIKE: return 'bike';
case Transportation.PEDESTRIAN: return 'foot';
+ case Transportation.TRANSIT: return 'transit';
default: return null;
}
}
@@ -91,7 +93,8 @@ const RouteQuery = new Lang.Class({
GObject.ParamFlags.WRITABLE,
Transportation.CAR,
Transportation.PEDESTRIAN,
- Transportation.CAR)
+ Transportation.CAR,
+ Transportation.TRANSIT)
},
get points() {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]