center: new google.maps.LatLng(22.0824, 82.1411),zoom: 15,mapTypeId: google.maps.MapTypeId.ROADMAP
map: this.map,draggable: true,position: { lat: 22.0717, lng: 82.1497 }
map: this.map,draggable: true,position: { lat: 22.0942, lng: 82.1257 }
origin: this.Source,destination: this.Destination,travelMode: google.maps.TravelMode.DRIVING
if (status === google.maps.DirectionsStatus.OK) {
new google.maps.DirectionsRenderer().setDirections(response);
} else
{
window.alert('Directions request failed due to ' + status);
}
});
directionsService.route({origin: this.Source,destination: this.Destination,travelMode: google.maps.TravelMode.DRIVING,provideRouteAlternatives: true,}, function (response, status) {if (status === google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}else {
}});