mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-16 17:39:49 +00:00
enable realtime directions where possible
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@270 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
119a91f72d
commit
8e19081ca9
8 changed files with 10 additions and 0 deletions
|
@ -106,6 +106,7 @@ public class GvhProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -106,6 +106,7 @@ public class IvbProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -109,6 +109,8 @@ public class LinzProvider extends AbstractEfaProvider
|
|||
uri.append("&ptOptionsActive=1");
|
||||
uri.append("&changeSpeed=").append(WALKSPEED_MAP.get(walkSpeed));
|
||||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -165,6 +165,7 @@ public class MvvProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -105,6 +105,8 @@ public class SvvProvider extends AbstractEfaProvider
|
|||
uri.append("&changeSpeed=").append(WALKSPEED_MAP.get(walkSpeed));
|
||||
uri.append(productParams(products));
|
||||
|
||||
// TODO uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
||||
|
|
|
@ -106,6 +106,7 @@ public class VrnProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -106,6 +106,7 @@ public class VrrProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
// TODO uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
|
@ -106,6 +106,7 @@ public class VvsProvider extends AbstractEfaProvider
|
|||
uri.append(productParams(products));
|
||||
|
||||
uri.append("&locationServerActive=1");
|
||||
uri.append("&useRealtime=1");
|
||||
|
||||
return uri.toString();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue