try {
if (!importer.acceptFile(file)) {
new IOException("Gpx inaccesible.");
}
importer.importData(file);
layer = new MyGpxLayer(importer.getLastData(),
file.getAbsolutePath(), true, this.mapView);
layer.name = name;
addCapa(layer);
} catch (Throwable t) {
log.error("Error al cargar la capa", t);