Sha256: 8c6510e1d736f9b58052ceaf734072b88ad084932e757cab6521d47593ad903b
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# Get driving direction using Google Directions API. page = require('webpage').create() if phantom.args.length < 2 console.log 'Usage: direction.js origin destination' console.log 'Example: direction.js "San Diego" "Palo Alto"' phantom.exit(1) else origin = phantom.args[0] dest = phantom.args[1] page.open encodeURI('http://maps.googleapis.com/maps/api/directions/xml?origin=' + origin + '&destination=' + dest + '&units=imperial&mode=driving&sensor=false'), (status) -> if status isnt 'success' console.log 'Unable to access network' else steps = page.content.match(/<html_instructions>(.*)<\/html_instructions>/ig) if not steps console.log 'No data available for ' + origin + ' to ' + dest else for ins in steps ins = ins.replace(/\</ig, '<').replace(/\>/ig, '>') ins = ins.replace(/\<div/ig, '\n<div') ins = ins.replace(/<.*?>/g, '') console.log(ins) console.log '' console.log page.content.match(/<copyrights>.*<\/copyrights>/ig).join('').replace(/<.*?>/g, '') phantom.exit()
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
phantomjs.rb-0.0.2 | vendor/phantomjs-1.4.1_OSX/examples/direction.coffee |
phantomjs.rb-0.0.1 | vendor/phantomjs-1.4.1_OSX/examples/direction.coffee |