HomeiOS DevelopmentUnusual empty circle in Google Locations autocomplete for iOS 26

Unusual empty circle in Google Locations autocomplete for iOS 26


After updating my app with the iOS 26, the Google Place picker autocomplete robotically added a empty circle within the left aspect:

Unusual empty circle in Google Locations autocomplete for iOS 26

How I can take away or add a picture as a substitute of that vacant with circle that does nothing?

Once more, this occurs solely in iOS 26.

The code:

struct PlacePicker: UIViewControllerRepresentable {
        
    func makeCoordinator() -> GooglePlacesCoordinator {
        GooglePlacesCoordinator(self)
    }
    @Setting(.presentationMode) var presentationMode
    @Binding var tackle: String
    @Binding var latitude: Double
    @Binding var longitude: Double
    
    
    func makeUIViewController(context: UIViewControllerRepresentableContext<PlacePicker>) -> GMSAutocompleteViewController 
                                                                  GMSPlaceField.formattedAddress.rawValue)
        autocompleteController.placeFields = fields

        let filter = GMSAutocompleteFilter()
        filter.sort = .noFilter
        autocompleteController.autocompleteFilter = filter
        return autocompleteController
    

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments