document.getElementById("driveBtn").addEventListener("click", function(){
const start=document.getElementById("start").value; const end=document.getElementById("end").value;
const directionsService=new google.maps.DirectionsService();
directionsService.route({ origin:start, destination:end, travelMode:'DRIVING' },function(result,status){
if(status==='OK'){
const path=result.routes[0].overview_path;
let index=0;
const panorama=new google.maps.StreetViewPanorama( document.getElementById("pano"), { position:path[0], pov:{heading:0,pitch:0}, zoom:1 } );
setInterval(function(){
index++;
if(index>=path.length) return;
panorama.setPosition(path[index]);
},1500);
}
});
});
