Skip to content

Commit

Permalink
Fixed tvOS build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenTiigi committed Nov 29, 2022
1 parent 523940f commit 9a3bbff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/FlyoverMapView/FlyoverMapView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ open class FlyoverMapView: MKMapView {
super.init(frame: frame)
#if !os(tvOS)
self.showsCompass = false
self.isPitchEnabled = false
self.isRotateEnabled = false
#endif
self.pointOfInterestFilter = .excludingAll
self.showsBuildings = true
self.showsScale = false
self.isZoomEnabled = false
self.isPitchEnabled = false
self.isScrollEnabled = false
self.isRotateEnabled = false
}

/// Initializer with NSCoder is unavailable
Expand Down

0 comments on commit 9a3bbff

Please sign in to comment.