Disable steps and alternatives by default

This commit is contained in:
Daniel J. Hofmann
2016-04-05 09:56:38 +02:00
committed by Patrick Niklaus
parent 59f5e364c1
commit 97401ad99a
4 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -81,8 +81,8 @@ struct RouteParameters : public BaseParameters
{
}
bool steps = true;
bool alternatives = true;
bool steps = false;
bool alternatives = false;
GeometriesType geometries = GeometriesType::Polyline;
OverviewType overview = OverviewType::Simplified;
boost::optional<bool> uturns;