GMSFrameRate
enum GMSFrameRate : NSUInteger {}Rendering frame rates for GMSMapView.
-
Use the minimum frame rate to conserve battery usage.
Declaration
Swift
case powerSave = 0Objective-C
kGMSFrameRatePowerSave -
Use a median frame rate to provide smoother rendering and conserve processing cycles.
Declaration
Swift
case conservative = 1Objective-C
kGMSFrameRateConservative -
Use the maximum frame rate for a device. For low end devices this will be 30 FPS, for high end devices 60 FPS.
Declaration
Swift
case maximum = 2Objective-C
kGMSFrameRateMaximum