mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 22:03:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
537 B
Swift
18 lines
537 B
Swift
final class NavigationStreetNameView: SolidTouchView {
|
|
override var visibleAreaAffectDirections: MWMAvailableAreaAffectDirections {
|
|
return alternative(iPhone: [], iPad: .top)
|
|
}
|
|
|
|
override var placePageAreaAffectDirections: MWMAvailableAreaAffectDirections {
|
|
return alternative(iPhone: [], iPad: .top)
|
|
}
|
|
|
|
override var sideButtonsAreaAffectDirections: MWMAvailableAreaAffectDirections {
|
|
return .top
|
|
}
|
|
|
|
override var trackRecordingButtonAreaAffectDirections: MWMAvailableAreaAffectDirections {
|
|
return .top
|
|
}
|
|
}
|