8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何修复在 SwiftUI 中实现地图时出现的错误

Prageeth Liyanage 1月前

15 0

我正在尝试创建我的第一个应用程序,该应用程序可以让我跟踪我的耐力赛(越野车)训练的进度,无论是在比赛模式还是训练模式,碰巧的是,它的基本功能之一是......

我正在尝试创建我的第一个应用程序,该应用程序允许我跟踪我的耐力赛(越野车)训练进度,无论是在比赛模式还是训练模式中,碰巧我的应用程序必须具备的基本功能之一是地图上的跟踪系统,以便保存我的路线。我正在尝试在我的应用程序中实现地图,但我发现了几个错误,如果格式或我在此处写的任何内容不正确,我想道歉,这是我第一次在这里提问。我使用的是 Xcode 15.4 和 iOS 17.5,非常感谢您抽出时间。

import SwiftUI
import MapKit

struct IdentifiableCoordinate: Identifiable {
    let id = UUID()
    let coordinate: CLLocationCoordinate2D
}

struct SecondView: View {
    @StateObject private var locationManager = LocationManager()

    var body: some View {
        ZStack {
           
            Map(coordinateRegion: $locationManager.region, showsUserLocation: true, annotationItems: locationManager.trackingLocations) { location in ( here is the error message: Initializer 'init(coordinateRegion:interactionModes:showsUserLocation:userTrackingMode:annotationItems:annotationContent:)' requires that 'Annotation<Text, some View>' conform to 'MapAnnotationProtocol'
                
                Annotation(location.coordinate, coordinate: <#CLLocationCoordinate2D#>) { ( here is the second error message: Initializer 'init(_:coordinate:anchor:content:)' requires that 'CLLocationCoordinate2D' conform to 'StringProtocol'
                    Circle()
                        .strokeBorder(Color.red, lineWidth: 2)
                        .frame(width: 30, height: 30)
                }
            }
            .ignoresSafeArea()
            .onAppear {
                locationManager.checkIfLocationServicesIsEnabled()
            }
            
            VStack {
                Text("ENDURapp")
                    .font(.largeTitle)
                    .foregroundColor(.white)
                    .padding(.top, 50)
                
                Spacer()
            }
        }
    }
}

class LocationManager: NSObject, ObservableObject, CLLocationManagerDelegate {
    private let locationManager = CLLocationManager()
    
    @Published var region = MKCoordinateRegion(
        center: CLLocationCoordinate2D(latitude: 37.7749, longitude: -122.4194), // Coordenada inicial
        span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01)
    )
    
    @Published var trackingLocations: [IdentifiableCoordinate] = []
    
    override init() {
        super.init()
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyBest
    }
    
    func checkIfLocationServicesIsEnabled() {
        if CLLocationManager.locationServicesEnabled() {
            locationManager.requestWhenInUseAuthorization()
            locationManager.startUpdatingLocation()
        } else {
            
        }
    }
    
    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        guard let latestLocation = locations.last else { return }
        region = MKCoordinateRegion(
            center: latestLocation.coordinate,
            span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01)
        )
        trackingLocations.append(IdentifiableCoordinate(coordinate: latestLocation.coordinate))
    }
}

struct SecondView_Previews: PreviewProvider {
    static var previews: some View {
        SecondView()
    }
}

我按照某人的建议进行了更改:不要使用 ForEach,而使用带有 Map 的 commentItems,但这也不起作用。

帖子版权声明 1、本帖标题:如何修复在 SwiftUI 中实现地图时出现的错误
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Prageeth Liyanage在本站《ios》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: