Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var gm = require("googlemaps");
  2.  
  3. gm.directions("from", "where go to" , function ( err, data ) {
  4. console.log(data.routes[0].legs[0].distance);
  5. console.log(data.routes[0].legs[0].duration);
  6. }, "false");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement