如何在使用places API搜索后更改街景视图结果

时间:2017-01-25 17:53:00

标签: google-maps google-places-api google-street-view

我正在尝试将我的拆分视图街景/地图屏幕更改为在地点文本字段中搜索的结果。地图会更改为该位置,但我无法将街景视图更改为相同的地址/位置。任何帮助表示赞赏。

我所做的事情如下,它不起作用:

if (place.geometry.viewport) {
        map.fitBounds(place.geometry.viewport);

        var newpano = map.getStreetView();
        newpano.setPano(place.location.pano);
        newpano.setVisible(true);

1 个答案:

答案 0 :(得分:0)

Places API不提供街景视图,没有$destinationPath = public_path('/uploads/songs/'.$song->artists()->id); if(!file_exists($destinationPath)) File::makeDirectory($destinationPath);

您可以使用JavaScript中的发送Street View Service Requests来查找距place.location.pano(latlng)最近的全景,并将其传递给place.geometry.location

您可能也对Issue 6033: Feature Request: Business Tour

感兴趣