Google Earth Api - programmatically enter StreetView mode
I'm trying to give google earth api a start point which I get back from Google map Api v3(I have lat and lng). The thing I want to do is give a location to Google Earth and it can automatically moved to street view level. So far what I did can only move to ground level. The following code is how I try move Google Earth's camera var lookAt = DS_ge.createLookAt(''); lookAt.setLatitude(myRoute.steps[0].path[0].lat()); lookAt.setLongitude(myRoute.steps[0].path[0].lng()); lookAt.setRange(1000.0); //default is 0.0 DS_ge.getView().setAbstractView(lookAt); Is there any way to achieve the result like I