Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--routing/pedestrian_model.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/routing/pedestrian_model.cpp b/routing/pedestrian_model.cpp
index 3ee9e81ddb..e7ae8fe400 100644
--- a/routing/pedestrian_model.cpp
+++ b/routing/pedestrian_model.cpp
@@ -579,8 +579,10 @@ routing::VehicleModel::InitListT const s_pedestrianLimits_USA =
namespace routing
{
-PedestrianModel::PedestrianModel()
- : VehicleModel(classif(), s_pedestrianLimits_Default)
+// Use Australia limits because it has all track types availible for pedestrian.
+// If one of feature types will be disabled for pedestrian? Features of this type will be simplyfied
+// in generator. Look FeatureBuilder1::IsRoad() for more info.
+PedestrianModel::PedestrianModel() : VehicleModel(classif(), s_pedestrianLimits_Australia)
{
Init();
}