FlyoverKit v1.1.0 Release Notes

Release Date: 2018-02-28 // about 6 years ago
  • FlyoverCamera State

    ๐Ÿš€ In this release the property isStarted is completely removed and replaced with the state enum property. In order to check if the FlyoverCamera 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 named astronautView. The theme configures the FlyoverCamera 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 or FlyoverMapView. The FlyoverCamera will stop as soon the Application is going into the background mode and will automatically start the flyover when the Application is in foreground