forked from organicmaps/organicmaps
Pedestrian roads geometry simplifying fix
This commit is contained in:
parent
161abff6a0
commit
6dc2e480eb
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ namespace
|
|||
bool FeatureBuilder1::IsRoad() const
|
||||
{
|
||||
static routing::CarModel const carModel;
|
||||
return carModel.IsRoad(m_params.m_Types);
|
||||
static routing::PedestrianModel const pedModel;
|
||||
return carModel.IsRoad(m_params.m_Types) || pedModel.IsRoad(m_params.m_Types);
|
||||
}
|
||||
|
||||
bool FeatureBuilder1::PreSerialize()
|
||||
|
|
Loading…
Add table
Reference in a new issue