I noticed some strange white squares which bother me on my application. 
I think they are artifacts of the L.Routing.control, but i do not want them and they do not serve a function as far as i can tell. Please help me remove them.
I get them when i calculate routes like this. My main goal is to calculate all possible routes from one START to 18 Parkhouses but not to draw them. I just want to get the totalDistance and Waypoints of these objects.
My code for reference:
route = L.Routing.control({
name: id,
serviceUrl: 'http://router.project-osrm.org/route/v1',
waypoints: coords,
plan: L.Routing.plan(coords, {
createMarker: function() {
return null;
}
}),
addWaypoints: false,
draggableWaypoints: false,
show: false,
showAlternatives: true
}).on('routesfound', function(e) {
for (let index = 0; index < e.routes.length; index++) {
tmpRoutes.push(e);
tmpDistances.push(e.routes[index].summary.totalDistance);
tmpWayPoints.push(e.routes[index].waypoints)
}
map.removeControl(e.routes);
}).addTo(map);
//map.removeControl(route);
}
Thank you!