Skip to content

Instantly share code, notes, and snippets.

@rterp
Created August 19, 2016 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rterp/75c859741341d9d125f04403af094cd4 to your computer and use it in GitHub Desktop.
Save rterp/75c859741341d9d125f04403af094cd4 to your computer and use it in GitHub Desktop.
@FXML
private void toTextFieldAction(ActionEvent event) {
DirectionsRequest request = new DirectionsRequest(from.get(), to.get(), TravelModes.DRIVING);
directionsService.getRoute(request, this, new DirectionsRenderer(true, mapView.getMap(), directionsPane));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment