我试着改变缩放级别,但它总是停留在地图模式。 找不到wiki上的任何信息或者。 任何帮助或其他建议,将不胜感激。
Answer 1:
最终只是使用谷歌的JavaScript API版本。 它继续是这样的:
pos = new google.maps.LatLng( <%= latitude %>, <%= longitude %> );
var div = document.getElementById('streetViewContainer');
var sv = new google.maps.StreetViewPanorama(div);
sv.setPosition( pos );
sv.setVisible( true );
// find the heading by looking from the google car pos to the venue pos
var service = new google.maps.StreetViewService();
service.getPanoramaByLocation( pos, 50, function(result, status) {
if (status == google.maps.StreetViewStatus.OK)
{
carPos = result.location.latLng;
heading = google.maps.geometry.spherical.computeHeading( carPos, pos );
sv.setPov( { heading: heading, pitch: 0, zoom: 1 } );
}
} );
文章来源: Any way to have gmaps4rails open the map in Street View?