Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 209 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 209 Bytes

GPX file loader

import GPXLoader from 'gpx-loader'

GPXLoader.read(document.getElementById('file').files[0]).then(data => {
    console.log(data)
}).catch(err => {
    console.log(err)
})