Apple Maps Developer: Prices?

I am wondering if there are any costs for using Maps for applications? I’m talking about a larger number of users, so about 20,000 + update maps per day. I could not find it anywhere on the Internet, but I know that there is a pricing model on Google maps.

thanks
uksz

+5
source share
3 answers

I could not find anything official, but hopefully this helps:

Apple has no restrictions on access to the location search API

Source

+5
source

According to Apple's developer site , this does not mean that the application is well written.

There are no query restrictions on an application or developer identifier, so well-written applications that work correctly should not experience any problems. However, throttling can occur in a poorly written application that creates an extremely large number of requests.

+4
source

I looked for this information once and found out that there are no restrictions for geocoding, however, it is reasonable to rethink how you send requests to make them as small as possible.

Apple says:

Send no more than one geocoding request for any user action.

If you want to automatically update the current location of users (for example, when a user is moving), issue new geocoding requests only when the user has moved a considerable distance and after a reasonable amount of time has passed. For example, in a typical situation, you should not send more than one geocoding request per minute.

+3
source

Source: https://habr.com/ru/post/1236166/


All Articles