osm-gpx
v0.0.2
Published
retrieve GPX data from the OSM API
Downloads
4
Readme
Retrieve GPX data from the OpenStreetMap GPX API.
usage
With browserify:
npm install --save osm-gpx
var osmGpx = require('osm-gpx');
Without:
Copy gpx.js
, include it. osmGpx
will be attached to window
.
api
osmGpx(bbox, [pages], callback)
bbox
is a[w, s, e, n]
order bounding box of WGS84 coordinatespages
is an optional parameter for a limit to how many 5,000 point pages are requested. by default, it's one.callback
is called witherr, gpx, geojson
after all pages are requested.
osmGpx(bbox, function(err, gpx, geojson) {
// GPX is the GPX XML Document
// GeoJSON is a GeoJSON version of it.
});