How to Pass LatLng Values for the Origin/Destination parameter in the request parameter of Directions API by Google.
Visit this link: Google map driving direction source code for their example?
var request = {
origin: 'Chicago', // Here I want to add a latitude and Longitude value
destination: 'New York',
travelMode: google.maps.DirectionsTravelMode.DRIVING
};