Fix default value for matching radius in routed
This commit is contained in:
parent
5531cace7f
commit
e82b51d0cb
@ -135,8 +135,8 @@ inline unsigned generateServerProgramOptions(const int argc,
|
||||
value<int>(&config.max_alternatives)->default_value(3),
|
||||
"Max. number of alternatives supported in the MLD route query") //
|
||||
("max-matching-radius",
|
||||
value<double>(&config.max_radius_map_matching)->default_value(5),
|
||||
"Max. radius size supported in map matching query");
|
||||
value<double>(&config.max_radius_map_matching)->default_value(-1.0),
|
||||
"Max. radius size supported in map matching query. Default: unlimited.");
|
||||
|
||||
// hidden options, will be allowed on command line, but will not be shown to the user
|
||||
boost::program_options::options_description hidden_options("Hidden options");
|
||||
|
Loading…
Reference in New Issue
Block a user