Skip to content

XingzheFE/gpx-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)
})