forked from organicmaps/organicmaps
Drape overaly depth normalization fix.
This commit is contained in:
parent
799a2dd6a9
commit
f9e202db45
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ uint64_t CalculateOverlayPriority(int minZoomLevel, uint8_t rank, float depth)
|
|||
|
||||
float const kMinDepth = -100000.0f;
|
||||
float const kMaxDepth = 100000.0f;
|
||||
float const d = my::clamp(depth, kMinDepth, kMaxDepth) + kMaxDepth;
|
||||
float const d = my::clamp(depth, kMinDepth, kMaxDepth) - kMinDepth;
|
||||
uint32_t const priority = static_cast<uint32_t>(d);
|
||||
|
||||
return (static_cast<uint64_t>(minZoom) << 56) |
|
||||
|
|
Loading…
Add table
Reference in a new issue