geolocation-stream

streaming API on top of the html5 geolocation API

Usage no npm install needed!

<script type="module">
  import geolocationStream from 'https://cdn.skypack.dev/geolocation-stream';
</script>

README

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