mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 06:03:45 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
17
libs/drape/visual_scale.hpp
Normal file
17
libs/drape/visual_scale.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "platform/platform.hpp"
|
||||
|
||||
namespace dp
|
||||
{
|
||||
/// This fuction is called in iOS/Android native code.
|
||||
inline double VisualScale(double exactDensityDPI)
|
||||
{
|
||||
// In case of tablets and iPads increased DPI is used to make visual scale bigger.
|
||||
if (GetPlatform().IsTablet())
|
||||
exactDensityDPI *= 1.2;
|
||||
|
||||
// For some old devices (for example iPad 2) the density could be less than 160 DPI (mdpi).
|
||||
// Returns one in that case to keep readable text on the map.
|
||||
return std::max(1.35, exactDensityDPI / 160.0);
|
||||
}
|
||||
} // namespace dp
|
||||
Reference in New Issue
Block a user