diff --git a/README.md b/README.md index d8eb510..9237354 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ GpxEdit : - allows you to add extra symbols in Nextcloud(\*) admin settings (section : additional) - works with server-side encryption. - works with shared files. -- loads GPX, KML, unicsv CSV, geotagged JPG files (requires Gpsbabel to convert files and python-pil to import pictures) +- loads GPX, KML, unicsv CSV, geotagged JPG files (requires Gpsbabel to convert files and import pictures) - loads tracks, routes and waypoints - saves tracks, routes and waypoints - supports waypoint symbols diff --git a/js/gpxedit.js b/js/gpxedit.js index 1e6cc19..e557f66 100644 --- a/js/gpxedit.js +++ b/js/gpxedit.js @@ -1009,18 +1009,27 @@ OC.dialogs.alert('The file does not exist or it is not supported', 'Load error'); } - else{ + else { parseGpx(response.gpx); - var bounds = gpxedit.editableLayers.getBounds(); - gpxedit.map.fitBounds( - bounds, - { - animate: true, - paddingTopLeft: [parseInt($('#sidebar').css('width')), 0] - } - ); - hideLoadingAnimation(); + try { + var bounds = gpxedit.editableLayers.getBounds(); + gpxedit.map.fitBounds( + bounds, + { + animate: true, + paddingTopLeft: [parseInt($('#sidebar').css('width')), 0] + } + ); + } + catch (err) { + console.log('Impossible to fit to bounds \n'+err); + } } + hideLoadingAnimation(); + }).fail(function (){ + OC.dialogs.alert('Failed to communicate with the server', + 'Load error'); + hideLoadingAnimation(); }); }