问题描述
如果这是一个错误的地方,请移动并接受我诚挚的歉意。
因此,我已阅读Google地图将开始收取每次4美元的费用在24小时内超过25,000的点击次数达到1000点。我不太确定这将如何工作。什么定义了点击。地图API调用?
我有一个网站。一个大型网站的代码和功能,但在使用方面是一个小网站。这是一个新网站。
在用户档案中,有一张城市地图。
去一个地方寻找酒吧,俱乐部等等。有一个地图与该城市所有场馆的地图。在搜索结果中,在结果旁边,我还会显示场地所在的小地图。如果我显示25个结果,那么我将有25个小地图。如果我去一个场地页面,也会有一张地图。
正如你所看到的,我使用的地图非常广泛(我真的很喜欢谷歌地图!)
API有很多调用,但我不是一个大公司。离得很远。我只是一个开发者试图推出一个网站,并希望它会成功。因此,如果我在24小时内开始获得25,000以上,运行网站的成本将呈指数级增长。这很容易实现。我不需要很多用户来达到这个门槛。
如果我每天获得35,000次点击次数。这将是每天40美元,每月约1200美元(30天)。我买不起。
我只需要100个用户加载搜索结果10次即可达到25000个阈值。
那么,有人可以澄清一下什么是点击。如果我重新加载了一个有三次地图的页面,这是否算作三次'点击'?
从编程的角度来看,如果确实如此,有什么我可以做的,以减少API调用?在缓存等方面。
顺便说一句,我没有使用任何地址查找。我使用的是经度和纬度。
预先感谢您。
编辑:我是而不是针对Google地图收费。我知道他们已经投入了大量资金。然而,每千次点击4美元将会使我破产。 http://code.google.com/apis/maps/faq.html#tos_mapload
有这个信息。
基本上每次浏览器调用API加载标记时, ; script type =text / javascriptsrc =http://maps.googleapis.com/maps/api/js?sensor=set_to_true_or_false>
跟踪您加载的次数。 Google可以使用Google Analytics(分析):)您可以将所有/某些小地图转换为静态地图,您可以获得25k以及25k动态地图)
If this is the wrong place to ask, please do move it and accept my sincere apologies.
So I've read Google Maps will start charging $4 for every 1000 clicks over a threshold of 25,000 in a 24 hour period.
I'm not sure too sure about how this will work. What defines a 'click'. A maps API call?
I have a website. A large website in terms of code and functionality but a small website in terms of use. It's a new website.
On a users profile, there is a map of their city.
If they go to a location to look for bars, clubs etc. There is a map with pins of all the venues in that city. In search results, next to the result, I also show a small map of where the venue is. If I show 25 results, then I'll have 25 smalls maps. If I go to a venue page, there'll be a map also.
As you can see, I use the maps quite extensively (I really love google maps!)
There are quite a lot of calls to the API, but I'm not a big company. Far from it. I'm just a developer trying to launch a site and hopefully it'll be successful. So if I start getting over 25,000 in a 24hour period, the cost of running the site will go up exponentially. This is easily achievable. I wouldn't need many users to achieve this threshold.
If I got a 35,000 'clicks' per day. That'll be $40 per day and about $1200 (30days) per month. I couldn't afford that.
I would only need 100 users loading search results 10 times to achieve the 25000 threshold.
So, can someone please clarify what counts as a click. If I reload a page which has a map on it three times, does this count as three 'clicks'?
And from a programming perspective, if indeed this is the case, is there anything I can do to reduce API calls? in terms of caching etc.
BTW, I'm not using any address looks up. I'm using latitude and longitude for everything.
Thank you in advance.
EDIT: I'm not against Google Maps charging. I know they've put in a lot of money into it. However, $4 per 1000 clicks would be effectively bankrupt me.
The FAQhttp://code.google.com/apis/maps/faq.html#tos_maploadhas this information.
basically every time the browser calls the API loading tag
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=set_to_true_or_false">
Trace how many times you load that. Google have Analytics that could be used :)
(You could perhaps convert all/some 'small maps' to Static maps. you get 25k of them as well as 25k dynamic maps)
这篇关于谷歌地图收费成本 - 它是如何工作的?什么定义了“点击”?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!