summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2021-05-27 14:34:36 +0200
committerAndrej Mihajlov <and@mullvad.net>2021-05-27 14:34:36 +0200
commit23ba82a76b74c2ca11c7b67e40b0c200601ec987 (patch)
tree0ba49d49286d04898cbd051a80bb3b9878332a7a
parent25a9e0f0299188503c23457614f9cf4a4db433b4 (diff)
parentfcaa3ffe0ea2eb890b0c8b9f84469a44cf16668e (diff)
downloadmullvadvpn-23ba82a76b74c2ca11c7b67e40b0c200601ec987.tar.xz
mullvadvpn-23ba82a76b74c2ca11c7b67e40b0c200601ec987.zip
Merge branch 'disable-user-interaction-maps'
-rw-r--r--ios/MullvadVPN/ConnectMainContentView.swift3
1 files changed, 3 insertions, 0 deletions
diff --git a/ios/MullvadVPN/ConnectMainContentView.swift b/ios/MullvadVPN/ConnectMainContentView.swift
index 073bd59a46..99e181ab0d 100644
--- a/ios/MullvadVPN/ConnectMainContentView.swift
+++ b/ios/MullvadVPN/ConnectMainContentView.swift
@@ -21,6 +21,9 @@ class ConnectMainContentView: UIView {
mapView.translatesAutoresizingMaskIntoConstraints = true
mapView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
mapView.showsUserLocation = false
+ mapView.isZoomEnabled = false
+ mapView.isScrollEnabled = false
+ mapView.isUserInteractionEnabled = false
return mapView
}()