UNPKG

@furkot/export-gpx

Version:

Generate GPX files from Furkot trip data.

11 lines (8 loc) 232 B
const render = require('./gpx'); module.exports = furkotGpx; furkotGpx.contentType = 'application/gpx+xml'; furkotGpx.extension = 'gpx'; furkotGpx.encoding = 'utf8'; function furkotGpx(options) { return render(options || {}); }