18

我正在开发一个 google Places API 应用程序,我的目标是获取特定查询的所有可用详细信息。但据我所知,谷歌位置 API 一次只返回 20 个结果。但我需要所有可用的位置详细信息。

如果我多次使用搜索关键字搜索,它总是给出相同的结果。所以我想知道每次使用相同的关键字搜索时有什么方法可以得到不同的结果。

 <?php 
        $placeSearchURL = 'https://maps.googleapis.com/maps/api/place/textsearch/json?query=' . $query . '&sensor=true' . '&key=' . API_KEY;

        $placeSearchJSON = file_get_contents($placeSearchURL);
        $dataArray = json_decode($placeSearchJSON);
        $references = array();
        $detailsOfPlaces = array();

        if (isset($dataArray->status)) {
            switch ($dataArray->status) {
                case 'OK' :
                    foreach( $dataArray->results as $details) {
                        $references[] = $details->reference;
                    }
                    break;
                default:
                    echo "Something wrong";
            }
        }

        foreach ($references as $reference) {
            $placeDetailsURL = 'https://maps.googleapis.com/maps/api/place/details/json?reference=' . $reference . '&sensor=true&key=' . API_KEY;
            $placeDetails =file_get_contents($placeDetailsURL);
            $placeDetailsAsArray = json_decode($placeDetails);

            switch ($dataArray->status) {
                case 'OK' :
                    $detailsOfPlace['business_name'] = isset($placeDetailsAsArray->result->name) ? $placeDetailsAsArray->result->name : '';
                    $detailsOfPlace['address'] = isset($placeDetailsAsArray->result->formatted_address) ? $placeDetailsAsArray->result->formatted_address : '';                      

                    $detailsOfPlaces[] = $detailsOfPlace;
                    break;
                default:
                    echo "Something went wrong";
            }
        }

这是我的代码。它为每个查询返回 20 个结果。谁能告诉我应该进行哪些调整才能为每个查询获得 60 个结果。

谢谢

4

2 回答 2

16

Google Places API 每次搜索最多可以返回 60 个结果,如果可用拆分为最多 20 个结果的三页。如果有超过 20 个结果可用,您可以通过将 传递给新搜索请求next_page_token的参数来访问其他结果。pagetoken

有关添加结果的更多信息,请参阅文档中地点搜索页面的访问添加结果部分。

如果您只需要地点位置,您可以使用Places API 雷达搜索返回多达 200 个地点位置。

编辑: 在您的示例中,您不需要为每个地方发送详细信息请求来访问地名和地址。此信息在初始响应中返回,可以像下面的示例一样访问:

foreach($dataArray->results as $place) {
  echo '<p><b>' . $place->name . '</b>, ' . $place->formatted_address . '</p>';
}

您可以查看是否有其他页面可用于附近搜索请求next_page_token是否返回。这可以检查如下:

if (isset($dataArray->next_page_token)) {
  //get next page
}

如果返回 ,您可以通过将 传递给新搜索请求的参数或将其附加到原始请求的末尾next_page_token来获取下一页结果。以下是使用新请求的示例:next_page_tokenpagetoken

$placeSearchURL = 'https://maps.googleapis.com/maps/api/place/textsearch/json?nextpage=' . $dataArray->next_page_token . '&sensor=true' . '&key=' . API_KEY;

正如文档所述:

每页结果都必须依次显示。不应将两页或多页搜索结果显示为单个查询的结果。

next_page_token因此,在发布 a 和它变得有效之间有一个短暂的延迟。

于 2012-12-11T06:58:33.003 回答
8

正如 Chris Green 在他的回答中所说,您将不得不使用分页来获得 20 多个结果。此外,正如 Chris Green 还指出的那样,您不需要再次调用每个地方的参考地址。我假设您需要更多信息,所以我刚刚创建了 2 个函数来实现 Chris 在他的回复中所说的内容。未经测试,因此可能会出现一些错误,但您可以感觉到。

<?php

    function getAllReferences($query, $maxResults= 60, $nextToken = false) {
        $references = array();
        $nextStr = "";
        if ($nextToken)
            $nextStr = "nextpage=$nextToken";
        $placeSearchURL = "https://maps.googleapis.com/maps/api/place/textsearch/json?query=$query&sensor=true&key=".API_KEY."&$nextStr";
        $placeSearchJSON = file_get_contents($placeSearchURL);
        $dataArray = json_decode($placeSearchJSON);
        if (isset($dataArray->status) &&$dataArray->status == "OK") {
            foreach( $dataArray->results as $details) {
                array_push($references, $details->reference);
            }
            if (!empty($dataArray->next_page_token) && count($references) < $maxResults ) {
                $nextArray = getAllReferences($query, $maxResults-20 , $dataArray->next_page_token);
                $references = array_merge($references, $nextArray);

            }
            return $references;
        }
    }

    function getPlaceFromReference($reference) {
        $placeDetailsURL = 'https://maps.googleapis.com/maps/api/place/details/json?reference=' . $reference . '&sensor=true&key='.API_KEY;
        $placeDetailsContent =file_get_contents($placeDetailsURL);
        $placeDetails = json_decode($placeDetailsContent);
        if ($placeDetails->status == "OK")
            return $placeDetails;
        else return false;
    }

    $references = getAllReferences("test");
    if (count($references) == 0)
        echo "no results";
    else {
        foreach ($references as $reference) {
            $placeDetails = getPlaceFromReference($reference);
            print_r($placeDetails);
        }
    }
于 2012-12-19T13:37:25.687 回答