1

ユーザーに変数を入力させる代わりに、これらの変数 (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);
4

1 に答える 1

1

試す...

var from = new google.maps.LatLng(40.750484, -111.811177);
var to = new google.maps.LatLng(40.775041, -111.718560);
var mode = google.maps.TravelMode.DRIVING;

その他のモードの例を含むトラベル モードのドキュメント... https://developers.google.com/maps/documentation/javascript/directions#TravelModes

于 2013-09-12T01:56:17.967 に答える