Xode 11 and iOS 13 support
This version adds support for Xcode 11 in especially for the Swift Package Manager and iOS 13.
Unclaimed project
Are you a maintainer of FlyoverKit? Claim this project to take control of your public changelog and roadmap.
Changelog
360ยฐ flyover on a MKMapView ๐
Last updated almost 3 years ago
This version adds support for Xcode 11 in especially for the Swift Package Manager and iOS 13.
This release adds Swift 5 and Xcode 10.2 support
Added CaseIterable to FlyoverAwesomePlace
for place in FlyoverAwesomePlace.allCases {
print(place)
}
for place in FlyoverAwesomePlace.iterate() {
print(place)
}
Added Xcode 10 and Swift 4.2 compatibility
This release adds tvOS ๐บ support to FlyoverKit ๐
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...