mirror of
https://github.com/KeymonSoft/Ruteador-NonUI.git
synced 2026-04-17 12:56:10 +00:00
- Se agregó el HASH al JSON que regresa cuando se genera el ruteo.
24 lines
661 B
HTML
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> |