forked from organicmaps/organicmaps
Base validation for building:levels on a client side.
This commit is contained in:
parent
dd8be8cc6e
commit
f5d1ff127f
1 changed files with 4 additions and 1 deletions
|
@ -161,7 +161,10 @@ void EditableMapObject::SetFlats(string const & flats)
|
|||
|
||||
void EditableMapObject::SetBuildingLevels(string const & buildingLevels)
|
||||
{
|
||||
m_metadata.Set(feature::Metadata::FMD_BUILDING_LEVELS, buildingLevels);
|
||||
auto constexpr kMaximumLevelsEditableByUsers = 50;
|
||||
uint64_t levels;
|
||||
if (strings::to_uint64(buildingLevels, levels) && levels <= kMaximumLevelsEditableByUsers)
|
||||
m_metadata.Set(feature::Metadata::FMD_BUILDING_LEVELS, buildingLevels);
|
||||
}
|
||||
|
||||
string const & EditableMapObject::GetStreet() const { return m_street; }
|
||||
|
|
Loading…
Add table
Reference in a new issue