From 4f85667529ab81b54aa94be93b1a5ff86585784c Mon Sep 17 00:00:00 2001 From: thermokarst Date: Fri, 13 Nov 2020 03:44:50 +0000 Subject: [PATCH] deploy: b2e4f1bc64cccc7caa7338c11297b24ad4f11ed1 --- 0.bootstrap.js | 2 +- index.html | 34 +++++++++++++++++++++++++++++++--- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/0.bootstrap.js b/0.bootstrap.js index e7e4b17..da2dc5a 100644 --- a/0.bootstrap.js +++ b/0.bootstrap.js @@ -43,7 +43,7 @@ eval("\"use strict\";\n// Instantiate WebAssembly module\nvar wasmExports = __we /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var gpx_web_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! gpx-web-utils */ \"../pkg/gpx_web_utils.js\");\n\n\nconst inputElement = document.getElementById(\"input\");\n\ninputElement.addEventListener(\"change\", readFiles, false);\n\nfunction readFiles() {\n if (inputElement.files.length < 2) { alert(\"open two or more files\"); return; }\n\n const files = Array.from(inputElement.files);\n const promises = files.map(f => f.text());\n\n Promise.all(promises).then(gpxes => {\n const merged = gpx_web_utils__WEBPACK_IMPORTED_MODULE_0__[\"merge\"](gpxes);\n writeOutput(merged);\n inputElement.value = \"\";\n });\n}\n\nfunction writeOutput(file) {\n const blob = new Blob([file], {type: \"text/gpx\"});\n const a = document.createElement(\"a\");\n a.href = URL.createObjectURL(blob);\n a.download = \"merged.gpx\";\n a.click();\n URL.revokeObjectURL(a.href);\n}\n\n\n//# sourceURL=webpack:///./index.js?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var gpx_web_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! gpx-web-utils */ \"../pkg/gpx_web_utils.js\");\n\n\nconst inputElement = document.getElementById(\"gpxInput\");\n\ninputElement.addEventListener(\"change\", readFiles, false);\n\nfunction readFiles() {\n if (inputElement.files.length < 2) { alert(\"open two or more files\"); return; }\n\n const files = Array.from(inputElement.files);\n const promises = files.map(f => f.text());\n\n Promise.all(promises).then(gpxes => {\n const merged = gpx_web_utils__WEBPACK_IMPORTED_MODULE_0__[\"merge\"](gpxes);\n writeOutput(merged);\n inputElement.value = \"\";\n });\n}\n\nfunction writeOutput(file) {\n const blob = new Blob([file], {type: \"text/gpx\"});\n const a = document.createElement(\"a\");\n a.href = URL.createObjectURL(blob);\n a.download = \"merged.gpx\";\n a.click();\n URL.revokeObjectURL(a.href);\n}\n\n\n//# sourceURL=webpack:///./index.js?"); /***/ }), diff --git a/index.html b/index.html index 1951cd3..7a414bf 100644 --- a/index.html +++ b/index.html @@ -2,11 +2,39 @@ - gpx web utils + gpx.thermokar.st + + - - + +

+ gpx.thermokar.st +

+ + This client-side tool is for merging + GPX files. + Please note, this has only been tested on GPX files produced by + Garmin and + Strava - your mileage may vary. + Source: + + https://github.com/thermokarst/gpx-web-utils + +
+ +