osm-gpx

0.0.2 • Public • Published

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 coordinates
  • pages is an optional parameter for a limit to how many 5,000 point pages are requested. by default, it's one.
  • callback is called with err, 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.
});

Package Sidebar

Install

npm i osm-gpx

Weekly Downloads

0

Version

0.0.2

License

BSD

Last publish

Collaborators

  • tmcw