mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
16 lines
253 B
Swift
16 lines
253 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
|
||
|
|
}
|