Files
Ruteador-NonUI/Files/result.html
Jose Alberto Guerra Ugalde b44f28abc9 - Cambios en el Algoritmo Genetico.
- Se agregó el HASH al JSON que regresa cuando se genera el ruteo.
2024-05-07 05:47:08 -06:00

24 lines
661 B
HTML

<html>
<head>
<title>Travelnetics</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<div id="map"></div>
<h2 style="text-align: center;">Results:</h2>
<ol style="text-align: center; list-style-position: inside;" id="waypoints-list">
</ol>
<div id="button-div">
<button id="goto-index" style="cursor: pointer;">Start a New Calculation!</button>
</div>
<script src="./config.js"></script>
<script src="./genetic-algorithm.js"></script>
<script defer>
window.onload = loadScript;
window.initMap = initMap;
</script>
</body>
</html>