Android:Google Maps APIv2 - XML超出了您的每日要求

时间:2013-12-09 14:25:43

标签: android xml google-maps

我有一个应用程序可以从Google服务器xml获取距离和持续时间的数据。但是今天当我测试我的程序时,她每次都会崩溃。

当我尝试从我的网络浏览器访问xml时,我得到了那个东西。

<DirectionsResponse><status>OVER_QUERY_LIMIT</status><error_message>You have exceeded your daily request quota for this API.</error_message></DirectionsResponse>

我如何通过几次测试超出我的每日要求:D

http://maps.googleapis.com/maps/api/directions/xml?origin=43.21275,27.88652&destination=43.49394,27.41224&sensor=false&units=metric&mode=driving

我正在使用此代码:

public Document getDocument(LatLng start, LatLng end, String mode) {
    String url = "http://maps.googleapis.com/maps/api/directions/xml?"
            + "origin=" + start.latitude + "," + start.longitude
            + "&destination=" + end.latitude + "," + end.longitude
            + "&sensor=false&units=metric&mode=driving";

一切都恢复了工作。也许过去24小时,一切都很好。

提前致谢。

1 个答案:

答案 0 :(得分:0)

问题解决了。 解决方案就是等待24小时,一切都会恢复正常。