FlyoverKit v1.1.0 Release Notes
Release Date: 2018-02-28 // over 5 years ago-
FlyoverCamera State
๐ In this release the property
isStarted
is completely removed and replaced with thestate
enum property. In order to check if theFlyoverCamera
is started you can check// Is FlyoverCamera started?self.flyoverCamera.state == .started// Is FlyoverCamera stopped?self.flyoverCamera.state == .stopped
Flyover Operators
In order to compare two
Flyover
types you can use the following two operators.// Equatable operator (==)self.flyover1 == self.flyover2
This checks if the two given
Flyover
types are exactly the same via comparison of latitude and longitude.// Rounded Equatable operator (~~)self.flyover1~~ self.flyover2
This checks if the two given
Flyover
types are nearly the same via comparison of rounded latitude and longitude.AstronautView
๐ Version 1.1.0 introduces a new
FlyoverCamera.Configuration.Theme
namedastronautView
. The theme configures theFlyoverCamera
to give you a view like an astronaut ๐Foreground/Background behavior
๐ In this release we fixed an issue with foreground and background behavior of an Application running a
FlyoverCamera
orFlyoverMapView
. TheFlyoverCamera
will stop as soon the Application is going into the background mode and will automatically start the flyover when the Application is in foreground