mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
15 lines
252 B
Swift
15 lines
252 B
Swift
//
|
|
// MapLocation.swift
|
|
// MeshtasticClient
|
|
//
|
|
// Created by Garth Vander Houwen on 12/17/21.
|
|
//
|
|
import Foundation
|
|
import MapKit
|
|
|
|
struct MapLocation: Identifiable {
|
|
|
|
let id = UUID()
|
|
let name: String
|
|
let coordinate: CLLocationCoordinate2D
|
|
}
|