Vikas
Vikas

Reputation: 250

Two conflicting statements for google static map usage

I found two conflicting statements regarding the limit usage of google stati map api

According to this link, 25 000 usage limit are allowed per day

According to this link 1000 usage limit are allowed per day.

Now I am confuse which one is correct

Upvotes: 2

Views: 853

Answers (2)

calimarkus
calimarkus

Reputation: 9977

The limits both apply. 25000 for your application, 1000 per user, as said by Mano Marks. But if I unterstand you right, you just want to link to a map? Why don't you just use a standard google maps link? Then you wouldn't have any limits.

And still, if you just link to the staticmaps call (e.g. this example), your application has nothing to do with the staticmap call - its the users decision to open it. I guess there won't be any limits for that. (But perhaps they DO track the referrer and apply the limit for your page.)

Upvotes: 0

Mano Marks
Mano Marks

Reputation: 8819

25000 is the limit per site, 1000 is the limit per viewer. Site is tracked by URL or developer key. Viewer is tracked by ip address. My browser loading your page would count 1 against your site limit, and 1 against my ip address viewer limit.

To get an API key, you can apply here: https://code.google.com/apis/console/

Upvotes: 2

Related Questions