I would like to extract and strinfigy the XML from a given .gpx file using Javascript.
strinfigy
.gpx
Is this possible?
const reader = new FileReader() reader.readAsText(acceptedFiles[0]) reader.onloadend = () => { console.log(reader.result) }