I have been using CLGeocoder’s “geocodePostalAddress” API for many years, and it’s been working just fine. Since yesterday, a lot of users have started complaining that they are getting “no results” for their geocoding requests, and I have also confirmed this case. It seems like the “geocodePostalAddress” returns “No Result” in many cases where it used to work correctly before, even though the “geocodeAddressString” API still works correctly. Has anyone else noticed this problem? Has there been some server change that is causing this? Here's a unit test I wrote to test this out: import CoreLocation final class CJTestCLGeocoderRequests: XCTestCase { func testGeocoderWithCNPostalAddressBerkeley() async throws { let geocoder = CLGeocoder() do { let postalAddress = CNMutablePostalAddress() postalAddress.street = 2300 College Ave postalAddress.city = Berkeley postalAddress.state = CA postalAddress.postalCode = 94108 postalAddress.country = United States let placemarks3 = try await geocoder.geocodePostalAd
2
0
1.1k