Everything looks fine. The API key is hidden inside logs.
Note that using reverseGeocoder(with: query) method you need to conform to the TTReverseGeocoderDelegate protocol in order to get the results out.
It can be easily done by adding a few lines of code:
The Reverse Geocode is working great now. Im wondering if you would have any tips on how I could achieve the following?
I want to continuously check the posted SpeedLimit of the road a user is travelling on.This can be achieved using the above code, I can simply pass in the Lat and Long with each location update. The problem with this though is I have already almost eaten though the 2k free requests with only driving about 30km.
When we scale this up to cover our 3 thousand users will cost us an absolute fortune! So would you know of any way to drastically reduce the number of requests made?
One idea we did have was to only check for location every 50m or so… But even still that will use a crazy amount of requests
Checking location less often is one of the ideas. Maybe it would be also good to connect it with CrossStreet Lookup API and rely not only on a distance but also on the intersections.