ユーザーに変数を入力させる代わりに、これらの変数 (to、from、mode) を設定しようとしました。どのステップが欠けていますか?
var from = (40.750484, -111.811177);
var to = (40.775041, -111.718560);
var mode = driving;
//$('#directions-form').submit(function(e) {
//$('#error').hide();
ds.route({
origin: from,
destination: to,
travelMode: mode
}, function(result, status) {
if (status == google.maps.DirectionsStatus.OK) {
fitBounds = true;
dr.setDirections(result);
}
else {
$('#error').text(status).show();
}
recalcHeight();
});
e.preventDefault();
return false;
});
ds.route(from,to,mode);