elliotstokes / gpx-parse

GPX parser
MIT License
44 stars 40 forks source link

Functionality for parsing external files #4

Closed akoenig closed 10 years ago

akoenig commented 10 years ago

This PR contains the functionality for requesting external files via HTTP(S) and parsing them afterwards.

API

gpxParse.parseRemoteGpxFile("http://host.tld/my.gpx", function(error, data) {
    //do stuff
});

Hope that it is useful for you :)

/André