mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
109 lines
3.3 KiB
Swift
109 lines
3.3 KiB
Swift
//
|
|
// NodeMap.swift
|
|
// MeshtasticApple
|
|
//
|
|
// Created by Garth Vander Houwen on 8/7/21.
|
|
//
|
|
|
|
import SwiftUI
|
|
import MapKit
|
|
import CoreLocation
|
|
import CoreData
|
|
|
|
struct NodeMap: View {
|
|
|
|
@Environment(\.managedObjectContext) var context
|
|
@EnvironmentObject var bleManager: BLEManager
|
|
@EnvironmentObject var userSettings: UserSettings
|
|
@AppStorage("meshMapType") var type: String = "hybrid"
|
|
@AppStorage("meshMapCustomTileServer") var customTileServer: String = "" {
|
|
didSet {
|
|
if customTileServer == "" {
|
|
self.customMapOverlay = nil
|
|
} else {
|
|
self.customMapOverlay = MapViewSwiftUI.CustomMapOverlay(
|
|
mapName: customTileServer,
|
|
tileType: "png",
|
|
canReplaceMapContent: true
|
|
)
|
|
}
|
|
}
|
|
}
|
|
@FetchRequest(sortDescriptors: [NSSortDescriptor(key: "time", ascending: false)],
|
|
predicate: NSPredicate(format: "time >= %@", Calendar.current.startOfDay(for: Date()) as NSDate), animation: .easeIn)
|
|
private var positions: FetchedResults<PositionEntity>
|
|
|
|
@FetchRequest(sortDescriptors: [NSSortDescriptor(key: "name", ascending: false)],
|
|
predicate: NSPredicate(
|
|
format: "expire == nil || expire >= %@", Date() as NSDate
|
|
), animation: .easeIn)
|
|
private var waypoints: FetchedResults<WaypointEntity>
|
|
|
|
@State private var mapType: MKMapType = .standard
|
|
@State var waypointCoordinate: CLLocationCoordinate2D?
|
|
@State var editingWaypoint: Int = 0
|
|
@State private var presentingWaypointForm = false
|
|
@State private var customMapOverlay: MapViewSwiftUI.CustomMapOverlay? = MapViewSwiftUI.CustomMapOverlay(
|
|
mapName: "offlinemap",
|
|
tileType: "png",
|
|
canReplaceMapContent: true
|
|
)
|
|
@State private var overlays: [MapViewSwiftUI.Overlay] = []
|
|
|
|
var body: some View {
|
|
|
|
NavigationStack {
|
|
ZStack {
|
|
|
|
MapViewSwiftUI(onLongPress: { coord, id in
|
|
print(id)
|
|
waypointCoordinate = coord
|
|
if waypointCoordinate == nil {
|
|
presentingWaypointForm = false
|
|
} else {
|
|
presentingWaypointForm = true
|
|
}
|
|
}, onWaypointEdit: { wpId in
|
|
editingWaypoint = wpId
|
|
presentingWaypointForm = true
|
|
|
|
}, positions: Array(positions), waypoints: Array(waypoints), mapViewType: mapType,
|
|
centerOnPositionsOnly: false,
|
|
customMapOverlay: self.customMapOverlay,
|
|
overlays: self.overlays
|
|
)
|
|
VStack {
|
|
Spacer()
|
|
Picker("Map Type", selection: $mapType) {
|
|
ForEach(MeshMapType.allCases) { map in
|
|
Text(map.description).tag(map.MKMapTypeValue())
|
|
}
|
|
}
|
|
.pickerStyle(.menu)
|
|
}
|
|
}
|
|
.ignoresSafeArea(.all, edges: [.top, .leading, .trailing])
|
|
.frame(maxHeight: .infinity)
|
|
.sheet(isPresented: $presentingWaypointForm ) {//, onDismiss: didDismissSheet) {
|
|
if waypointCoordinate != nil {
|
|
WaypointFormView(coordinate: waypointCoordinate!, waypointId: editingWaypoint)
|
|
.presentationDetents([.medium, .large])
|
|
.presentationDragIndicator(.automatic)
|
|
}
|
|
}
|
|
}
|
|
.navigationBarItems(leading:
|
|
MeshtasticLogo(), trailing:
|
|
ZStack {
|
|
ConnectedDevice(
|
|
bluetoothOn: bleManager.isSwitchedOn,
|
|
deviceConnected: bleManager.connectedPeripheral != nil,
|
|
name: (bleManager.connectedPeripheral != nil) ? bleManager.connectedPeripheral.shortName :
|
|
"????")
|
|
})
|
|
.onAppear(perform: {
|
|
self.bleManager.context = context
|
|
self.bleManager.userSettings = userSettings
|
|
})
|
|
}
|
|
}
|