mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
18 lines
270 B
Swift
18 lines
270 B
Swift
//
|
|
// NodeMapControl.swift
|
|
// Meshtastic
|
|
//
|
|
// Created by Garth Vander Houwen on 9/9/23.
|
|
//
|
|
import SwiftUI
|
|
import CoreLocation
|
|
import MapKit
|
|
|
|
struct NodeMapControl: View {
|
|
|
|
@ObservedObject var node: NodeInfoEntity
|
|
|
|
var body: some View {
|
|
Text("I am a map")
|
|
}
|
|
}
|