What is the limit for reverse-geocode lookups on iPhone?

geocoding, google-maps, iphone, reverse-geocoding

Solution

As the MapKit framework uses the Google Map services and the same TOS I would imagine the same limits are applied. In which case the lookups are counted per-ip address (rather than per-app or per-device)

So the limits would be no more than 15,000 geocode requests in a 24 hour period received from a single IP address. Or geocode requests submitted from a single IP address at too fast a rate (in my experience more than 2 a second seems to trigger this...)

Breeching the limits results in the server responding with a status code of 620

See http://code.google.com/apis/maps/faq.html#geocoder_limit

Problem

I'm trying to find out the limit for reverse-geocode lookups on iPhone, are they per application/per device and how many per day? The doco just states: MKReverseGeocoder Each Map Kit application has a limited amount of reverse geocoding capacity, so it is to your advantage to use reverse geocode requests sparingly. Here are some rules of thumb for using this class most effectively:

Original source