无法从Google Places API详细信息搜索中获取经度

时间:2015-01-15 14:58:52

标签: php google-places-api

我正在尝试使用Google Places API详细信息搜索获取位置的经度和纬度。以下是我用于从API检索地点详细信息的代码:

$selectedLocationDetails = json_decode(file_get_contents('https://maps.googleapis.com/maps/api/place/details/json?placeid='. $selectedLocationID .'&key=MyKey'), true);

这成功获取了位置的详细信息但是它只显示'lat'而不是'lng',下面是$ chosenLocationDetails的var_dump对于几何部分的样子。

["geometry"] array(1) {
    ["location"] array(2) {
        ["lat"] 54.582309
    }
}

0 个答案:

没有答案