New
Version 1.2.0
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
)