Skip to content

Commit

Permalink
Turning off rotate and pitch for address view in order to align with …
Browse files Browse the repository at this point in the history
…our other map views (#511)
  • Loading branch information
osanoj authored Aug 12, 2019
1 parent 4182d27 commit a5e4bf3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/Fullscreen/AddressView/AddressView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public class AddressView: UIView {

private lazy var mapView: MKMapView = {
let view = MKMapView(withAutoLayout: true)
view.isRotateEnabled = false
view.isPitchEnabled = false
view.delegate = self
return view
}()
Expand Down

0 comments on commit a5e4bf3

Please sign in to comment.