Swift: Failed to produce diagnostic for expression; please submit a bug report

89 Views Asked by At

Hello, im having trouble with XCode 15. This is my full code of this part:

struct ExploreView: View {
    @State private var cameraPosition: MapCameraPosition = .region(.userRegion)
    @State private var searchText = ""
    @State private var results = [MKMapItem]()
    @State private var mapSelection: MKMapItem?
    @State private var showDetails = false
    @State private var getDirections = false
    
    @State var region = MKCoordinateRegion(
        center: .init(latitude: 37.334_900,longitude: -122.009_020),
        span: .init(latitudeDelta: 0.2, longitudeDelta: 0.2)
    )
    
    let locationManager = CLLocationManager()
    
    
    var body: some View {
        NavigationView {
            VStack {
                Map(coordinateRegion: $region, showsUserLocation: true, userTrackingMode: .constant(.follow))
                    .edgesIgnoringSafeArea(.all)
                    .onAppear {
                        locationManager.requestWhenInUseAuthorization()
                    }
                    
                    ForEach(results, id: \.self) { item in
                        let placemark = item.placemark
                        Marker(placemark.name ?? "", coordinate: placemark.coordinate)
                    }
                }
                .overlay(alignment: .bottom) {
                    TextField("Suche beispielsweise nach \"Kebab\"", text: $searchText)
                        .cornerRadius(12)
                        .font(.subheadline)
                        .padding(12)
                        .background(.thinMaterial)
                        .padding()
                        .shadow(radius: 10)
                }
                .onSubmit(of: .text) {
                    Task { await searchPlaces() }
                }
                .onChange(of: mapSelection, { oldValue, newValue in
                    showDetails = newValue != nil
                })
                .sheet(isPresented: $showDetails, content: {
                    LocationDeatilsView(mapSelection: $mapSelection, show: $showDetails, getDirections: $getDirections)
                        .presentationDetents([.height(340)])
                        .presentationBackgroundInteraction(.enabled(upThrough: .height(340)))
                        .presentationCornerRadius(12)
                })
                .mapControls {
                    MapCompass()
                    MapPitchToggle()
                    MapUserLocationButton()
                }
            }
            .onAppear() {
                Task { await searchKebab() }
            }
            .navigationBarTitle("Ort des Dönermannes", displayMode: .inline)
        }
    }

The ForEach loop (ForEach(results, id: .self) { item in...) causes the issue. By removing the last line of the loop (Marker(...)) the code works perfectly fine. If you need to know this, i have some extensions for the view:

extension ExploreView {
    func searchPlaces() async {
        let request = MKLocalSearch.Request()
        request.naturalLanguageQuery = searchText
        request.region = .userRegion
        
        let results = try? await MKLocalSearch(request: request).start()
        self.results = results?.mapItems ?? []
    }
    
    func searchKebab() async {
        let request = MKLocalSearch.Request()
        request.naturalLanguageQuery = "Kebab"
        request.region = .userRegion
        
        searchText = "Kebab"
        
        let results = try? await MKLocalSearch(request: request).start()
        self.results = results?.mapItems ?? []
    }
}

extension CLLocationCoordinate2D {
    static var userLocation: CLLocationCoordinate2D {
        return .init(latitude: 53.62029035596979, longitude: 9.862939156850185)
    }
}

extension MKCoordinateRegion {
    static var userRegion: MKCoordinateRegion {
        return .init(center: .userLocation,
                     latitudinalMeters: 10000,
                     longitudinalMeters: 10000)
    }
}

I get the Message in the line with "var body: some View{...}"Of course i've already checked other posts and googled it... But nothing works :/ Thank you so much! :)

1

There are 1 best solutions below

0
On

Try something like

if let name = item.placemark.name, let coordinate = item.placemark.coordinate {

    Marker(name, coordinate: coordinate)

 } 

You might have to add an else with an alternate view if either the name or the coordinate is nil