0.0.1 • Published 11 years ago

geolocation-stream v0.0.1

Weekly downloads
4
License
BSD-2-Clause
Repository
github
Last release
11 years ago

geolocation-stream

npm install geolocation-stream

use HTML5 Geolocation to watch location changes the node way -- with streams

var movement = geolocationstream()

movement is a readable stream and speaks stream events: data, error and end. that means you can pipe movement output to anything that accepts streams, such as an XHR. in this case the data events will be lat/lon position updates using the watchPosition part of HTML5 geolocation

to generate demo-bundle.js using browserify:

npm install browserify -g
browserify demo.js -o demo-bundle.js

MIT LICENSE