Flat the map by default so precision circles are prettier

This commit is contained in:
Garth Vander Houwen 2024-03-27 16:30:58 -07:00
parent 7c022813a2
commit 4d584f64c9

View file

@ -25,7 +25,7 @@ struct NodeMapSwiftUI: View {
@AppStorage("mapLayer") private var selectedMapLayer: MapLayer = .hybrid
// Map Configuration
@Namespace var mapScope
@State var mapStyle: MapStyle = MapStyle.hybrid(elevation: .realistic, pointsOfInterest: .all, showsTraffic: true)
@State var mapStyle: MapStyle = MapStyle.hybrid(elevation: .flat, pointsOfInterest: .all, showsTraffic: true)
@State var position = MapCameraPosition.automatic
@State var scene: MKLookAroundScene?
@State var isLookingAround = false