Merge pull request #776 from meshtastic/2.3.16

set initial position further out
This commit is contained in:
Garth Vander Houwen 2024-07-09 18:35:27 -07:00 committed by GitHub
commit e5a958e279
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,7 +47,7 @@ struct NodeMapSwiftUI: View {
if node.hasPositions {
ZStack {
MapReader { _ in
Map(position: $position, bounds: MapCameraBounds(minimumDistance: 1, maximumDistance: .infinity), scope: mapScope) {
Map(position: $position, bounds: MapCameraBounds(minimumDistance: 3000, maximumDistance: .infinity), scope: mapScope) {
NodeMapContent(node: node)
}
.mapScope(mapScope)