Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/google-maps/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google maps 为什么请求数量不同于GooglePlaceAPI中使用的限制_Google Maps_Google Places Api - Fatal编程技术网

Google maps 为什么请求数量不同于GooglePlaceAPI中使用的限制

Google maps 为什么请求数量不同于GooglePlaceAPI中使用的限制,google-maps,google-places-api,Google Maps,Google Places Api,我已经向google place API提出了请求,请求数量接近1500-1600,但使用配额限制显示为15800。我已经核实了我的帐户 请求: $baseurl = "https://maps.googleapis.com/maps/api/place/textsearch/json"; 为什么? 您正在使用文本搜索。文本搜索有10倍的乘数: Google Places搜索服务共享相同的使用限制。但是,文本搜索服务的乘数为10倍。也就是说,您提出的每个文本搜索请求将根据您的配额计算为10

我已经向google place API提出了请求,请求数量接近1500-1600,但使用配额限制显示为15800。我已经核实了我的帐户

请求:

$baseurl = "https://maps.googleapis.com/maps/api/place/textsearch/json";  
为什么?


您正在使用文本搜索。文本搜索有10倍的乘数:

Google Places搜索服务共享相同的使用限制。但是,文本搜索服务的乘数为10倍。也就是说,您提出的每个文本搜索请求将根据您的配额计算为10个请求。如果您购买了GooglePlacesAPI作为工作合同GoogleMapsAPI的一部分,那么乘数可能会有所不同。有关详细信息,请参阅谷歌地图API的工作文档


您是如何提出请求的?有人能说出为什么问题是downmark吗?请提供请求的代码。