Skip to content

Version 1.2.0

Compare
Choose a tag to compare
@SvenTiigi SvenTiigi released this 22 Apr 10:30
· 94 commits to main since this release

tvOS

This release adds tvOS πŸ“Ί support to FlyoverKit πŸ™Œ

ConfigurationTheme

This release removed the ConfigurationTheme and the specific initializer. The ConfigurationThemes are now available as static property on FlyoverCamera.Configuration.

/// No longer available
let camera = FlyoverCamera(
    mapView: mapView,
    configurationTheme: .lowFlying
)

/// Use the configuration initializer and set static property (e.g. .lowFlying)
let camera = FlyoverCamera(
    mapView: mapView,
    configuration: .lowFlying
)