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),
|
value<int>(&config.max_alternatives)->default_value(3),
|
||||||
"Max. number of alternatives supported in the MLD route query") //
|
"Max. number of alternatives supported in the MLD route query") //
|
||||||
("max-matching-radius",
|
("max-matching-radius",
|
||||||
value<double>(&config.max_radius_map_matching)->default_value(5),
|
value<double>(&config.max_radius_map_matching)->default_value(-1.0),
|
||||||
"Max. radius size supported in map matching query");
|
"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
|
// 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");
|
boost::program_options::options_description hidden_options("Hidden options");
|
||||||
|
Loading…
Reference in New Issue
Block a user