0

我目前能够获得所有国家的列表和一个国家的地区列表(例如:美国的所有州)。如何获取一个地区所有城市的列表(例如:阿拉巴马州的所有城市)。

这就是我获得美国所有州的方式:

$result = TargetingSearch::search(
            TargetingSearchTypes::GEOLOCATION,
            null,
            '',
            [
                'location_types' => ['region'],
                'country_code' => 'US',
                'limit' => 10000,
            ]);
        return $result;
4

1 回答 1

0
$result = TargetingSearch::search(
            TargetingSearchTypes::GEOLOCATION,
            null,
            'alabama',
            [
                ''location_types' => ['city'],
            ]);
        return $result;

如果我们按 state_name 搜索(我已经输入了阿拉巴马州),并将 location_types 作为城市,我们可以得到该州所有城市的列表。

于 2020-06-15T14:31:34.760 回答