我正在使用谷歌的雷达搜索,我有一个奇怪的行为:
网址
有9个结果。看这里: http://pastebin.com/fEH3Es0Q
使用此代码,使用相同的URL:
<?php
$radarurl = "https://maps.googleapis.com/maps/api/place/radarsearch/json?location=48.859294,2.347589&radius=5000&types=food|cafe&keyword=vegetarian&key=[mygooglekey]";
$json = file_get_contents($radarurl);
$radar = json_decode($json);
print_r($radar);
?>
我得到77个结果。看这里: http://www.giwaco.de/test.php
:/
Adrian