UNPKG
@furkot/export-gpx
Version:
latest (6.0.0)
6.0.0
5.1.1
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
Generate GPX files from Furkot trip data.
trips.furkot.com
furkot/export-gpx
@furkot/export-gpx
/
lib
/
furkot-gpx.js
11 lines
(8 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
render =
require
(
'./gpx'
);
module
.
exports
= furkotGpx; furkotGpx.
contentType
=
'application/gpx+xml'
; furkotGpx.
extension
=
'gpx'
; furkotGpx.
encoding
=
'utf8'
;
function
furkotGpx
(
options
) {
return
render
(options || {}); }