-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathViews.swift
34 lines (27 loc) · 844 Bytes
/
Views.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Atoms
import MapKit
import SwiftUI
struct MapView: View {
@Watch(CoordinateAtom())
var coordinate
var body: some View {
MapViewRepresentable(base: self)
}
}
private struct MapViewRepresentable: UIViewRepresentable {
let base: MapView
func makeUIView(context: Context) -> MKMapView {
MKMapView(frame: .zero)
}
func updateUIView(_ view: MKMapView, context: Context) {
guard let coordinate = base.coordinate else {
return
}
let span = MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01)
let region = MKCoordinateRegion(center: coordinate, span: span)
let annotation = MKPointAnnotation()
annotation.coordinate = coordinate
view.addAnnotation(annotation)
view.setRegion(region, animated: true)
}
}