co-maps/iphone/Maps/Classes/CustomViews/MapViewControls/APIBar/MWMMapViewControlsCommon.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
339 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
static NSTimeInterval const kMenuViewHideFramesCount = 4.0;
static inline NSTimeInterval framesDuration(NSTimeInterval const framesCount)
{
static NSTimeInterval const kFPS = 30.0;
static NSTimeInterval const kFrameDuration = 1.0 / kFPS;
return kFrameDuration * framesCount;
}
static CGFloat const kViewControlsOffsetToBounds = 6;